94b9ff7166aec9739299a61be7bb4cf2b2c55f48
[roojs1] / roojs-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         }
672         
673     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     },
1019     /**
1020      * equals
1021      * @param {Array} o The array to compare to
1022      * @returns {Boolean} true if the same
1023      */
1024     equals : function(b)
1025     {
1026         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1027         if (this === b) {
1028             return true;
1029          }
1030         if (b == null) {
1031             return false;
1032         }
1033         if (this.length !== b.length) {
1034             return false;
1035         }
1036       
1037         // sort?? a.sort().equals(b.sort());
1038       
1039         for (var i = 0; i < this.length; ++i) {
1040             if (this[i] !== b[i]) {
1041                 return false;
1042             }
1043         }
1044         return true;
1045     }
1046 });
1047
1048
1049  
1050 /*
1051  * Based on:
1052  * Ext JS Library 1.1.1
1053  * Copyright(c) 2006-2007, Ext JS, LLC.
1054  *
1055  * Originally Released Under LGPL - original licence link has changed is not relivant.
1056  *
1057  * Fork - LGPL
1058  * <script type="text/javascript">
1059  */
1060
1061 /**
1062  * @class Date
1063  *
1064  * The date parsing and format syntax is a subset of
1065  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1066  * supported will provide results equivalent to their PHP versions.
1067  *
1068  * Following is the list of all currently supported formats:
1069  *<pre>
1070 Sample date:
1071 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1072
1073 Format  Output      Description
1074 ------  ----------  --------------------------------------------------------------
1075   d      10         Day of the month, 2 digits with leading zeros
1076   D      Wed        A textual representation of a day, three letters
1077   j      10         Day of the month without leading zeros
1078   l      Wednesday  A full textual representation of the day of the week
1079   S      th         English ordinal day of month suffix, 2 chars (use with j)
1080   w      3          Numeric representation of the day of the week
1081   z      9          The julian date, or day of the year (0-365)
1082   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1083   F      January    A full textual representation of the month
1084   m      01         Numeric representation of a month, with leading zeros
1085   M      Jan        Month name abbreviation, three letters
1086   n      1          Numeric representation of a month, without leading zeros
1087   t      31         Number of days in the given month
1088   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1089   Y      2007       A full numeric representation of a year, 4 digits
1090   y      07         A two digit representation of a year
1091   a      pm         Lowercase Ante meridiem and Post meridiem
1092   A      PM         Uppercase Ante meridiem and Post meridiem
1093   g      3          12-hour format of an hour without leading zeros
1094   G      15         24-hour format of an hour without leading zeros
1095   h      03         12-hour format of an hour with leading zeros
1096   H      15         24-hour format of an hour with leading zeros
1097   i      05         Minutes with leading zeros
1098   s      01         Seconds, with leading zeros
1099   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1100   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1101   T      CST        Timezone setting of the machine running the code
1102   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1103 </pre>
1104  *
1105  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1106  * <pre><code>
1107 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1108 document.write(dt.format('Y-m-d'));                         //2007-01-10
1109 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1110 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1111  </code></pre>
1112  *
1113  * Here are some standard date/time patterns that you might find helpful.  They
1114  * are not part of the source of Date.js, but to use them you can simply copy this
1115  * block of code into any script that is included after Date.js and they will also become
1116  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1117  * <pre><code>
1118 Date.patterns = {
1119     ISO8601Long:"Y-m-d H:i:s",
1120     ISO8601Short:"Y-m-d",
1121     ShortDate: "n/j/Y",
1122     LongDate: "l, F d, Y",
1123     FullDateTime: "l, F d, Y g:i:s A",
1124     MonthDay: "F d",
1125     ShortTime: "g:i A",
1126     LongTime: "g:i:s A",
1127     SortableDateTime: "Y-m-d\\TH:i:s",
1128     UniversalSortableDateTime: "Y-m-d H:i:sO",
1129     YearMonth: "F, Y"
1130 };
1131 </code></pre>
1132  *
1133  * Example usage:
1134  * <pre><code>
1135 var dt = new Date();
1136 document.write(dt.format(Date.patterns.ShortDate));
1137  </code></pre>
1138  */
1139
1140 /*
1141  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1142  * They generate precompiled functions from date formats instead of parsing and
1143  * processing the pattern every time you format a date.  These functions are available
1144  * on every Date object (any javascript function).
1145  *
1146  * The original article and download are here:
1147  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1148  *
1149  */
1150  
1151  
1152  // was in core
1153 /**
1154  Returns the number of milliseconds between this date and date
1155  @param {Date} date (optional) Defaults to now
1156  @return {Number} The diff in milliseconds
1157  @member Date getElapsed
1158  */
1159 Date.prototype.getElapsed = function(date) {
1160         return Math.abs((date || new Date()).getTime()-this.getTime());
1161 };
1162 // was in date file..
1163
1164
1165 // private
1166 Date.parseFunctions = {count:0};
1167 // private
1168 Date.parseRegexes = [];
1169 // private
1170 Date.formatFunctions = {count:0};
1171
1172 // private
1173 Date.prototype.dateFormat = function(format) {
1174     if (Date.formatFunctions[format] == null) {
1175         Date.createNewFormat(format);
1176     }
1177     var func = Date.formatFunctions[format];
1178     return this[func]();
1179 };
1180
1181
1182 /**
1183  * Formats a date given the supplied format string
1184  * @param {String} format The format string
1185  * @return {String} The formatted date
1186  * @method
1187  */
1188 Date.prototype.format = Date.prototype.dateFormat;
1189
1190 // private
1191 Date.createNewFormat = function(format) {
1192     var funcName = "format" + Date.formatFunctions.count++;
1193     Date.formatFunctions[format] = funcName;
1194     var code = "Date.prototype." + funcName + " = function(){return ";
1195     var special = false;
1196     var ch = '';
1197     for (var i = 0; i < format.length; ++i) {
1198         ch = format.charAt(i);
1199         if (!special && ch == "\\") {
1200             special = true;
1201         }
1202         else if (special) {
1203             special = false;
1204             code += "'" + String.escape(ch) + "' + ";
1205         }
1206         else {
1207             code += Date.getFormatCode(ch);
1208         }
1209     }
1210     /** eval:var:zzzzzzzzzzzzz */
1211     eval(code.substring(0, code.length - 3) + ";}");
1212 };
1213
1214 // private
1215 Date.getFormatCode = function(character) {
1216     switch (character) {
1217     case "d":
1218         return "String.leftPad(this.getDate(), 2, '0') + ";
1219     case "D":
1220         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1221     case "j":
1222         return "this.getDate() + ";
1223     case "l":
1224         return "Date.dayNames[this.getDay()] + ";
1225     case "S":
1226         return "this.getSuffix() + ";
1227     case "w":
1228         return "this.getDay() + ";
1229     case "z":
1230         return "this.getDayOfYear() + ";
1231     case "W":
1232         return "this.getWeekOfYear() + ";
1233     case "F":
1234         return "Date.monthNames[this.getMonth()] + ";
1235     case "m":
1236         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1237     case "M":
1238         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1239     case "n":
1240         return "(this.getMonth() + 1) + ";
1241     case "t":
1242         return "this.getDaysInMonth() + ";
1243     case "L":
1244         return "(this.isLeapYear() ? 1 : 0) + ";
1245     case "Y":
1246         return "this.getFullYear() + ";
1247     case "y":
1248         return "('' + this.getFullYear()).substring(2, 4) + ";
1249     case "a":
1250         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1251     case "A":
1252         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1253     case "g":
1254         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1255     case "G":
1256         return "this.getHours() + ";
1257     case "h":
1258         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1259     case "H":
1260         return "String.leftPad(this.getHours(), 2, '0') + ";
1261     case "i":
1262         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1263     case "s":
1264         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1265     case "O":
1266         return "this.getGMTOffset() + ";
1267     case "P":
1268         return "this.getGMTColonOffset() + ";
1269     case "T":
1270         return "this.getTimezone() + ";
1271     case "Z":
1272         return "(this.getTimezoneOffset() * -60) + ";
1273     default:
1274         return "'" + String.escape(character) + "' + ";
1275     }
1276 };
1277
1278 /**
1279  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1280  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1281  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1282  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1283  * string or the parse operation will fail.
1284  * Example Usage:
1285 <pre><code>
1286 //dt = Fri May 25 2007 (current date)
1287 var dt = new Date();
1288
1289 //dt = Thu May 25 2006 (today's month/day in 2006)
1290 dt = Date.parseDate("2006", "Y");
1291
1292 //dt = Sun Jan 15 2006 (all date parts specified)
1293 dt = Date.parseDate("2006-1-15", "Y-m-d");
1294
1295 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1296 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1297 </code></pre>
1298  * @param {String} input The unparsed date as a string
1299  * @param {String} format The format the date is in
1300  * @return {Date} The parsed date
1301  * @static
1302  */
1303 Date.parseDate = function(input, format) {
1304     if (Date.parseFunctions[format] == null) {
1305         Date.createParser(format);
1306     }
1307     var func = Date.parseFunctions[format];
1308     return Date[func](input);
1309 };
1310 /**
1311  * @private
1312  */
1313
1314 Date.createParser = function(format) {
1315     var funcName = "parse" + Date.parseFunctions.count++;
1316     var regexNum = Date.parseRegexes.length;
1317     var currentGroup = 1;
1318     Date.parseFunctions[format] = funcName;
1319
1320     var code = "Date." + funcName + " = function(input){\n"
1321         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1322         + "var d = new Date();\n"
1323         + "y = d.getFullYear();\n"
1324         + "m = d.getMonth();\n"
1325         + "d = d.getDate();\n"
1326         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1327         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1328         + "if (results && results.length > 0) {";
1329     var regex = "";
1330
1331     var special = false;
1332     var ch = '';
1333     for (var i = 0; i < format.length; ++i) {
1334         ch = format.charAt(i);
1335         if (!special && ch == "\\") {
1336             special = true;
1337         }
1338         else if (special) {
1339             special = false;
1340             regex += String.escape(ch);
1341         }
1342         else {
1343             var obj = Date.formatCodeToRegex(ch, currentGroup);
1344             currentGroup += obj.g;
1345             regex += obj.s;
1346             if (obj.g && obj.c) {
1347                 code += obj.c;
1348             }
1349         }
1350     }
1351
1352     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1353         + "{v = new Date(y, m, d, h, i, s);}\n"
1354         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1355         + "{v = new Date(y, m, d, h, i);}\n"
1356         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1357         + "{v = new Date(y, m, d, h);}\n"
1358         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1359         + "{v = new Date(y, m, d);}\n"
1360         + "else if (y >= 0 && m >= 0)\n"
1361         + "{v = new Date(y, m);}\n"
1362         + "else if (y >= 0)\n"
1363         + "{v = new Date(y);}\n"
1364         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1365         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1366         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1367         + ";}";
1368
1369     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1370     /** eval:var:zzzzzzzzzzzzz */
1371     eval(code);
1372 };
1373
1374 // private
1375 Date.formatCodeToRegex = function(character, currentGroup) {
1376     switch (character) {
1377     case "D":
1378         return {g:0,
1379         c:null,
1380         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1381     case "j":
1382         return {g:1,
1383             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1384             s:"(\\d{1,2})"}; // day of month without leading zeroes
1385     case "d":
1386         return {g:1,
1387             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1388             s:"(\\d{2})"}; // day of month with leading zeroes
1389     case "l":
1390         return {g:0,
1391             c:null,
1392             s:"(?:" + Date.dayNames.join("|") + ")"};
1393     case "S":
1394         return {g:0,
1395             c:null,
1396             s:"(?:st|nd|rd|th)"};
1397     case "w":
1398         return {g:0,
1399             c:null,
1400             s:"\\d"};
1401     case "z":
1402         return {g:0,
1403             c:null,
1404             s:"(?:\\d{1,3})"};
1405     case "W":
1406         return {g:0,
1407             c:null,
1408             s:"(?:\\d{2})"};
1409     case "F":
1410         return {g:1,
1411             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1412             s:"(" + Date.monthNames.join("|") + ")"};
1413     case "M":
1414         return {g:1,
1415             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1416             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1417     case "n":
1418         return {g:1,
1419             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1420             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1421     case "m":
1422         return {g:1,
1423             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1424             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1425     case "t":
1426         return {g:0,
1427             c:null,
1428             s:"\\d{1,2}"};
1429     case "L":
1430         return {g:0,
1431             c:null,
1432             s:"(?:1|0)"};
1433     case "Y":
1434         return {g:1,
1435             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1436             s:"(\\d{4})"};
1437     case "y":
1438         return {g:1,
1439             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1440                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1441             s:"(\\d{1,2})"};
1442     case "a":
1443         return {g:1,
1444             c:"if (results[" + currentGroup + "] == 'am') {\n"
1445                 + "if (h == 12) { h = 0; }\n"
1446                 + "} else { if (h < 12) { h += 12; }}",
1447             s:"(am|pm)"};
1448     case "A":
1449         return {g:1,
1450             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1451                 + "if (h == 12) { h = 0; }\n"
1452                 + "} else { if (h < 12) { h += 12; }}",
1453             s:"(AM|PM)"};
1454     case "g":
1455     case "G":
1456         return {g:1,
1457             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1458             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1459     case "h":
1460     case "H":
1461         return {g:1,
1462             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1464     case "i":
1465         return {g:1,
1466             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1467             s:"(\\d{2})"};
1468     case "s":
1469         return {g:1,
1470             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1471             s:"(\\d{2})"};
1472     case "O":
1473         return {g:1,
1474             c:[
1475                 "o = results[", currentGroup, "];\n",
1476                 "var sn = o.substring(0,1);\n", // get + / - sign
1477                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1478                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1479                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1480                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1481             ].join(""),
1482             s:"([+\-]\\d{2,4})"};
1483     
1484     
1485     case "P":
1486         return {g:1,
1487                 c:[
1488                    "o = results[", currentGroup, "];\n",
1489                    "var sn = o.substring(0,1);\n",
1490                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1491                    "var mn = o.substring(4,6) % 60;\n",
1492                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1493                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1494             ].join(""),
1495             s:"([+\-]\\d{4})"};
1496     case "T":
1497         return {g:0,
1498             c:null,
1499             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1500     case "Z":
1501         return {g:1,
1502             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1503                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1504             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1505     default:
1506         return {g:0,
1507             c:null,
1508             s:String.escape(character)};
1509     }
1510 };
1511
1512 /**
1513  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1514  * @return {String} The abbreviated timezone name (e.g. 'CST')
1515  */
1516 Date.prototype.getTimezone = function() {
1517     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1518 };
1519
1520 /**
1521  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1522  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1523  */
1524 Date.prototype.getGMTOffset = function() {
1525     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1526         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1527         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1528 };
1529
1530 /**
1531  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1532  * @return {String} 2-characters representing hours and 2-characters representing minutes
1533  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1534  */
1535 Date.prototype.getGMTColonOffset = function() {
1536         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1537                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1538                 + ":"
1539                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1540 }
1541
1542 /**
1543  * Get the numeric day number of the year, adjusted for leap year.
1544  * @return {Number} 0 through 364 (365 in leap years)
1545  */
1546 Date.prototype.getDayOfYear = function() {
1547     var num = 0;
1548     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1549     for (var i = 0; i < this.getMonth(); ++i) {
1550         num += Date.daysInMonth[i];
1551     }
1552     return num + this.getDate() - 1;
1553 };
1554
1555 /**
1556  * Get the string representation of the numeric week number of the year
1557  * (equivalent to the format specifier 'W').
1558  * @return {String} '00' through '52'
1559  */
1560 Date.prototype.getWeekOfYear = function() {
1561     // Skip to Thursday of this week
1562     var now = this.getDayOfYear() + (4 - this.getDay());
1563     // Find the first Thursday of the year
1564     var jan1 = new Date(this.getFullYear(), 0, 1);
1565     var then = (7 - jan1.getDay() + 4);
1566     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1567 };
1568
1569 /**
1570  * Whether or not the current date is in a leap year.
1571  * @return {Boolean} True if the current date is in a leap year, else false
1572  */
1573 Date.prototype.isLeapYear = function() {
1574     var year = this.getFullYear();
1575     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1576 };
1577
1578 /**
1579  * Get the first day of the current month, adjusted for leap year.  The returned value
1580  * is the numeric day index within the week (0-6) which can be used in conjunction with
1581  * the {@link #monthNames} array to retrieve the textual day name.
1582  * Example:
1583  *<pre><code>
1584 var dt = new Date('1/10/2007');
1585 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1586 </code></pre>
1587  * @return {Number} The day number (0-6)
1588  */
1589 Date.prototype.getFirstDayOfMonth = function() {
1590     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1591     return (day < 0) ? (day + 7) : day;
1592 };
1593
1594 /**
1595  * Get the last day of the current month, adjusted for leap year.  The returned value
1596  * is the numeric day index within the week (0-6) which can be used in conjunction with
1597  * the {@link #monthNames} array to retrieve the textual day name.
1598  * Example:
1599  *<pre><code>
1600 var dt = new Date('1/10/2007');
1601 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1602 </code></pre>
1603  * @return {Number} The day number (0-6)
1604  */
1605 Date.prototype.getLastDayOfMonth = function() {
1606     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1607     return (day < 0) ? (day + 7) : day;
1608 };
1609
1610
1611 /**
1612  * Get the first date of this date's month
1613  * @return {Date}
1614  */
1615 Date.prototype.getFirstDateOfMonth = function() {
1616     return new Date(this.getFullYear(), this.getMonth(), 1);
1617 };
1618
1619 /**
1620  * Get the last date of this date's month
1621  * @return {Date}
1622  */
1623 Date.prototype.getLastDateOfMonth = function() {
1624     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1625 };
1626 /**
1627  * Get the number of days in the current month, adjusted for leap year.
1628  * @return {Number} The number of days in the month
1629  */
1630 Date.prototype.getDaysInMonth = function() {
1631     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1632     return Date.daysInMonth[this.getMonth()];
1633 };
1634
1635 /**
1636  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1637  * @return {String} 'st, 'nd', 'rd' or 'th'
1638  */
1639 Date.prototype.getSuffix = function() {
1640     switch (this.getDate()) {
1641         case 1:
1642         case 21:
1643         case 31:
1644             return "st";
1645         case 2:
1646         case 22:
1647             return "nd";
1648         case 3:
1649         case 23:
1650             return "rd";
1651         default:
1652             return "th";
1653     }
1654 };
1655
1656 // private
1657 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1658
1659 /**
1660  * An array of textual month names.
1661  * Override these values for international dates, for example...
1662  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1663  * @type Array
1664  * @static
1665  */
1666 Date.monthNames =
1667    ["January",
1668     "February",
1669     "March",
1670     "April",
1671     "May",
1672     "June",
1673     "July",
1674     "August",
1675     "September",
1676     "October",
1677     "November",
1678     "December"];
1679
1680 /**
1681  * An array of textual day names.
1682  * Override these values for international dates, for example...
1683  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1684  * @type Array
1685  * @static
1686  */
1687 Date.dayNames =
1688    ["Sunday",
1689     "Monday",
1690     "Tuesday",
1691     "Wednesday",
1692     "Thursday",
1693     "Friday",
1694     "Saturday"];
1695
1696 // private
1697 Date.y2kYear = 50;
1698 // private
1699 Date.monthNumbers = {
1700     Jan:0,
1701     Feb:1,
1702     Mar:2,
1703     Apr:3,
1704     May:4,
1705     Jun:5,
1706     Jul:6,
1707     Aug:7,
1708     Sep:8,
1709     Oct:9,
1710     Nov:10,
1711     Dec:11};
1712
1713 /**
1714  * Creates and returns a new Date instance with the exact same date value as the called instance.
1715  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1716  * variable will also be changed.  When the intention is to create a new variable that will not
1717  * modify the original instance, you should create a clone.
1718  *
1719  * Example of correctly cloning a date:
1720  * <pre><code>
1721 //wrong way:
1722 var orig = new Date('10/1/2006');
1723 var copy = orig;
1724 copy.setDate(5);
1725 document.write(orig);  //returns 'Thu Oct 05 2006'!
1726
1727 //correct way:
1728 var orig = new Date('10/1/2006');
1729 var copy = orig.clone();
1730 copy.setDate(5);
1731 document.write(orig);  //returns 'Thu Oct 01 2006'
1732 </code></pre>
1733  * @return {Date} The new Date instance
1734  */
1735 Date.prototype.clone = function() {
1736         return new Date(this.getTime());
1737 };
1738
1739 /**
1740  * Clears any time information from this date
1741  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1742  @return {Date} this or the clone
1743  */
1744 Date.prototype.clearTime = function(clone){
1745     if(clone){
1746         return this.clone().clearTime();
1747     }
1748     this.setHours(0);
1749     this.setMinutes(0);
1750     this.setSeconds(0);
1751     this.setMilliseconds(0);
1752     return this;
1753 };
1754
1755 // private
1756 // safari setMonth is broken -- check that this is only donw once...
1757 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1758     Date.brokenSetMonth = Date.prototype.setMonth;
1759         Date.prototype.setMonth = function(num){
1760                 if(num <= -1){
1761                         var n = Math.ceil(-num);
1762                         var back_year = Math.ceil(n/12);
1763                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1764                         this.setFullYear(this.getFullYear() - back_year);
1765                         return Date.brokenSetMonth.call(this, month);
1766                 } else {
1767                         return Date.brokenSetMonth.apply(this, arguments);
1768                 }
1769         };
1770 }
1771
1772 /** Date interval constant 
1773 * @static 
1774 * @type String */
1775 Date.MILLI = "ms";
1776 /** Date interval constant 
1777 * @static 
1778 * @type String */
1779 Date.SECOND = "s";
1780 /** Date interval constant 
1781 * @static 
1782 * @type String */
1783 Date.MINUTE = "mi";
1784 /** Date interval constant 
1785 * @static 
1786 * @type String */
1787 Date.HOUR = "h";
1788 /** Date interval constant 
1789 * @static 
1790 * @type String */
1791 Date.DAY = "d";
1792 /** Date interval constant 
1793 * @static 
1794 * @type String */
1795 Date.MONTH = "mo";
1796 /** Date interval constant 
1797 * @static 
1798 * @type String */
1799 Date.YEAR = "y";
1800
1801 /**
1802  * Provides a convenient method of performing basic date arithmetic.  This method
1803  * does not modify the Date instance being called - it creates and returns
1804  * a new Date instance containing the resulting date value.
1805  *
1806  * Examples:
1807  * <pre><code>
1808 //Basic usage:
1809 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1810 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1811
1812 //Negative values will subtract correctly:
1813 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1814 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1815
1816 //You can even chain several calls together in one line!
1817 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1818 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1819  </code></pre>
1820  *
1821  * @param {String} interval   A valid date interval enum value
1822  * @param {Number} value      The amount to add to the current date
1823  * @return {Date} The new Date instance
1824  */
1825 Date.prototype.add = function(interval, value){
1826   var d = this.clone();
1827   if (!interval || value === 0) { return d; }
1828   switch(interval.toLowerCase()){
1829     case Date.MILLI:
1830       d.setMilliseconds(this.getMilliseconds() + value);
1831       break;
1832     case Date.SECOND:
1833       d.setSeconds(this.getSeconds() + value);
1834       break;
1835     case Date.MINUTE:
1836       d.setMinutes(this.getMinutes() + value);
1837       break;
1838     case Date.HOUR:
1839       d.setHours(this.getHours() + value);
1840       break;
1841     case Date.DAY:
1842       d.setDate(this.getDate() + value);
1843       break;
1844     case Date.MONTH:
1845       var day = this.getDate();
1846       if(day > 28){
1847           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1848       }
1849       d.setDate(day);
1850       d.setMonth(this.getMonth() + value);
1851       break;
1852     case Date.YEAR:
1853       d.setFullYear(this.getFullYear() + value);
1854       break;
1855   }
1856   return d;
1857 };
1858 /*
1859  * Based on:
1860  * Ext JS Library 1.1.1
1861  * Copyright(c) 2006-2007, Ext JS, LLC.
1862  *
1863  * Originally Released Under LGPL - original licence link has changed is not relivant.
1864  *
1865  * Fork - LGPL
1866  * <script type="text/javascript">
1867  */
1868
1869 /**
1870  * @class Roo.lib.Dom
1871  * @static
1872  * 
1873  * Dom utils (from YIU afaik)
1874  * 
1875  **/
1876 Roo.lib.Dom = {
1877     /**
1878      * Get the view width
1879      * @param {Boolean} full True will get the full document, otherwise it's the view width
1880      * @return {Number} The width
1881      */
1882      
1883     getViewWidth : function(full) {
1884         return full ? this.getDocumentWidth() : this.getViewportWidth();
1885     },
1886     /**
1887      * Get the view height
1888      * @param {Boolean} full True will get the full document, otherwise it's the view height
1889      * @return {Number} The height
1890      */
1891     getViewHeight : function(full) {
1892         return full ? this.getDocumentHeight() : this.getViewportHeight();
1893     },
1894
1895     getDocumentHeight: function() {
1896         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1897         return Math.max(scrollHeight, this.getViewportHeight());
1898     },
1899
1900     getDocumentWidth: function() {
1901         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1902         return Math.max(scrollWidth, this.getViewportWidth());
1903     },
1904
1905     getViewportHeight: function() {
1906         var height = self.innerHeight;
1907         var mode = document.compatMode;
1908
1909         if ((mode || Roo.isIE) && !Roo.isOpera) {
1910             height = (mode == "CSS1Compat") ?
1911                      document.documentElement.clientHeight :
1912                      document.body.clientHeight;
1913         }
1914
1915         return height;
1916     },
1917
1918     getViewportWidth: function() {
1919         var width = self.innerWidth;
1920         var mode = document.compatMode;
1921
1922         if (mode || Roo.isIE) {
1923             width = (mode == "CSS1Compat") ?
1924                     document.documentElement.clientWidth :
1925                     document.body.clientWidth;
1926         }
1927         return width;
1928     },
1929
1930     isAncestor : function(p, c) {
1931         p = Roo.getDom(p);
1932         c = Roo.getDom(c);
1933         if (!p || !c) {
1934             return false;
1935         }
1936
1937         if (p.contains && !Roo.isSafari) {
1938             return p.contains(c);
1939         } else if (p.compareDocumentPosition) {
1940             return !!(p.compareDocumentPosition(c) & 16);
1941         } else {
1942             var parent = c.parentNode;
1943             while (parent) {
1944                 if (parent == p) {
1945                     return true;
1946                 }
1947                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1948                     return false;
1949                 }
1950                 parent = parent.parentNode;
1951             }
1952             return false;
1953         }
1954     },
1955
1956     getRegion : function(el) {
1957         return Roo.lib.Region.getRegion(el);
1958     },
1959
1960     getY : function(el) {
1961         return this.getXY(el)[1];
1962     },
1963
1964     getX : function(el) {
1965         return this.getXY(el)[0];
1966     },
1967
1968     getXY : function(el) {
1969         var p, pe, b, scroll, bd = document.body;
1970         el = Roo.getDom(el);
1971         var fly = Roo.lib.AnimBase.fly;
1972         if (el.getBoundingClientRect) {
1973             b = el.getBoundingClientRect();
1974             scroll = fly(document).getScroll();
1975             return [b.left + scroll.left, b.top + scroll.top];
1976         }
1977         var x = 0, y = 0;
1978
1979         p = el;
1980
1981         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1982
1983         while (p) {
1984
1985             x += p.offsetLeft;
1986             y += p.offsetTop;
1987
1988             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1989                 hasAbsolute = true;
1990             }
1991
1992             if (Roo.isGecko) {
1993                 pe = fly(p);
1994
1995                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1996                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1997
1998
1999                 x += bl;
2000                 y += bt;
2001
2002
2003                 if (p != el && pe.getStyle('overflow') != 'visible') {
2004                     x += bl;
2005                     y += bt;
2006                 }
2007             }
2008             p = p.offsetParent;
2009         }
2010
2011         if (Roo.isSafari && hasAbsolute) {
2012             x -= bd.offsetLeft;
2013             y -= bd.offsetTop;
2014         }
2015
2016         if (Roo.isGecko && !hasAbsolute) {
2017             var dbd = fly(bd);
2018             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2019             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2020         }
2021
2022         p = el.parentNode;
2023         while (p && p != bd) {
2024             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2025                 x -= p.scrollLeft;
2026                 y -= p.scrollTop;
2027             }
2028             p = p.parentNode;
2029         }
2030         return [x, y];
2031     },
2032  
2033   
2034
2035
2036     setXY : function(el, xy) {
2037         el = Roo.fly(el, '_setXY');
2038         el.position();
2039         var pts = el.translatePoints(xy);
2040         if (xy[0] !== false) {
2041             el.dom.style.left = pts.left + "px";
2042         }
2043         if (xy[1] !== false) {
2044             el.dom.style.top = pts.top + "px";
2045         }
2046     },
2047
2048     setX : function(el, x) {
2049         this.setXY(el, [x, false]);
2050     },
2051
2052     setY : function(el, y) {
2053         this.setXY(el, [false, y]);
2054     }
2055 };
2056 /*
2057  * Portions of this file are based on pieces of Yahoo User Interface Library
2058  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2059  * YUI licensed under the BSD License:
2060  * http://developer.yahoo.net/yui/license.txt
2061  * <script type="text/javascript">
2062  *
2063  */
2064
2065 Roo.lib.Event = function() {
2066     var loadComplete = false;
2067     var listeners = [];
2068     var unloadListeners = [];
2069     var retryCount = 0;
2070     var onAvailStack = [];
2071     var counter = 0;
2072     var lastError = null;
2073
2074     return {
2075         POLL_RETRYS: 200,
2076         POLL_INTERVAL: 20,
2077         EL: 0,
2078         TYPE: 1,
2079         FN: 2,
2080         WFN: 3,
2081         OBJ: 3,
2082         ADJ_SCOPE: 4,
2083         _interval: null,
2084
2085         startInterval: function() {
2086             if (!this._interval) {
2087                 var self = this;
2088                 var callback = function() {
2089                     self._tryPreloadAttach();
2090                 };
2091                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2092
2093             }
2094         },
2095
2096         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2097             onAvailStack.push({ id:         p_id,
2098                 fn:         p_fn,
2099                 obj:        p_obj,
2100                 override:   p_override,
2101                 checkReady: false    });
2102
2103             retryCount = this.POLL_RETRYS;
2104             this.startInterval();
2105         },
2106
2107
2108         addListener: function(el, eventName, fn) {
2109             el = Roo.getDom(el);
2110             if (!el || !fn) {
2111                 return false;
2112             }
2113
2114             if ("unload" == eventName) {
2115                 unloadListeners[unloadListeners.length] =
2116                 [el, eventName, fn];
2117                 return true;
2118             }
2119
2120             var wrappedFn = function(e) {
2121                 return fn(Roo.lib.Event.getEvent(e));
2122             };
2123
2124             var li = [el, eventName, fn, wrappedFn];
2125
2126             var index = listeners.length;
2127             listeners[index] = li;
2128
2129             this.doAdd(el, eventName, wrappedFn, false);
2130             return true;
2131
2132         },
2133
2134
2135         removeListener: function(el, eventName, fn) {
2136             var i, len;
2137
2138             el = Roo.getDom(el);
2139
2140             if(!fn) {
2141                 return this.purgeElement(el, false, eventName);
2142             }
2143
2144
2145             if ("unload" == eventName) {
2146
2147                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2148                     var li = unloadListeners[i];
2149                     if (li &&
2150                         li[0] == el &&
2151                         li[1] == eventName &&
2152                         li[2] == fn) {
2153                         unloadListeners.splice(i, 1);
2154                         return true;
2155                     }
2156                 }
2157
2158                 return false;
2159             }
2160
2161             var cacheItem = null;
2162
2163
2164             var index = arguments[3];
2165
2166             if ("undefined" == typeof index) {
2167                 index = this._getCacheIndex(el, eventName, fn);
2168             }
2169
2170             if (index >= 0) {
2171                 cacheItem = listeners[index];
2172             }
2173
2174             if (!el || !cacheItem) {
2175                 return false;
2176             }
2177
2178             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2179
2180             delete listeners[index][this.WFN];
2181             delete listeners[index][this.FN];
2182             listeners.splice(index, 1);
2183
2184             return true;
2185
2186         },
2187
2188
2189         getTarget: function(ev, resolveTextNode) {
2190             ev = ev.browserEvent || ev;
2191             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2192             var t = ev.target || ev.srcElement;
2193             return this.resolveTextNode(t);
2194         },
2195
2196
2197         resolveTextNode: function(node) {
2198             if (Roo.isSafari && node && 3 == node.nodeType) {
2199                 return node.parentNode;
2200             } else {
2201                 return node;
2202             }
2203         },
2204
2205
2206         getPageX: function(ev) {
2207             ev = ev.browserEvent || ev;
2208             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2209             var x = ev.pageX;
2210             if (!x && 0 !== x) {
2211                 x = ev.clientX || 0;
2212
2213                 if (Roo.isIE) {
2214                     x += this.getScroll()[1];
2215                 }
2216             }
2217
2218             return x;
2219         },
2220
2221
2222         getPageY: function(ev) {
2223             ev = ev.browserEvent || ev;
2224             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2225             var y = ev.pageY;
2226             if (!y && 0 !== y) {
2227                 y = ev.clientY || 0;
2228
2229                 if (Roo.isIE) {
2230                     y += this.getScroll()[0];
2231                 }
2232             }
2233
2234
2235             return y;
2236         },
2237
2238
2239         getXY: function(ev) {
2240             ev = ev.browserEvent || ev;
2241             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2242             return [this.getPageX(ev), this.getPageY(ev)];
2243         },
2244
2245
2246         getRelatedTarget: function(ev) {
2247             ev = ev.browserEvent || ev;
2248             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2249             var t = ev.relatedTarget;
2250             if (!t) {
2251                 if (ev.type == "mouseout") {
2252                     t = ev.toElement;
2253                 } else if (ev.type == "mouseover") {
2254                     t = ev.fromElement;
2255                 }
2256             }
2257
2258             return this.resolveTextNode(t);
2259         },
2260
2261
2262         getTime: function(ev) {
2263             ev = ev.browserEvent || ev;
2264             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2265             if (!ev.time) {
2266                 var t = new Date().getTime();
2267                 try {
2268                     ev.time = t;
2269                 } catch(ex) {
2270                     this.lastError = ex;
2271                     return t;
2272                 }
2273             }
2274
2275             return ev.time;
2276         },
2277
2278
2279         stopEvent: function(ev) {
2280             this.stopPropagation(ev);
2281             this.preventDefault(ev);
2282         },
2283
2284
2285         stopPropagation: function(ev) {
2286             ev = ev.browserEvent || ev;
2287             if (ev.stopPropagation) {
2288                 ev.stopPropagation();
2289             } else {
2290                 ev.cancelBubble = true;
2291             }
2292         },
2293
2294
2295         preventDefault: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             if(ev.preventDefault) {
2298                 ev.preventDefault();
2299             } else {
2300                 ev.returnValue = false;
2301             }
2302         },
2303
2304
2305         getEvent: function(e) {
2306             var ev = e || window.event;
2307             if (!ev) {
2308                 var c = this.getEvent.caller;
2309                 while (c) {
2310                     ev = c.arguments[0];
2311                     if (ev && Event == ev.constructor) {
2312                         break;
2313                     }
2314                     c = c.caller;
2315                 }
2316             }
2317             return ev;
2318         },
2319
2320
2321         getCharCode: function(ev) {
2322             ev = ev.browserEvent || ev;
2323             return ev.charCode || ev.keyCode || 0;
2324         },
2325
2326
2327         _getCacheIndex: function(el, eventName, fn) {
2328             for (var i = 0,len = listeners.length; i < len; ++i) {
2329                 var li = listeners[i];
2330                 if (li &&
2331                     li[this.FN] == fn &&
2332                     li[this.EL] == el &&
2333                     li[this.TYPE] == eventName) {
2334                     return i;
2335                 }
2336             }
2337
2338             return -1;
2339         },
2340
2341
2342         elCache: {},
2343
2344
2345         getEl: function(id) {
2346             return document.getElementById(id);
2347         },
2348
2349
2350         clearCache: function() {
2351         },
2352
2353
2354         _load: function(e) {
2355             loadComplete = true;
2356             var EU = Roo.lib.Event;
2357
2358
2359             if (Roo.isIE) {
2360                 EU.doRemove(window, "load", EU._load);
2361             }
2362         },
2363
2364
2365         _tryPreloadAttach: function() {
2366
2367             if (this.locked) {
2368                 return false;
2369             }
2370
2371             this.locked = true;
2372
2373
2374             var tryAgain = !loadComplete;
2375             if (!tryAgain) {
2376                 tryAgain = (retryCount > 0);
2377             }
2378
2379
2380             var notAvail = [];
2381             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2382                 var item = onAvailStack[i];
2383                 if (item) {
2384                     var el = this.getEl(item.id);
2385
2386                     if (el) {
2387                         if (!item.checkReady ||
2388                             loadComplete ||
2389                             el.nextSibling ||
2390                             (document && document.body)) {
2391
2392                             var scope = el;
2393                             if (item.override) {
2394                                 if (item.override === true) {
2395                                     scope = item.obj;
2396                                 } else {
2397                                     scope = item.override;
2398                                 }
2399                             }
2400                             item.fn.call(scope, item.obj);
2401                             onAvailStack[i] = null;
2402                         }
2403                     } else {
2404                         notAvail.push(item);
2405                     }
2406                 }
2407             }
2408
2409             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2410
2411             if (tryAgain) {
2412
2413                 this.startInterval();
2414             } else {
2415                 clearInterval(this._interval);
2416                 this._interval = null;
2417             }
2418
2419             this.locked = false;
2420
2421             return true;
2422
2423         },
2424
2425
2426         purgeElement: function(el, recurse, eventName) {
2427             var elListeners = this.getListeners(el, eventName);
2428             if (elListeners) {
2429                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2430                     var l = elListeners[i];
2431                     this.removeListener(el, l.type, l.fn);
2432                 }
2433             }
2434
2435             if (recurse && el && el.childNodes) {
2436                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2437                     this.purgeElement(el.childNodes[i], recurse, eventName);
2438                 }
2439             }
2440         },
2441
2442
2443         getListeners: function(el, eventName) {
2444             var results = [], searchLists;
2445             if (!eventName) {
2446                 searchLists = [listeners, unloadListeners];
2447             } else if (eventName == "unload") {
2448                 searchLists = [unloadListeners];
2449             } else {
2450                 searchLists = [listeners];
2451             }
2452
2453             for (var j = 0; j < searchLists.length; ++j) {
2454                 var searchList = searchLists[j];
2455                 if (searchList && searchList.length > 0) {
2456                     for (var i = 0,len = searchList.length; i < len; ++i) {
2457                         var l = searchList[i];
2458                         if (l && l[this.EL] === el &&
2459                             (!eventName || eventName === l[this.TYPE])) {
2460                             results.push({
2461                                 type:   l[this.TYPE],
2462                                 fn:     l[this.FN],
2463                                 obj:    l[this.OBJ],
2464                                 adjust: l[this.ADJ_SCOPE],
2465                                 index:  i
2466                             });
2467                         }
2468                     }
2469                 }
2470             }
2471
2472             return (results.length) ? results : null;
2473         },
2474
2475
2476         _unload: function(e) {
2477
2478             var EU = Roo.lib.Event, i, j, l, len, index;
2479
2480             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2481                 l = unloadListeners[i];
2482                 if (l) {
2483                     var scope = window;
2484                     if (l[EU.ADJ_SCOPE]) {
2485                         if (l[EU.ADJ_SCOPE] === true) {
2486                             scope = l[EU.OBJ];
2487                         } else {
2488                             scope = l[EU.ADJ_SCOPE];
2489                         }
2490                     }
2491                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2492                     unloadListeners[i] = null;
2493                     l = null;
2494                     scope = null;
2495                 }
2496             }
2497
2498             unloadListeners = null;
2499
2500             if (listeners && listeners.length > 0) {
2501                 j = listeners.length;
2502                 while (j) {
2503                     index = j - 1;
2504                     l = listeners[index];
2505                     if (l) {
2506                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2507                                 l[EU.FN], index);
2508                     }
2509                     j = j - 1;
2510                 }
2511                 l = null;
2512
2513                 EU.clearCache();
2514             }
2515
2516             EU.doRemove(window, "unload", EU._unload);
2517
2518         },
2519
2520
2521         getScroll: function() {
2522             var dd = document.documentElement, db = document.body;
2523             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2524                 return [dd.scrollTop, dd.scrollLeft];
2525             } else if (db) {
2526                 return [db.scrollTop, db.scrollLeft];
2527             } else {
2528                 return [0, 0];
2529             }
2530         },
2531
2532
2533         doAdd: function () {
2534             if (window.addEventListener) {
2535                 return function(el, eventName, fn, capture) {
2536                     el.addEventListener(eventName, fn, (capture));
2537                 };
2538             } else if (window.attachEvent) {
2539                 return function(el, eventName, fn, capture) {
2540                     el.attachEvent("on" + eventName, fn);
2541                 };
2542             } else {
2543                 return function() {
2544                 };
2545             }
2546         }(),
2547
2548
2549         doRemove: function() {
2550             if (window.removeEventListener) {
2551                 return function (el, eventName, fn, capture) {
2552                     el.removeEventListener(eventName, fn, (capture));
2553                 };
2554             } else if (window.detachEvent) {
2555                 return function (el, eventName, fn) {
2556                     el.detachEvent("on" + eventName, fn);
2557                 };
2558             } else {
2559                 return function() {
2560                 };
2561             }
2562         }()
2563     };
2564     
2565 }();
2566 (function() {     
2567    
2568     var E = Roo.lib.Event;
2569     E.on = E.addListener;
2570     E.un = E.removeListener;
2571
2572     if (document && document.body) {
2573         E._load();
2574     } else {
2575         E.doAdd(window, "load", E._load);
2576     }
2577     E.doAdd(window, "unload", E._unload);
2578     E._tryPreloadAttach();
2579 })();
2580
2581 /*
2582  * Portions of this file are based on pieces of Yahoo User Interface Library
2583  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2584  * YUI licensed under the BSD License:
2585  * http://developer.yahoo.net/yui/license.txt
2586  * <script type="text/javascript">
2587  *
2588  */
2589
2590 (function() {
2591     /**
2592      * @class Roo.lib.Ajax
2593      *
2594      */
2595     Roo.lib.Ajax = {
2596         /**
2597          * @static 
2598          */
2599         request : function(method, uri, cb, data, options) {
2600             if(options){
2601                 var hs = options.headers;
2602                 if(hs){
2603                     for(var h in hs){
2604                         if(hs.hasOwnProperty(h)){
2605                             this.initHeader(h, hs[h], false);
2606                         }
2607                     }
2608                 }
2609                 if(options.xmlData){
2610                     this.initHeader('Content-Type', 'text/xml', false);
2611                     method = 'POST';
2612                     data = options.xmlData;
2613                 }
2614             }
2615
2616             return this.asyncRequest(method, uri, cb, data);
2617         },
2618
2619         serializeForm : function(form) {
2620             if(typeof form == 'string') {
2621                 form = (document.getElementById(form) || document.forms[form]);
2622             }
2623
2624             var el, name, val, disabled, data = '', hasSubmit = false;
2625             for (var i = 0; i < form.elements.length; i++) {
2626                 el = form.elements[i];
2627                 disabled = form.elements[i].disabled;
2628                 name = form.elements[i].name;
2629                 val = form.elements[i].value;
2630
2631                 if (!disabled && name){
2632                     switch (el.type)
2633                             {
2634                         case 'select-one':
2635                         case 'select-multiple':
2636                             for (var j = 0; j < el.options.length; j++) {
2637                                 if (el.options[j].selected) {
2638                                     if (Roo.isIE) {
2639                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2640                                     }
2641                                     else {
2642                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2643                                     }
2644                                 }
2645                             }
2646                             break;
2647                         case 'radio':
2648                         case 'checkbox':
2649                             if (el.checked) {
2650                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2651                             }
2652                             break;
2653                         case 'file':
2654
2655                         case undefined:
2656
2657                         case 'reset':
2658
2659                         case 'button':
2660
2661                             break;
2662                         case 'submit':
2663                             if(hasSubmit == false) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                                 hasSubmit = true;
2666                             }
2667                             break;
2668                         default:
2669                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2670                             break;
2671                     }
2672                 }
2673             }
2674             data = data.substr(0, data.length - 1);
2675             return data;
2676         },
2677
2678         headers:{},
2679
2680         hasHeaders:false,
2681
2682         useDefaultHeader:true,
2683
2684         defaultPostHeader:'application/x-www-form-urlencoded',
2685
2686         useDefaultXhrHeader:true,
2687
2688         defaultXhrHeader:'XMLHttpRequest',
2689
2690         hasDefaultHeaders:true,
2691
2692         defaultHeaders:{},
2693
2694         poll:{},
2695
2696         timeout:{},
2697
2698         pollInterval:50,
2699
2700         transactionId:0,
2701
2702         setProgId:function(id)
2703         {
2704             this.activeX.unshift(id);
2705         },
2706
2707         setDefaultPostHeader:function(b)
2708         {
2709             this.useDefaultHeader = b;
2710         },
2711
2712         setDefaultXhrHeader:function(b)
2713         {
2714             this.useDefaultXhrHeader = b;
2715         },
2716
2717         setPollingInterval:function(i)
2718         {
2719             if (typeof i == 'number' && isFinite(i)) {
2720                 this.pollInterval = i;
2721             }
2722         },
2723
2724         createXhrObject:function(transactionId)
2725         {
2726             var obj,http;
2727             try
2728             {
2729
2730                 http = new XMLHttpRequest();
2731
2732                 obj = { conn:http, tId:transactionId };
2733             }
2734             catch(e)
2735             {
2736                 for (var i = 0; i < this.activeX.length; ++i) {
2737                     try
2738                     {
2739
2740                         http = new ActiveXObject(this.activeX[i]);
2741
2742                         obj = { conn:http, tId:transactionId };
2743                         break;
2744                     }
2745                     catch(e) {
2746                     }
2747                 }
2748             }
2749             finally
2750             {
2751                 return obj;
2752             }
2753         },
2754
2755         getConnectionObject:function()
2756         {
2757             var o;
2758             var tId = this.transactionId;
2759
2760             try
2761             {
2762                 o = this.createXhrObject(tId);
2763                 if (o) {
2764                     this.transactionId++;
2765                 }
2766             }
2767             catch(e) {
2768             }
2769             finally
2770             {
2771                 return o;
2772             }
2773         },
2774
2775         asyncRequest:function(method, uri, callback, postData)
2776         {
2777             var o = this.getConnectionObject();
2778
2779             if (!o) {
2780                 return null;
2781             }
2782             else {
2783                 o.conn.open(method, uri, true);
2784
2785                 if (this.useDefaultXhrHeader) {
2786                     if (!this.defaultHeaders['X-Requested-With']) {
2787                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2788                     }
2789                 }
2790
2791                 if(postData && this.useDefaultHeader){
2792                     this.initHeader('Content-Type', this.defaultPostHeader);
2793                 }
2794
2795                  if (this.hasDefaultHeaders || this.hasHeaders) {
2796                     this.setHeader(o);
2797                 }
2798
2799                 this.handleReadyState(o, callback);
2800                 o.conn.send(postData || null);
2801
2802                 return o;
2803             }
2804         },
2805
2806         handleReadyState:function(o, callback)
2807         {
2808             var oConn = this;
2809
2810             if (callback && callback.timeout) {
2811                 
2812                 this.timeout[o.tId] = window.setTimeout(function() {
2813                     oConn.abort(o, callback, true);
2814                 }, callback.timeout);
2815             }
2816
2817             this.poll[o.tId] = window.setInterval(
2818                     function() {
2819                         if (o.conn && o.conn.readyState == 4) {
2820                             window.clearInterval(oConn.poll[o.tId]);
2821                             delete oConn.poll[o.tId];
2822
2823                             if(callback && callback.timeout) {
2824                                 window.clearTimeout(oConn.timeout[o.tId]);
2825                                 delete oConn.timeout[o.tId];
2826                             }
2827
2828                             oConn.handleTransactionResponse(o, callback);
2829                         }
2830                     }
2831                     , this.pollInterval);
2832         },
2833
2834         handleTransactionResponse:function(o, callback, isAbort)
2835         {
2836
2837             if (!callback) {
2838                 this.releaseObject(o);
2839                 return;
2840             }
2841
2842             var httpStatus, responseObject;
2843
2844             try
2845             {
2846                 if (o.conn.status !== undefined && o.conn.status != 0) {
2847                     httpStatus = o.conn.status;
2848                 }
2849                 else {
2850                     httpStatus = 13030;
2851                 }
2852             }
2853             catch(e) {
2854
2855
2856                 httpStatus = 13030;
2857             }
2858
2859             if (httpStatus >= 200 && httpStatus < 300) {
2860                 responseObject = this.createResponseObject(o, callback.argument);
2861                 if (callback.success) {
2862                     if (!callback.scope) {
2863                         callback.success(responseObject);
2864                     }
2865                     else {
2866
2867
2868                         callback.success.apply(callback.scope, [responseObject]);
2869                     }
2870                 }
2871             }
2872             else {
2873                 switch (httpStatus) {
2874
2875                     case 12002:
2876                     case 12029:
2877                     case 12030:
2878                     case 12031:
2879                     case 12152:
2880                     case 13030:
2881                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2882                         if (callback.failure) {
2883                             if (!callback.scope) {
2884                                 callback.failure(responseObject);
2885                             }
2886                             else {
2887                                 callback.failure.apply(callback.scope, [responseObject]);
2888                             }
2889                         }
2890                         break;
2891                     default:
2892                         responseObject = this.createResponseObject(o, callback.argument);
2893                         if (callback.failure) {
2894                             if (!callback.scope) {
2895                                 callback.failure(responseObject);
2896                             }
2897                             else {
2898                                 callback.failure.apply(callback.scope, [responseObject]);
2899                             }
2900                         }
2901                 }
2902             }
2903
2904             this.releaseObject(o);
2905             responseObject = null;
2906         },
2907
2908         createResponseObject:function(o, callbackArg)
2909         {
2910             var obj = {};
2911             var headerObj = {};
2912
2913             try
2914             {
2915                 var headerStr = o.conn.getAllResponseHeaders();
2916                 var header = headerStr.split('\n');
2917                 for (var i = 0; i < header.length; i++) {
2918                     var delimitPos = header[i].indexOf(':');
2919                     if (delimitPos != -1) {
2920                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2921                     }
2922                 }
2923             }
2924             catch(e) {
2925             }
2926
2927             obj.tId = o.tId;
2928             obj.status = o.conn.status;
2929             obj.statusText = o.conn.statusText;
2930             obj.getResponseHeader = headerObj;
2931             obj.getAllResponseHeaders = headerStr;
2932             obj.responseText = o.conn.responseText;
2933             obj.responseXML = o.conn.responseXML;
2934
2935             if (typeof callbackArg !== undefined) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         createExceptionObject:function(tId, callbackArg, isAbort)
2943         {
2944             var COMM_CODE = 0;
2945             var COMM_ERROR = 'communication failure';
2946             var ABORT_CODE = -1;
2947             var ABORT_ERROR = 'transaction aborted';
2948
2949             var obj = {};
2950
2951             obj.tId = tId;
2952             if (isAbort) {
2953                 obj.status = ABORT_CODE;
2954                 obj.statusText = ABORT_ERROR;
2955             }
2956             else {
2957                 obj.status = COMM_CODE;
2958                 obj.statusText = COMM_ERROR;
2959             }
2960
2961             if (callbackArg) {
2962                 obj.argument = callbackArg;
2963             }
2964
2965             return obj;
2966         },
2967
2968         initHeader:function(label, value, isDefault)
2969         {
2970             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2971
2972             if (headerObj[label] === undefined) {
2973                 headerObj[label] = value;
2974             }
2975             else {
2976
2977
2978                 headerObj[label] = value + "," + headerObj[label];
2979             }
2980
2981             if (isDefault) {
2982                 this.hasDefaultHeaders = true;
2983             }
2984             else {
2985                 this.hasHeaders = true;
2986             }
2987         },
2988
2989
2990         setHeader:function(o)
2991         {
2992             if (this.hasDefaultHeaders) {
2993                 for (var prop in this.defaultHeaders) {
2994                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2995                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2996                     }
2997                 }
2998             }
2999
3000             if (this.hasHeaders) {
3001                 for (var prop in this.headers) {
3002                     if (this.headers.hasOwnProperty(prop)) {
3003                         o.conn.setRequestHeader(prop, this.headers[prop]);
3004                     }
3005                 }
3006                 this.headers = {};
3007                 this.hasHeaders = false;
3008             }
3009         },
3010
3011         resetDefaultHeaders:function() {
3012             delete this.defaultHeaders;
3013             this.defaultHeaders = {};
3014             this.hasDefaultHeaders = false;
3015         },
3016
3017         abort:function(o, callback, isTimeout)
3018         {
3019             if(this.isCallInProgress(o)) {
3020                 o.conn.abort();
3021                 window.clearInterval(this.poll[o.tId]);
3022                 delete this.poll[o.tId];
3023                 if (isTimeout) {
3024                     delete this.timeout[o.tId];
3025                 }
3026
3027                 this.handleTransactionResponse(o, callback, true);
3028
3029                 return true;
3030             }
3031             else {
3032                 return false;
3033             }
3034         },
3035
3036
3037         isCallInProgress:function(o)
3038         {
3039             if (o && o.conn) {
3040                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3041             }
3042             else {
3043
3044                 return false;
3045             }
3046         },
3047
3048
3049         releaseObject:function(o)
3050         {
3051
3052             o.conn = null;
3053
3054             o = null;
3055         },
3056
3057         activeX:[
3058         'MSXML2.XMLHTTP.3.0',
3059         'MSXML2.XMLHTTP',
3060         'Microsoft.XMLHTTP'
3061         ]
3062
3063
3064     };
3065 })();/*
3066  * Portions of this file are based on pieces of Yahoo User Interface Library
3067  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3068  * YUI licensed under the BSD License:
3069  * http://developer.yahoo.net/yui/license.txt
3070  * <script type="text/javascript">
3071  *
3072  */
3073
3074 Roo.lib.Region = function(t, r, b, l) {
3075     this.top = t;
3076     this[1] = t;
3077     this.right = r;
3078     this.bottom = b;
3079     this.left = l;
3080     this[0] = l;
3081 };
3082
3083
3084 Roo.lib.Region.prototype = {
3085     contains : function(region) {
3086         return ( region.left >= this.left &&
3087                  region.right <= this.right &&
3088                  region.top >= this.top &&
3089                  region.bottom <= this.bottom    );
3090
3091     },
3092
3093     getArea : function() {
3094         return ( (this.bottom - this.top) * (this.right - this.left) );
3095     },
3096
3097     intersect : function(region) {
3098         var t = Math.max(this.top, region.top);
3099         var r = Math.min(this.right, region.right);
3100         var b = Math.min(this.bottom, region.bottom);
3101         var l = Math.max(this.left, region.left);
3102
3103         if (b >= t && r >= l) {
3104             return new Roo.lib.Region(t, r, b, l);
3105         } else {
3106             return null;
3107         }
3108     },
3109     union : function(region) {
3110         var t = Math.min(this.top, region.top);
3111         var r = Math.max(this.right, region.right);
3112         var b = Math.max(this.bottom, region.bottom);
3113         var l = Math.min(this.left, region.left);
3114
3115         return new Roo.lib.Region(t, r, b, l);
3116     },
3117
3118     adjust : function(t, l, b, r) {
3119         this.top += t;
3120         this.left += l;
3121         this.right += r;
3122         this.bottom += b;
3123         return this;
3124     }
3125 };
3126
3127 Roo.lib.Region.getRegion = function(el) {
3128     var p = Roo.lib.Dom.getXY(el);
3129
3130     var t = p[1];
3131     var r = p[0] + el.offsetWidth;
3132     var b = p[1] + el.offsetHeight;
3133     var l = p[0];
3134
3135     return new Roo.lib.Region(t, r, b, l);
3136 };
3137 /*
3138  * Portions of this file are based on pieces of Yahoo User Interface Library
3139  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3140  * YUI licensed under the BSD License:
3141  * http://developer.yahoo.net/yui/license.txt
3142  * <script type="text/javascript">
3143  *
3144  */
3145 //@@dep Roo.lib.Region
3146
3147
3148 Roo.lib.Point = function(x, y) {
3149     if (x instanceof Array) {
3150         y = x[1];
3151         x = x[0];
3152     }
3153     this.x = this.right = this.left = this[0] = x;
3154     this.y = this.top = this.bottom = this[1] = y;
3155 };
3156
3157 Roo.lib.Point.prototype = new Roo.lib.Region();
3158 /*
3159  * Portions of this file are based on pieces of Yahoo User Interface Library
3160  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3161  * YUI licensed under the BSD License:
3162  * http://developer.yahoo.net/yui/license.txt
3163  * <script type="text/javascript">
3164  *
3165  */
3166  
3167 (function() {   
3168
3169     Roo.lib.Anim = {
3170         scroll : function(el, args, duration, easing, cb, scope) {
3171             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3172         },
3173
3174         motion : function(el, args, duration, easing, cb, scope) {
3175             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3176         },
3177
3178         color : function(el, args, duration, easing, cb, scope) {
3179             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3180         },
3181
3182         run : function(el, args, duration, easing, cb, scope, type) {
3183             type = type || Roo.lib.AnimBase;
3184             if (typeof easing == "string") {
3185                 easing = Roo.lib.Easing[easing];
3186             }
3187             var anim = new type(el, args, duration, easing);
3188             anim.animateX(function() {
3189                 Roo.callback(cb, scope);
3190             });
3191             return anim;
3192         }
3193     };
3194 })();/*
3195  * Portions of this file are based on pieces of Yahoo User Interface Library
3196  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3197  * YUI licensed under the BSD License:
3198  * http://developer.yahoo.net/yui/license.txt
3199  * <script type="text/javascript">
3200  *
3201  */
3202
3203 (function() {    
3204     var libFlyweight;
3205     
3206     function fly(el) {
3207         if (!libFlyweight) {
3208             libFlyweight = new Roo.Element.Flyweight();
3209         }
3210         libFlyweight.dom = el;
3211         return libFlyweight;
3212     }
3213
3214     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3215     
3216    
3217     
3218     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3219         if (el) {
3220             this.init(el, attributes, duration, method);
3221         }
3222     };
3223
3224     Roo.lib.AnimBase.fly = fly;
3225     
3226     
3227     
3228     Roo.lib.AnimBase.prototype = {
3229
3230         toString: function() {
3231             var el = this.getEl();
3232             var id = el.id || el.tagName;
3233             return ("Anim " + id);
3234         },
3235
3236         patterns: {
3237             noNegatives:        /width|height|opacity|padding/i,
3238             offsetAttribute:  /^((width|height)|(top|left))$/,
3239             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3240             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3241         },
3242
3243
3244         doMethod: function(attr, start, end) {
3245             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3246         },
3247
3248
3249         setAttribute: function(attr, val, unit) {
3250             if (this.patterns.noNegatives.test(attr)) {
3251                 val = (val > 0) ? val : 0;
3252             }
3253
3254             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3255         },
3256
3257
3258         getAttribute: function(attr) {
3259             var el = this.getEl();
3260             var val = fly(el).getStyle(attr);
3261
3262             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3263                 return parseFloat(val);
3264             }
3265
3266             var a = this.patterns.offsetAttribute.exec(attr) || [];
3267             var pos = !!( a[3] );
3268             var box = !!( a[2] );
3269
3270
3271             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3272                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3273             } else {
3274                 val = 0;
3275             }
3276
3277             return val;
3278         },
3279
3280
3281         getDefaultUnit: function(attr) {
3282             if (this.patterns.defaultUnit.test(attr)) {
3283                 return 'px';
3284             }
3285
3286             return '';
3287         },
3288
3289         animateX : function(callback, scope) {
3290             var f = function() {
3291                 this.onComplete.removeListener(f);
3292                 if (typeof callback == "function") {
3293                     callback.call(scope || this, this);
3294                 }
3295             };
3296             this.onComplete.addListener(f, this);
3297             this.animate();
3298         },
3299
3300
3301         setRuntimeAttribute: function(attr) {
3302             var start;
3303             var end;
3304             var attributes = this.attributes;
3305
3306             this.runtimeAttributes[attr] = {};
3307
3308             var isset = function(prop) {
3309                 return (typeof prop !== 'undefined');
3310             };
3311
3312             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3313                 return false;
3314             }
3315
3316             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3317
3318
3319             if (isset(attributes[attr]['to'])) {
3320                 end = attributes[attr]['to'];
3321             } else if (isset(attributes[attr]['by'])) {
3322                 if (start.constructor == Array) {
3323                     end = [];
3324                     for (var i = 0, len = start.length; i < len; ++i) {
3325                         end[i] = start[i] + attributes[attr]['by'][i];
3326                     }
3327                 } else {
3328                     end = start + attributes[attr]['by'];
3329                 }
3330             }
3331
3332             this.runtimeAttributes[attr].start = start;
3333             this.runtimeAttributes[attr].end = end;
3334
3335
3336             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3337         },
3338
3339
3340         init: function(el, attributes, duration, method) {
3341
3342             var isAnimated = false;
3343
3344
3345             var startTime = null;
3346
3347
3348             var actualFrames = 0;
3349
3350
3351             el = Roo.getDom(el);
3352
3353
3354             this.attributes = attributes || {};
3355
3356
3357             this.duration = duration || 1;
3358
3359
3360             this.method = method || Roo.lib.Easing.easeNone;
3361
3362
3363             this.useSeconds = true;
3364
3365
3366             this.currentFrame = 0;
3367
3368
3369             this.totalFrames = Roo.lib.AnimMgr.fps;
3370
3371
3372             this.getEl = function() {
3373                 return el;
3374             };
3375
3376
3377             this.isAnimated = function() {
3378                 return isAnimated;
3379             };
3380
3381
3382             this.getStartTime = function() {
3383                 return startTime;
3384             };
3385
3386             this.runtimeAttributes = {};
3387
3388
3389             this.animate = function() {
3390                 if (this.isAnimated()) {
3391                     return false;
3392                 }
3393
3394                 this.currentFrame = 0;
3395
3396                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3397
3398                 Roo.lib.AnimMgr.registerElement(this);
3399             };
3400
3401
3402             this.stop = function(finish) {
3403                 if (finish) {
3404                     this.currentFrame = this.totalFrames;
3405                     this._onTween.fire();
3406                 }
3407                 Roo.lib.AnimMgr.stop(this);
3408             };
3409
3410             var onStart = function() {
3411                 this.onStart.fire();
3412
3413                 this.runtimeAttributes = {};
3414                 for (var attr in this.attributes) {
3415                     this.setRuntimeAttribute(attr);
3416                 }
3417
3418                 isAnimated = true;
3419                 actualFrames = 0;
3420                 startTime = new Date();
3421             };
3422
3423
3424             var onTween = function() {
3425                 var data = {
3426                     duration: new Date() - this.getStartTime(),
3427                     currentFrame: this.currentFrame
3428                 };
3429
3430                 data.toString = function() {
3431                     return (
3432                             'duration: ' + data.duration +
3433                             ', currentFrame: ' + data.currentFrame
3434                             );
3435                 };
3436
3437                 this.onTween.fire(data);
3438
3439                 var runtimeAttributes = this.runtimeAttributes;
3440
3441                 for (var attr in runtimeAttributes) {
3442                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3443                 }
3444
3445                 actualFrames += 1;
3446             };
3447
3448             var onComplete = function() {
3449                 var actual_duration = (new Date() - startTime) / 1000 ;
3450
3451                 var data = {
3452                     duration: actual_duration,
3453                     frames: actualFrames,
3454                     fps: actualFrames / actual_duration
3455                 };
3456
3457                 data.toString = function() {
3458                     return (
3459                             'duration: ' + data.duration +
3460                             ', frames: ' + data.frames +
3461                             ', fps: ' + data.fps
3462                             );
3463                 };
3464
3465                 isAnimated = false;
3466                 actualFrames = 0;
3467                 this.onComplete.fire(data);
3468             };
3469
3470
3471             this._onStart = new Roo.util.Event(this);
3472             this.onStart = new Roo.util.Event(this);
3473             this.onTween = new Roo.util.Event(this);
3474             this._onTween = new Roo.util.Event(this);
3475             this.onComplete = new Roo.util.Event(this);
3476             this._onComplete = new Roo.util.Event(this);
3477             this._onStart.addListener(onStart);
3478             this._onTween.addListener(onTween);
3479             this._onComplete.addListener(onComplete);
3480         }
3481     };
3482 })();
3483 /*
3484  * Portions of this file are based on pieces of Yahoo User Interface Library
3485  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3486  * YUI licensed under the BSD License:
3487  * http://developer.yahoo.net/yui/license.txt
3488  * <script type="text/javascript">
3489  *
3490  */
3491
3492 Roo.lib.AnimMgr = new function() {
3493
3494     var thread = null;
3495
3496
3497     var queue = [];
3498
3499
3500     var tweenCount = 0;
3501
3502
3503     this.fps = 1000;
3504
3505
3506     this.delay = 1;
3507
3508
3509     this.registerElement = function(tween) {
3510         queue[queue.length] = tween;
3511         tweenCount += 1;
3512         tween._onStart.fire();
3513         this.start();
3514     };
3515
3516
3517     this.unRegister = function(tween, index) {
3518         tween._onComplete.fire();
3519         index = index || getIndex(tween);
3520         if (index != -1) {
3521             queue.splice(index, 1);
3522         }
3523
3524         tweenCount -= 1;
3525         if (tweenCount <= 0) {
3526             this.stop();
3527         }
3528     };
3529
3530
3531     this.start = function() {
3532         if (thread === null) {
3533             thread = setInterval(this.run, this.delay);
3534         }
3535     };
3536
3537
3538     this.stop = function(tween) {
3539         if (!tween) {
3540             clearInterval(thread);
3541
3542             for (var i = 0, len = queue.length; i < len; ++i) {
3543                 if (queue[0].isAnimated()) {
3544                     this.unRegister(queue[0], 0);
3545                 }
3546             }
3547
3548             queue = [];
3549             thread = null;
3550             tweenCount = 0;
3551         }
3552         else {
3553             this.unRegister(tween);
3554         }
3555     };
3556
3557
3558     this.run = function() {
3559         for (var i = 0, len = queue.length; i < len; ++i) {
3560             var tween = queue[i];
3561             if (!tween || !tween.isAnimated()) {
3562                 continue;
3563             }
3564
3565             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3566             {
3567                 tween.currentFrame += 1;
3568
3569                 if (tween.useSeconds) {
3570                     correctFrame(tween);
3571                 }
3572                 tween._onTween.fire();
3573             }
3574             else {
3575                 Roo.lib.AnimMgr.stop(tween, i);
3576             }
3577         }
3578     };
3579
3580     var getIndex = function(anim) {
3581         for (var i = 0, len = queue.length; i < len; ++i) {
3582             if (queue[i] == anim) {
3583                 return i;
3584             }
3585         }
3586         return -1;
3587     };
3588
3589
3590     var correctFrame = function(tween) {
3591         var frames = tween.totalFrames;
3592         var frame = tween.currentFrame;
3593         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3594         var elapsed = (new Date() - tween.getStartTime());
3595         var tweak = 0;
3596
3597         if (elapsed < tween.duration * 1000) {
3598             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3599         } else {
3600             tweak = frames - (frame + 1);
3601         }
3602         if (tweak > 0 && isFinite(tweak)) {
3603             if (tween.currentFrame + tweak >= frames) {
3604                 tweak = frames - (frame + 1);
3605             }
3606
3607             tween.currentFrame += tweak;
3608         }
3609     };
3610 };
3611
3612     /*
3613  * Portions of this file are based on pieces of Yahoo User Interface Library
3614  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3615  * YUI licensed under the BSD License:
3616  * http://developer.yahoo.net/yui/license.txt
3617  * <script type="text/javascript">
3618  *
3619  */
3620 Roo.lib.Bezier = new function() {
3621
3622         this.getPosition = function(points, t) {
3623             var n = points.length;
3624             var tmp = [];
3625
3626             for (var i = 0; i < n; ++i) {
3627                 tmp[i] = [points[i][0], points[i][1]];
3628             }
3629
3630             for (var j = 1; j < n; ++j) {
3631                 for (i = 0; i < n - j; ++i) {
3632                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3633                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3634                 }
3635             }
3636
3637             return [ tmp[0][0], tmp[0][1] ];
3638
3639         };
3640     };/*
3641  * Portions of this file are based on pieces of Yahoo User Interface Library
3642  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3643  * YUI licensed under the BSD License:
3644  * http://developer.yahoo.net/yui/license.txt
3645  * <script type="text/javascript">
3646  *
3647  */
3648 (function() {
3649
3650     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3651         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3652     };
3653
3654     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3655
3656     var fly = Roo.lib.AnimBase.fly;
3657     var Y = Roo.lib;
3658     var superclass = Y.ColorAnim.superclass;
3659     var proto = Y.ColorAnim.prototype;
3660
3661     proto.toString = function() {
3662         var el = this.getEl();
3663         var id = el.id || el.tagName;
3664         return ("ColorAnim " + id);
3665     };
3666
3667     proto.patterns.color = /color$/i;
3668     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3669     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3670     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3671     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3672
3673
3674     proto.parseColor = function(s) {
3675         if (s.length == 3) {
3676             return s;
3677         }
3678
3679         var c = this.patterns.hex.exec(s);
3680         if (c && c.length == 4) {
3681             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3682         }
3683
3684         c = this.patterns.rgb.exec(s);
3685         if (c && c.length == 4) {
3686             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3687         }
3688
3689         c = this.patterns.hex3.exec(s);
3690         if (c && c.length == 4) {
3691             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3692         }
3693
3694         return null;
3695     };
3696     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3697     proto.getAttribute = function(attr) {
3698         var el = this.getEl();
3699         if (this.patterns.color.test(attr)) {
3700             var val = fly(el).getStyle(attr);
3701
3702             if (this.patterns.transparent.test(val)) {
3703                 var parent = el.parentNode;
3704                 val = fly(parent).getStyle(attr);
3705
3706                 while (parent && this.patterns.transparent.test(val)) {
3707                     parent = parent.parentNode;
3708                     val = fly(parent).getStyle(attr);
3709                     if (parent.tagName.toUpperCase() == 'HTML') {
3710                         val = '#fff';
3711                     }
3712                 }
3713             }
3714         } else {
3715             val = superclass.getAttribute.call(this, attr);
3716         }
3717
3718         return val;
3719     };
3720     proto.getAttribute = function(attr) {
3721         var el = this.getEl();
3722         if (this.patterns.color.test(attr)) {
3723             var val = fly(el).getStyle(attr);
3724
3725             if (this.patterns.transparent.test(val)) {
3726                 var parent = el.parentNode;
3727                 val = fly(parent).getStyle(attr);
3728
3729                 while (parent && this.patterns.transparent.test(val)) {
3730                     parent = parent.parentNode;
3731                     val = fly(parent).getStyle(attr);
3732                     if (parent.tagName.toUpperCase() == 'HTML') {
3733                         val = '#fff';
3734                     }
3735                 }
3736             }
3737         } else {
3738             val = superclass.getAttribute.call(this, attr);
3739         }
3740
3741         return val;
3742     };
3743
3744     proto.doMethod = function(attr, start, end) {
3745         var val;
3746
3747         if (this.patterns.color.test(attr)) {
3748             val = [];
3749             for (var i = 0, len = start.length; i < len; ++i) {
3750                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3751             }
3752
3753             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3754         }
3755         else {
3756             val = superclass.doMethod.call(this, attr, start, end);
3757         }
3758
3759         return val;
3760     };
3761
3762     proto.setRuntimeAttribute = function(attr) {
3763         superclass.setRuntimeAttribute.call(this, attr);
3764
3765         if (this.patterns.color.test(attr)) {
3766             var attributes = this.attributes;
3767             var start = this.parseColor(this.runtimeAttributes[attr].start);
3768             var end = this.parseColor(this.runtimeAttributes[attr].end);
3769
3770             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3771                 end = this.parseColor(attributes[attr].by);
3772
3773                 for (var i = 0, len = start.length; i < len; ++i) {
3774                     end[i] = start[i] + end[i];
3775                 }
3776             }
3777
3778             this.runtimeAttributes[attr].start = start;
3779             this.runtimeAttributes[attr].end = end;
3780         }
3781     };
3782 })();
3783
3784 /*
3785  * Portions of this file are based on pieces of Yahoo User Interface Library
3786  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3787  * YUI licensed under the BSD License:
3788  * http://developer.yahoo.net/yui/license.txt
3789  * <script type="text/javascript">
3790  *
3791  */
3792 Roo.lib.Easing = {
3793
3794
3795     easeNone: function (t, b, c, d) {
3796         return c * t / d + b;
3797     },
3798
3799
3800     easeIn: function (t, b, c, d) {
3801         return c * (t /= d) * t + b;
3802     },
3803
3804
3805     easeOut: function (t, b, c, d) {
3806         return -c * (t /= d) * (t - 2) + b;
3807     },
3808
3809
3810     easeBoth: function (t, b, c, d) {
3811         if ((t /= d / 2) < 1) {
3812             return c / 2 * t * t + b;
3813         }
3814
3815         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3816     },
3817
3818
3819     easeInStrong: function (t, b, c, d) {
3820         return c * (t /= d) * t * t * t + b;
3821     },
3822
3823
3824     easeOutStrong: function (t, b, c, d) {
3825         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3826     },
3827
3828
3829     easeBothStrong: function (t, b, c, d) {
3830         if ((t /= d / 2) < 1) {
3831             return c / 2 * t * t * t * t + b;
3832         }
3833
3834         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3835     },
3836
3837
3838
3839     elasticIn: function (t, b, c, d, a, p) {
3840         if (t == 0) {
3841             return b;
3842         }
3843         if ((t /= d) == 1) {
3844             return b + c;
3845         }
3846         if (!p) {
3847             p = d * .3;
3848         }
3849
3850         if (!a || a < Math.abs(c)) {
3851             a = c;
3852             var s = p / 4;
3853         }
3854         else {
3855             var s = p / (2 * Math.PI) * Math.asin(c / a);
3856         }
3857
3858         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3859     },
3860
3861
3862     elasticOut: function (t, b, c, d, a, p) {
3863         if (t == 0) {
3864             return b;
3865         }
3866         if ((t /= d) == 1) {
3867             return b + c;
3868         }
3869         if (!p) {
3870             p = d * .3;
3871         }
3872
3873         if (!a || a < Math.abs(c)) {
3874             a = c;
3875             var s = p / 4;
3876         }
3877         else {
3878             var s = p / (2 * Math.PI) * Math.asin(c / a);
3879         }
3880
3881         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3882     },
3883
3884
3885     elasticBoth: function (t, b, c, d, a, p) {
3886         if (t == 0) {
3887             return b;
3888         }
3889
3890         if ((t /= d / 2) == 2) {
3891             return b + c;
3892         }
3893
3894         if (!p) {
3895             p = d * (.3 * 1.5);
3896         }
3897
3898         if (!a || a < Math.abs(c)) {
3899             a = c;
3900             var s = p / 4;
3901         }
3902         else {
3903             var s = p / (2 * Math.PI) * Math.asin(c / a);
3904         }
3905
3906         if (t < 1) {
3907             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3908                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3909         }
3910         return a * Math.pow(2, -10 * (t -= 1)) *
3911                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3912     },
3913
3914
3915
3916     backIn: function (t, b, c, d, s) {
3917         if (typeof s == 'undefined') {
3918             s = 1.70158;
3919         }
3920         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3921     },
3922
3923
3924     backOut: function (t, b, c, d, s) {
3925         if (typeof s == 'undefined') {
3926             s = 1.70158;
3927         }
3928         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3929     },
3930
3931
3932     backBoth: function (t, b, c, d, s) {
3933         if (typeof s == 'undefined') {
3934             s = 1.70158;
3935         }
3936
3937         if ((t /= d / 2 ) < 1) {
3938             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3939         }
3940         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3941     },
3942
3943
3944     bounceIn: function (t, b, c, d) {
3945         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3946     },
3947
3948
3949     bounceOut: function (t, b, c, d) {
3950         if ((t /= d) < (1 / 2.75)) {
3951             return c * (7.5625 * t * t) + b;
3952         } else if (t < (2 / 2.75)) {
3953             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3954         } else if (t < (2.5 / 2.75)) {
3955             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3956         }
3957         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3958     },
3959
3960
3961     bounceBoth: function (t, b, c, d) {
3962         if (t < d / 2) {
3963             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3964         }
3965         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3966     }
3967 };/*
3968  * Portions of this file are based on pieces of Yahoo User Interface Library
3969  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3970  * YUI licensed under the BSD License:
3971  * http://developer.yahoo.net/yui/license.txt
3972  * <script type="text/javascript">
3973  *
3974  */
3975     (function() {
3976         Roo.lib.Motion = function(el, attributes, duration, method) {
3977             if (el) {
3978                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3979             }
3980         };
3981
3982         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3983
3984
3985         var Y = Roo.lib;
3986         var superclass = Y.Motion.superclass;
3987         var proto = Y.Motion.prototype;
3988
3989         proto.toString = function() {
3990             var el = this.getEl();
3991             var id = el.id || el.tagName;
3992             return ("Motion " + id);
3993         };
3994
3995         proto.patterns.points = /^points$/i;
3996
3997         proto.setAttribute = function(attr, val, unit) {
3998             if (this.patterns.points.test(attr)) {
3999                 unit = unit || 'px';
4000                 superclass.setAttribute.call(this, 'left', val[0], unit);
4001                 superclass.setAttribute.call(this, 'top', val[1], unit);
4002             } else {
4003                 superclass.setAttribute.call(this, attr, val, unit);
4004             }
4005         };
4006
4007         proto.getAttribute = function(attr) {
4008             if (this.patterns.points.test(attr)) {
4009                 var val = [
4010                         superclass.getAttribute.call(this, 'left'),
4011                         superclass.getAttribute.call(this, 'top')
4012                         ];
4013             } else {
4014                 val = superclass.getAttribute.call(this, attr);
4015             }
4016
4017             return val;
4018         };
4019
4020         proto.doMethod = function(attr, start, end) {
4021             var val = null;
4022
4023             if (this.patterns.points.test(attr)) {
4024                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4025                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4026             } else {
4027                 val = superclass.doMethod.call(this, attr, start, end);
4028             }
4029             return val;
4030         };
4031
4032         proto.setRuntimeAttribute = function(attr) {
4033             if (this.patterns.points.test(attr)) {
4034                 var el = this.getEl();
4035                 var attributes = this.attributes;
4036                 var start;
4037                 var control = attributes['points']['control'] || [];
4038                 var end;
4039                 var i, len;
4040
4041                 if (control.length > 0 && !(control[0] instanceof Array)) {
4042                     control = [control];
4043                 } else {
4044                     var tmp = [];
4045                     for (i = 0,len = control.length; i < len; ++i) {
4046                         tmp[i] = control[i];
4047                     }
4048                     control = tmp;
4049                 }
4050
4051                 Roo.fly(el).position();
4052
4053                 if (isset(attributes['points']['from'])) {
4054                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4055                 }
4056                 else {
4057                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4058                 }
4059
4060                 start = this.getAttribute('points');
4061
4062
4063                 if (isset(attributes['points']['to'])) {
4064                     end = translateValues.call(this, attributes['points']['to'], start);
4065
4066                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4067                     for (i = 0,len = control.length; i < len; ++i) {
4068                         control[i] = translateValues.call(this, control[i], start);
4069                     }
4070
4071
4072                 } else if (isset(attributes['points']['by'])) {
4073                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4074
4075                     for (i = 0,len = control.length; i < len; ++i) {
4076                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4077                     }
4078                 }
4079
4080                 this.runtimeAttributes[attr] = [start];
4081
4082                 if (control.length > 0) {
4083                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4084                 }
4085
4086                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4087             }
4088             else {
4089                 superclass.setRuntimeAttribute.call(this, attr);
4090             }
4091         };
4092
4093         var translateValues = function(val, start) {
4094             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4095             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4096
4097             return val;
4098         };
4099
4100         var isset = function(prop) {
4101             return (typeof prop !== 'undefined');
4102         };
4103     })();
4104 /*
4105  * Portions of this file are based on pieces of Yahoo User Interface Library
4106  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4107  * YUI licensed under the BSD License:
4108  * http://developer.yahoo.net/yui/license.txt
4109  * <script type="text/javascript">
4110  *
4111  */
4112     (function() {
4113         Roo.lib.Scroll = function(el, attributes, duration, method) {
4114             if (el) {
4115                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4116             }
4117         };
4118
4119         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4120
4121
4122         var Y = Roo.lib;
4123         var superclass = Y.Scroll.superclass;
4124         var proto = Y.Scroll.prototype;
4125
4126         proto.toString = function() {
4127             var el = this.getEl();
4128             var id = el.id || el.tagName;
4129             return ("Scroll " + id);
4130         };
4131
4132         proto.doMethod = function(attr, start, end) {
4133             var val = null;
4134
4135             if (attr == 'scroll') {
4136                 val = [
4137                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4138                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4139                         ];
4140
4141             } else {
4142                 val = superclass.doMethod.call(this, attr, start, end);
4143             }
4144             return val;
4145         };
4146
4147         proto.getAttribute = function(attr) {
4148             var val = null;
4149             var el = this.getEl();
4150
4151             if (attr == 'scroll') {
4152                 val = [ el.scrollLeft, el.scrollTop ];
4153             } else {
4154                 val = superclass.getAttribute.call(this, attr);
4155             }
4156
4157             return val;
4158         };
4159
4160         proto.setAttribute = function(attr, val, unit) {
4161             var el = this.getEl();
4162
4163             if (attr == 'scroll') {
4164                 el.scrollLeft = val[0];
4165                 el.scrollTop = val[1];
4166             } else {
4167                 superclass.setAttribute.call(this, attr, val, unit);
4168             }
4169         };
4170     })();
4171 /*
4172  * Based on:
4173  * Ext JS Library 1.1.1
4174  * Copyright(c) 2006-2007, Ext JS, LLC.
4175  *
4176  * Originally Released Under LGPL - original licence link has changed is not relivant.
4177  *
4178  * Fork - LGPL
4179  * <script type="text/javascript">
4180  */
4181
4182
4183 // nasty IE9 hack - what a pile of crap that is..
4184
4185  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4186     Range.prototype.createContextualFragment = function (html) {
4187         var doc = window.document;
4188         var container = doc.createElement("div");
4189         container.innerHTML = html;
4190         var frag = doc.createDocumentFragment(), n;
4191         while ((n = container.firstChild)) {
4192             frag.appendChild(n);
4193         }
4194         return frag;
4195     };
4196 }
4197
4198 /**
4199  * @class Roo.DomHelper
4200  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4201  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
4202  * @singleton
4203  */
4204 Roo.DomHelper = function(){
4205     var tempTableEl = null;
4206     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4207     var tableRe = /^table|tbody|tr|td$/i;
4208     var xmlns = {};
4209     // build as innerHTML where available
4210     /** @ignore */
4211     var createHtml = function(o){
4212         if(typeof o == 'string'){
4213             return o;
4214         }
4215         var b = "";
4216         if(!o.tag){
4217             o.tag = "div";
4218         }
4219         b += "<" + o.tag;
4220         for(var attr in o){
4221             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4222             if(attr == "style"){
4223                 var s = o["style"];
4224                 if(typeof s == "function"){
4225                     s = s.call();
4226                 }
4227                 if(typeof s == "string"){
4228                     b += ' style="' + s + '"';
4229                 }else if(typeof s == "object"){
4230                     b += ' style="';
4231                     for(var key in s){
4232                         if(typeof s[key] != "function"){
4233                             b += key + ":" + s[key] + ";";
4234                         }
4235                     }
4236                     b += '"';
4237                 }
4238             }else{
4239                 if(attr == "cls"){
4240                     b += ' class="' + o["cls"] + '"';
4241                 }else if(attr == "htmlFor"){
4242                     b += ' for="' + o["htmlFor"] + '"';
4243                 }else{
4244                     b += " " + attr + '="' + o[attr] + '"';
4245                 }
4246             }
4247         }
4248         if(emptyTags.test(o.tag)){
4249             b += "/>";
4250         }else{
4251             b += ">";
4252             var cn = o.children || o.cn;
4253             if(cn){
4254                 //http://bugs.kde.org/show_bug.cgi?id=71506
4255                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4256                     for(var i = 0, len = cn.length; i < len; i++) {
4257                         b += createHtml(cn[i], b);
4258                     }
4259                 }else{
4260                     b += createHtml(cn, b);
4261                 }
4262             }
4263             if(o.html){
4264                 b += o.html;
4265             }
4266             b += "</" + o.tag + ">";
4267         }
4268         return b;
4269     };
4270
4271     // build as dom
4272     /** @ignore */
4273     var createDom = function(o, parentNode){
4274          
4275         // defininition craeted..
4276         var ns = false;
4277         if (o.ns && o.ns != 'html') {
4278                
4279             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4280                 xmlns[o.ns] = o.xmlns;
4281                 ns = o.xmlns;
4282             }
4283             if (typeof(xmlns[o.ns]) == 'undefined') {
4284                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4285             }
4286             ns = xmlns[o.ns];
4287         }
4288         
4289         
4290         if (typeof(o) == 'string') {
4291             return parentNode.appendChild(document.createTextNode(o));
4292         }
4293         o.tag = o.tag || div;
4294         if (o.ns && Roo.isIE) {
4295             ns = false;
4296             o.tag = o.ns + ':' + o.tag;
4297             
4298         }
4299         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4300         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4301         for(var attr in o){
4302             
4303             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4304                     attr == "style" || typeof o[attr] == "function") { continue; }
4305                     
4306             if(attr=="cls" && Roo.isIE){
4307                 el.className = o["cls"];
4308             }else{
4309                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4310                 else { 
4311                     el[attr] = o[attr];
4312                 }
4313             }
4314         }
4315         Roo.DomHelper.applyStyles(el, o.style);
4316         var cn = o.children || o.cn;
4317         if(cn){
4318             //http://bugs.kde.org/show_bug.cgi?id=71506
4319              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4320                 for(var i = 0, len = cn.length; i < len; i++) {
4321                     createDom(cn[i], el);
4322                 }
4323             }else{
4324                 createDom(cn, el);
4325             }
4326         }
4327         if(o.html){
4328             el.innerHTML = o.html;
4329         }
4330         if(parentNode){
4331            parentNode.appendChild(el);
4332         }
4333         return el;
4334     };
4335
4336     var ieTable = function(depth, s, h, e){
4337         tempTableEl.innerHTML = [s, h, e].join('');
4338         var i = -1, el = tempTableEl;
4339         while(++i < depth){
4340             el = el.firstChild;
4341         }
4342         return el;
4343     };
4344
4345     // kill repeat to save bytes
4346     var ts = '<table>',
4347         te = '</table>',
4348         tbs = ts+'<tbody>',
4349         tbe = '</tbody>'+te,
4350         trs = tbs + '<tr>',
4351         tre = '</tr>'+tbe;
4352
4353     /**
4354      * @ignore
4355      * Nasty code for IE's broken table implementation
4356      */
4357     var insertIntoTable = function(tag, where, el, html){
4358         if(!tempTableEl){
4359             tempTableEl = document.createElement('div');
4360         }
4361         var node;
4362         var before = null;
4363         if(tag == 'td'){
4364             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4365                 return;
4366             }
4367             if(where == 'beforebegin'){
4368                 before = el;
4369                 el = el.parentNode;
4370             } else{
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373             }
4374             node = ieTable(4, trs, html, tre);
4375         }
4376         else if(tag == 'tr'){
4377             if(where == 'beforebegin'){
4378                 before = el;
4379                 el = el.parentNode;
4380                 node = ieTable(3, tbs, html, tbe);
4381             } else if(where == 'afterend'){
4382                 before = el.nextSibling;
4383                 el = el.parentNode;
4384                 node = ieTable(3, tbs, html, tbe);
4385             } else{ // INTO a TR
4386                 if(where == 'afterbegin'){
4387                     before = el.firstChild;
4388                 }
4389                 node = ieTable(4, trs, html, tre);
4390             }
4391         } else if(tag == 'tbody'){
4392             if(where == 'beforebegin'){
4393                 before = el;
4394                 el = el.parentNode;
4395                 node = ieTable(2, ts, html, te);
4396             } else if(where == 'afterend'){
4397                 before = el.nextSibling;
4398                 el = el.parentNode;
4399                 node = ieTable(2, ts, html, te);
4400             } else{
4401                 if(where == 'afterbegin'){
4402                     before = el.firstChild;
4403                 }
4404                 node = ieTable(3, tbs, html, tbe);
4405             }
4406         } else{ // TABLE
4407             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4408                 return;
4409             }
4410             if(where == 'afterbegin'){
4411                 before = el.firstChild;
4412             }
4413             node = ieTable(2, ts, html, te);
4414         }
4415         el.insertBefore(node, before);
4416         return node;
4417     };
4418
4419     return {
4420     /** True to force the use of DOM instead of html fragments @type Boolean */
4421     useDom : false,
4422
4423     /**
4424      * Returns the markup for the passed Element(s) config
4425      * @param {Object} o The Dom object spec (and children)
4426      * @return {String}
4427      */
4428     markup : function(o){
4429         return createHtml(o);
4430     },
4431
4432     /**
4433      * Applies a style specification to an element
4434      * @param {String/HTMLElement} el The element to apply styles to
4435      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4436      * a function which returns such a specification.
4437      */
4438     applyStyles : function(el, styles){
4439         if(styles){
4440            el = Roo.fly(el);
4441            if(typeof styles == "string"){
4442                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4443                var matches;
4444                while ((matches = re.exec(styles)) != null){
4445                    el.setStyle(matches[1], matches[2]);
4446                }
4447            }else if (typeof styles == "object"){
4448                for (var style in styles){
4449                   el.setStyle(style, styles[style]);
4450                }
4451            }else if (typeof styles == "function"){
4452                 Roo.DomHelper.applyStyles(el, styles.call());
4453            }
4454         }
4455     },
4456
4457     /**
4458      * Inserts an HTML fragment into the Dom
4459      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4460      * @param {HTMLElement} el The context element
4461      * @param {String} html The HTML fragmenet
4462      * @return {HTMLElement} The new node
4463      */
4464     insertHtml : function(where, el, html){
4465         where = where.toLowerCase();
4466         if(el.insertAdjacentHTML){
4467             if(tableRe.test(el.tagName)){
4468                 var rs;
4469                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4470                     return rs;
4471                 }
4472             }
4473             switch(where){
4474                 case "beforebegin":
4475                     el.insertAdjacentHTML('BeforeBegin', html);
4476                     return el.previousSibling;
4477                 case "afterbegin":
4478                     el.insertAdjacentHTML('AfterBegin', html);
4479                     return el.firstChild;
4480                 case "beforeend":
4481                     el.insertAdjacentHTML('BeforeEnd', html);
4482                     return el.lastChild;
4483                 case "afterend":
4484                     el.insertAdjacentHTML('AfterEnd', html);
4485                     return el.nextSibling;
4486             }
4487             throw 'Illegal insertion point -> "' + where + '"';
4488         }
4489         var range = el.ownerDocument.createRange();
4490         var frag;
4491         switch(where){
4492              case "beforebegin":
4493                 range.setStartBefore(el);
4494                 frag = range.createContextualFragment(html);
4495                 el.parentNode.insertBefore(frag, el);
4496                 return el.previousSibling;
4497              case "afterbegin":
4498                 if(el.firstChild){
4499                     range.setStartBefore(el.firstChild);
4500                     frag = range.createContextualFragment(html);
4501                     el.insertBefore(frag, el.firstChild);
4502                     return el.firstChild;
4503                 }else{
4504                     el.innerHTML = html;
4505                     return el.firstChild;
4506                 }
4507             case "beforeend":
4508                 if(el.lastChild){
4509                     range.setStartAfter(el.lastChild);
4510                     frag = range.createContextualFragment(html);
4511                     el.appendChild(frag);
4512                     return el.lastChild;
4513                 }else{
4514                     el.innerHTML = html;
4515                     return el.lastChild;
4516                 }
4517             case "afterend":
4518                 range.setStartAfter(el);
4519                 frag = range.createContextualFragment(html);
4520                 el.parentNode.insertBefore(frag, el.nextSibling);
4521                 return el.nextSibling;
4522             }
4523             throw 'Illegal insertion point -> "' + where + '"';
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and inserts them before el
4528      * @param {String/HTMLElement/Element} el The context element
4529      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4530      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4531      * @return {HTMLElement/Roo.Element} The new node
4532      */
4533     insertBefore : function(el, o, returnElement){
4534         return this.doInsert(el, o, returnElement, "beforeBegin");
4535     },
4536
4537     /**
4538      * Creates new Dom element(s) and inserts them after el
4539      * @param {String/HTMLElement/Element} el The context element
4540      * @param {Object} o The Dom object spec (and children)
4541      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4542      * @return {HTMLElement/Roo.Element} The new node
4543      */
4544     insertAfter : function(el, o, returnElement){
4545         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4546     },
4547
4548     /**
4549      * Creates new Dom element(s) and inserts them as the first child of el
4550      * @param {String/HTMLElement/Element} el The context element
4551      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4552      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4553      * @return {HTMLElement/Roo.Element} The new node
4554      */
4555     insertFirst : function(el, o, returnElement){
4556         return this.doInsert(el, o, returnElement, "afterBegin");
4557     },
4558
4559     // private
4560     doInsert : function(el, o, returnElement, pos, sibling){
4561         el = Roo.getDom(el);
4562         var newNode;
4563         if(this.useDom || o.ns){
4564             newNode = createDom(o, null);
4565             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4566         }else{
4567             var html = createHtml(o);
4568             newNode = this.insertHtml(pos, el, html);
4569         }
4570         return returnElement ? Roo.get(newNode, true) : newNode;
4571     },
4572
4573     /**
4574      * Creates new Dom element(s) and appends them to el
4575      * @param {String/HTMLElement/Element} el The context element
4576      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4577      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4578      * @return {HTMLElement/Roo.Element} The new node
4579      */
4580     append : function(el, o, returnElement){
4581         el = Roo.getDom(el);
4582         var newNode;
4583         if(this.useDom || o.ns){
4584             newNode = createDom(o, null);
4585             el.appendChild(newNode);
4586         }else{
4587             var html = createHtml(o);
4588             newNode = this.insertHtml("beforeEnd", el, html);
4589         }
4590         return returnElement ? Roo.get(newNode, true) : newNode;
4591     },
4592
4593     /**
4594      * Creates new Dom element(s) and overwrites the contents of el with them
4595      * @param {String/HTMLElement/Element} el The context element
4596      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4597      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4598      * @return {HTMLElement/Roo.Element} The new node
4599      */
4600     overwrite : function(el, o, returnElement){
4601         el = Roo.getDom(el);
4602         if (o.ns) {
4603           
4604             while (el.childNodes.length) {
4605                 el.removeChild(el.firstChild);
4606             }
4607             createDom(o, el);
4608         } else {
4609             el.innerHTML = createHtml(o);   
4610         }
4611         
4612         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4613     },
4614
4615     /**
4616      * Creates a new Roo.DomHelper.Template from the Dom object spec
4617      * @param {Object} o The Dom object spec (and children)
4618      * @return {Roo.DomHelper.Template} The new template
4619      */
4620     createTemplate : function(o){
4621         var html = createHtml(o);
4622         return new Roo.Template(html);
4623     }
4624     };
4625 }();
4626 /*
4627  * Based on:
4628  * Ext JS Library 1.1.1
4629  * Copyright(c) 2006-2007, Ext JS, LLC.
4630  *
4631  * Originally Released Under LGPL - original licence link has changed is not relivant.
4632  *
4633  * Fork - LGPL
4634  * <script type="text/javascript">
4635  */
4636  
4637 /**
4638 * @class Roo.Template
4639 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4640 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4641 * Usage:
4642 <pre><code>
4643 var t = new Roo.Template({
4644     html :  '&lt;div name="{id}"&gt;' + 
4645         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4646         '&lt;/div&gt;',
4647     myformat: function (value, allValues) {
4648         return 'XX' + value;
4649     }
4650 });
4651 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4652 </code></pre>
4653 * For more information see this blog post with examples:
4654 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4655      - Create Elements using DOM, HTML fragments and Templates</a>. 
4656 * @constructor
4657 * @param {Object} cfg - Configuration object.
4658 */
4659 Roo.Template = function(cfg){
4660     // BC!
4661     if(cfg instanceof Array){
4662         cfg = cfg.join("");
4663     }else if(arguments.length > 1){
4664         cfg = Array.prototype.join.call(arguments, "");
4665     }
4666     
4667     
4668     if (typeof(cfg) == 'object') {
4669         Roo.apply(this,cfg)
4670     } else {
4671         // bc
4672         this.html = cfg;
4673     }
4674     if (this.url) {
4675         this.load();
4676     }
4677     
4678 };
4679 Roo.Template.prototype = {
4680     
4681     /**
4682      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4683      */
4684     onLoad : false,
4685     
4686     
4687     /**
4688      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
4689      *                    it should be fixed so that template is observable...
4690      */
4691     url : false,
4692     /**
4693      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4694      */
4695     html : '',
4696     
4697     
4698     compiled : false,
4699     loaded : false,
4700     /**
4701      * Returns an HTML fragment of this template with the specified values applied.
4702      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4703      * @return {String} The HTML fragment
4704      */
4705     
4706    
4707     
4708     applyTemplate : function(values){
4709         //Roo.log(["applyTemplate", values]);
4710         try {
4711            
4712             if(this.compiled){
4713                 return this.compiled(values);
4714             }
4715             var useF = this.disableFormats !== true;
4716             var fm = Roo.util.Format, tpl = this;
4717             var fn = function(m, name, format, args){
4718                 if(format && useF){
4719                     if(format.substr(0, 5) == "this."){
4720                         return tpl.call(format.substr(5), values[name], values);
4721                     }else{
4722                         if(args){
4723                             // quoted values are required for strings in compiled templates, 
4724                             // but for non compiled we need to strip them
4725                             // quoted reversed for jsmin
4726                             var re = /^\s*['"](.*)["']\s*$/;
4727                             args = args.split(',');
4728                             for(var i = 0, len = args.length; i < len; i++){
4729                                 args[i] = args[i].replace(re, "$1");
4730                             }
4731                             args = [values[name]].concat(args);
4732                         }else{
4733                             args = [values[name]];
4734                         }
4735                         return fm[format].apply(fm, args);
4736                     }
4737                 }else{
4738                     return values[name] !== undefined ? values[name] : "";
4739                 }
4740             };
4741             return this.html.replace(this.re, fn);
4742         } catch (e) {
4743             Roo.log(e);
4744             throw e;
4745         }
4746          
4747     },
4748     
4749     loading : false,
4750       
4751     load : function ()
4752     {
4753          
4754         if (this.loading) {
4755             return;
4756         }
4757         var _t = this;
4758         
4759         this.loading = true;
4760         this.compiled = false;
4761         
4762         var cx = new Roo.data.Connection();
4763         cx.request({
4764             url : this.url,
4765             method : 'GET',
4766             success : function (response) {
4767                 _t.loading = false;
4768                 _t.url = false;
4769                 
4770                 _t.set(response.responseText,true);
4771                 _t.loaded = true;
4772                 if (_t.onLoad) {
4773                     _t.onLoad();
4774                 }
4775              },
4776             failure : function(response) {
4777                 Roo.log("Template failed to load from " + _t.url);
4778                 _t.loading = false;
4779             }
4780         });
4781     },
4782
4783     /**
4784      * Sets the HTML used as the template and optionally compiles it.
4785      * @param {String} html
4786      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4787      * @return {Roo.Template} this
4788      */
4789     set : function(html, compile){
4790         this.html = html;
4791         this.compiled = false;
4792         if(compile){
4793             this.compile();
4794         }
4795         return this;
4796     },
4797     
4798     /**
4799      * True to disable format functions (defaults to false)
4800      * @type Boolean
4801      */
4802     disableFormats : false,
4803     
4804     /**
4805     * The regular expression used to match template variables 
4806     * @type RegExp
4807     * @property 
4808     */
4809     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4810     
4811     /**
4812      * Compiles the template into an internal function, eliminating the RegEx overhead.
4813      * @return {Roo.Template} this
4814      */
4815     compile : function(){
4816         var fm = Roo.util.Format;
4817         var useF = this.disableFormats !== true;
4818         var sep = Roo.isGecko ? "+" : ",";
4819         var fn = function(m, name, format, args){
4820             if(format && useF){
4821                 args = args ? ',' + args : "";
4822                 if(format.substr(0, 5) != "this."){
4823                     format = "fm." + format + '(';
4824                 }else{
4825                     format = 'this.call("'+ format.substr(5) + '", ';
4826                     args = ", values";
4827                 }
4828             }else{
4829                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4830             }
4831             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4832         };
4833         var body;
4834         // branched to use + in gecko and [].join() in others
4835         if(Roo.isGecko){
4836             body = "this.compiled = function(values){ return '" +
4837                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4838                     "';};";
4839         }else{
4840             body = ["this.compiled = function(values){ return ['"];
4841             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4842             body.push("'].join('');};");
4843             body = body.join('');
4844         }
4845         /**
4846          * eval:var:values
4847          * eval:var:fm
4848          */
4849         eval(body);
4850         return this;
4851     },
4852     
4853     // private function used to call members
4854     call : function(fnName, value, allValues){
4855         return this[fnName](value, allValues);
4856     },
4857     
4858     /**
4859      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4860      * @param {String/HTMLElement/Roo.Element} el The context element
4861      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4862      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4863      * @return {HTMLElement/Roo.Element} The new node or Element
4864      */
4865     insertFirst: function(el, values, returnElement){
4866         return this.doInsert('afterBegin', el, values, returnElement);
4867     },
4868
4869     /**
4870      * Applies the supplied values to the template and inserts the new node(s) before el.
4871      * @param {String/HTMLElement/Roo.Element} el The context element
4872      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4873      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4874      * @return {HTMLElement/Roo.Element} The new node or Element
4875      */
4876     insertBefore: function(el, values, returnElement){
4877         return this.doInsert('beforeBegin', el, values, returnElement);
4878     },
4879
4880     /**
4881      * Applies the supplied values to the template and inserts the new node(s) after el.
4882      * @param {String/HTMLElement/Roo.Element} el The context element
4883      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4884      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4885      * @return {HTMLElement/Roo.Element} The new node or Element
4886      */
4887     insertAfter : function(el, values, returnElement){
4888         return this.doInsert('afterEnd', el, values, returnElement);
4889     },
4890     
4891     /**
4892      * Applies the supplied values to the template and appends the new node(s) to el.
4893      * @param {String/HTMLElement/Roo.Element} el The context element
4894      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4895      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4896      * @return {HTMLElement/Roo.Element} The new node or Element
4897      */
4898     append : function(el, values, returnElement){
4899         return this.doInsert('beforeEnd', el, values, returnElement);
4900     },
4901
4902     doInsert : function(where, el, values, returnEl){
4903         el = Roo.getDom(el);
4904         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4905         return returnEl ? Roo.get(newNode, true) : newNode;
4906     },
4907
4908     /**
4909      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4910      * @param {String/HTMLElement/Roo.Element} el The context element
4911      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4912      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4913      * @return {HTMLElement/Roo.Element} The new node or Element
4914      */
4915     overwrite : function(el, values, returnElement){
4916         el = Roo.getDom(el);
4917         el.innerHTML = this.applyTemplate(values);
4918         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4919     }
4920 };
4921 /**
4922  * Alias for {@link #applyTemplate}
4923  * @method
4924  */
4925 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4926
4927 // backwards compat
4928 Roo.DomHelper.Template = Roo.Template;
4929
4930 /**
4931  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4932  * @param {String/HTMLElement} el A DOM element or its id
4933  * @returns {Roo.Template} The created template
4934  * @static
4935  */
4936 Roo.Template.from = function(el){
4937     el = Roo.getDom(el);
4938     return new Roo.Template(el.value || el.innerHTML);
4939 };/*
4940  * Based on:
4941  * Ext JS Library 1.1.1
4942  * Copyright(c) 2006-2007, Ext JS, LLC.
4943  *
4944  * Originally Released Under LGPL - original licence link has changed is not relivant.
4945  *
4946  * Fork - LGPL
4947  * <script type="text/javascript">
4948  */
4949  
4950
4951 /*
4952  * This is code is also distributed under MIT license for use
4953  * with jQuery and prototype JavaScript libraries.
4954  */
4955 /**
4956  * @class Roo.DomQuery
4957 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
4958 <p>
4959 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
4960
4961 <p>
4962 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
4963 </p>
4964 <h4>Element Selectors:</h4>
4965 <ul class="list">
4966     <li> <b>*</b> any element</li>
4967     <li> <b>E</b> an element with the tag E</li>
4968     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4969     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4970     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4971     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4972 </ul>
4973 <h4>Attribute Selectors:</h4>
4974 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4975 <ul class="list">
4976     <li> <b>E[foo]</b> has an attribute "foo"</li>
4977     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4978     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4979     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4980     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4981     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4982     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4983 </ul>
4984 <h4>Pseudo Classes:</h4>
4985 <ul class="list">
4986     <li> <b>E:first-child</b> E is the first child of its parent</li>
4987     <li> <b>E:last-child</b> E is the last child of its parent</li>
4988     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
4989     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4990     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4991     <li> <b>E:only-child</b> E is the only child of its parent</li>
4992     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
4993     <li> <b>E:first</b> the first E in the resultset</li>
4994     <li> <b>E:last</b> the last E in the resultset</li>
4995     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4996     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4997     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4998     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4999     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5000     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5001     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5002     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5003     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5004 </ul>
5005 <h4>CSS Value Selectors:</h4>
5006 <ul class="list">
5007     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5008     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5009     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5010     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5011     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5012     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5013 </ul>
5014  * @singleton
5015  */
5016 Roo.DomQuery = function(){
5017     var cache = {}, simpleCache = {}, valueCache = {};
5018     var nonSpace = /\S/;
5019     var trimRe = /^\s+|\s+$/g;
5020     var tplRe = /\{(\d+)\}/g;
5021     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5022     var tagTokenRe = /^(#)?([\w-\*]+)/;
5023     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5024
5025     function child(p, index){
5026         var i = 0;
5027         var n = p.firstChild;
5028         while(n){
5029             if(n.nodeType == 1){
5030                if(++i == index){
5031                    return n;
5032                }
5033             }
5034             n = n.nextSibling;
5035         }
5036         return null;
5037     };
5038
5039     function next(n){
5040         while((n = n.nextSibling) && n.nodeType != 1);
5041         return n;
5042     };
5043
5044     function prev(n){
5045         while((n = n.previousSibling) && n.nodeType != 1);
5046         return n;
5047     };
5048
5049     function children(d){
5050         var n = d.firstChild, ni = -1;
5051             while(n){
5052                 var nx = n.nextSibling;
5053                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5054                     d.removeChild(n);
5055                 }else{
5056                     n.nodeIndex = ++ni;
5057                 }
5058                 n = nx;
5059             }
5060             return this;
5061         };
5062
5063     function byClassName(c, a, v){
5064         if(!v){
5065             return c;
5066         }
5067         var r = [], ri = -1, cn;
5068         for(var i = 0, ci; ci = c[i]; i++){
5069             if((' '+ci.className+' ').indexOf(v) != -1){
5070                 r[++ri] = ci;
5071             }
5072         }
5073         return r;
5074     };
5075
5076     function attrValue(n, attr){
5077         if(!n.tagName && typeof n.length != "undefined"){
5078             n = n[0];
5079         }
5080         if(!n){
5081             return null;
5082         }
5083         if(attr == "for"){
5084             return n.htmlFor;
5085         }
5086         if(attr == "class" || attr == "className"){
5087             return n.className;
5088         }
5089         return n.getAttribute(attr) || n[attr];
5090
5091     };
5092
5093     function getNodes(ns, mode, tagName){
5094         var result = [], ri = -1, cs;
5095         if(!ns){
5096             return result;
5097         }
5098         tagName = tagName || "*";
5099         if(typeof ns.getElementsByTagName != "undefined"){
5100             ns = [ns];
5101         }
5102         if(!mode){
5103             for(var i = 0, ni; ni = ns[i]; i++){
5104                 cs = ni.getElementsByTagName(tagName);
5105                 for(var j = 0, ci; ci = cs[j]; j++){
5106                     result[++ri] = ci;
5107                 }
5108             }
5109         }else if(mode == "/" || mode == ">"){
5110             var utag = tagName.toUpperCase();
5111             for(var i = 0, ni, cn; ni = ns[i]; i++){
5112                 cn = ni.children || ni.childNodes;
5113                 for(var j = 0, cj; cj = cn[j]; j++){
5114                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5115                         result[++ri] = cj;
5116                     }
5117                 }
5118             }
5119         }else if(mode == "+"){
5120             var utag = tagName.toUpperCase();
5121             for(var i = 0, n; n = ns[i]; i++){
5122                 while((n = n.nextSibling) && n.nodeType != 1);
5123                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5124                     result[++ri] = n;
5125                 }
5126             }
5127         }else if(mode == "~"){
5128             for(var i = 0, n; n = ns[i]; i++){
5129                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5130                 if(n){
5131                     result[++ri] = n;
5132                 }
5133             }
5134         }
5135         return result;
5136     };
5137
5138     function concat(a, b){
5139         if(b.slice){
5140             return a.concat(b);
5141         }
5142         for(var i = 0, l = b.length; i < l; i++){
5143             a[a.length] = b[i];
5144         }
5145         return a;
5146     }
5147
5148     function byTag(cs, tagName){
5149         if(cs.tagName || cs == document){
5150             cs = [cs];
5151         }
5152         if(!tagName){
5153             return cs;
5154         }
5155         var r = [], ri = -1;
5156         tagName = tagName.toLowerCase();
5157         for(var i = 0, ci; ci = cs[i]; i++){
5158             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5159                 r[++ri] = ci;
5160             }
5161         }
5162         return r;
5163     };
5164
5165     function byId(cs, attr, id){
5166         if(cs.tagName || cs == document){
5167             cs = [cs];
5168         }
5169         if(!id){
5170             return cs;
5171         }
5172         var r = [], ri = -1;
5173         for(var i = 0,ci; ci = cs[i]; i++){
5174             if(ci && ci.id == id){
5175                 r[++ri] = ci;
5176                 return r;
5177             }
5178         }
5179         return r;
5180     };
5181
5182     function byAttribute(cs, attr, value, op, custom){
5183         var r = [], ri = -1, st = custom=="{";
5184         var f = Roo.DomQuery.operators[op];
5185         for(var i = 0, ci; ci = cs[i]; i++){
5186             var a;
5187             if(st){
5188                 a = Roo.DomQuery.getStyle(ci, attr);
5189             }
5190             else if(attr == "class" || attr == "className"){
5191                 a = ci.className;
5192             }else if(attr == "for"){
5193                 a = ci.htmlFor;
5194             }else if(attr == "href"){
5195                 a = ci.getAttribute("href", 2);
5196             }else{
5197                 a = ci.getAttribute(attr);
5198             }
5199             if((f && f(a, value)) || (!f && a)){
5200                 r[++ri] = ci;
5201             }
5202         }
5203         return r;
5204     };
5205
5206     function byPseudo(cs, name, value){
5207         return Roo.DomQuery.pseudos[name](cs, value);
5208     };
5209
5210     // This is for IE MSXML which does not support expandos.
5211     // IE runs the same speed using setAttribute, however FF slows way down
5212     // and Safari completely fails so they need to continue to use expandos.
5213     var isIE = window.ActiveXObject ? true : false;
5214
5215     // this eval is stop the compressor from
5216     // renaming the variable to something shorter
5217     
5218     /** eval:var:batch */
5219     var batch = 30803; 
5220
5221     var key = 30803;
5222
5223     function nodupIEXml(cs){
5224         var d = ++key;
5225         cs[0].setAttribute("_nodup", d);
5226         var r = [cs[0]];
5227         for(var i = 1, len = cs.length; i < len; i++){
5228             var c = cs[i];
5229             if(!c.getAttribute("_nodup") != d){
5230                 c.setAttribute("_nodup", d);
5231                 r[r.length] = c;
5232             }
5233         }
5234         for(var i = 0, len = cs.length; i < len; i++){
5235             cs[i].removeAttribute("_nodup");
5236         }
5237         return r;
5238     }
5239
5240     function nodup(cs){
5241         if(!cs){
5242             return [];
5243         }
5244         var len = cs.length, c, i, r = cs, cj, ri = -1;
5245         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5246             return cs;
5247         }
5248         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5249             return nodupIEXml(cs);
5250         }
5251         var d = ++key;
5252         cs[0]._nodup = d;
5253         for(i = 1; c = cs[i]; i++){
5254             if(c._nodup != d){
5255                 c._nodup = d;
5256             }else{
5257                 r = [];
5258                 for(var j = 0; j < i; j++){
5259                     r[++ri] = cs[j];
5260                 }
5261                 for(j = i+1; cj = cs[j]; j++){
5262                     if(cj._nodup != d){
5263                         cj._nodup = d;
5264                         r[++ri] = cj;
5265                     }
5266                 }
5267                 return r;
5268             }
5269         }
5270         return r;
5271     }
5272
5273     function quickDiffIEXml(c1, c2){
5274         var d = ++key;
5275         for(var i = 0, len = c1.length; i < len; i++){
5276             c1[i].setAttribute("_qdiff", d);
5277         }
5278         var r = [];
5279         for(var i = 0, len = c2.length; i < len; i++){
5280             if(c2[i].getAttribute("_qdiff") != d){
5281                 r[r.length] = c2[i];
5282             }
5283         }
5284         for(var i = 0, len = c1.length; i < len; i++){
5285            c1[i].removeAttribute("_qdiff");
5286         }
5287         return r;
5288     }
5289
5290     function quickDiff(c1, c2){
5291         var len1 = c1.length;
5292         if(!len1){
5293             return c2;
5294         }
5295         if(isIE && c1[0].selectSingleNode){
5296             return quickDiffIEXml(c1, c2);
5297         }
5298         var d = ++key;
5299         for(var i = 0; i < len1; i++){
5300             c1[i]._qdiff = d;
5301         }
5302         var r = [];
5303         for(var i = 0, len = c2.length; i < len; i++){
5304             if(c2[i]._qdiff != d){
5305                 r[r.length] = c2[i];
5306             }
5307         }
5308         return r;
5309     }
5310
5311     function quickId(ns, mode, root, id){
5312         if(ns == root){
5313            var d = root.ownerDocument || root;
5314            return d.getElementById(id);
5315         }
5316         ns = getNodes(ns, mode, "*");
5317         return byId(ns, null, id);
5318     }
5319
5320     return {
5321         getStyle : function(el, name){
5322             return Roo.fly(el).getStyle(name);
5323         },
5324         /**
5325          * Compiles a selector/xpath query into a reusable function. The returned function
5326          * takes one parameter "root" (optional), which is the context node from where the query should start.
5327          * @param {String} selector The selector/xpath query
5328          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5329          * @return {Function}
5330          */
5331         compile : function(path, type){
5332             type = type || "select";
5333             
5334             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5335             var q = path, mode, lq;
5336             var tk = Roo.DomQuery.matchers;
5337             var tklen = tk.length;
5338             var mm;
5339
5340             // accept leading mode switch
5341             var lmode = q.match(modeRe);
5342             if(lmode && lmode[1]){
5343                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5344                 q = q.replace(lmode[1], "");
5345             }
5346             // strip leading slashes
5347             while(path.substr(0, 1)=="/"){
5348                 path = path.substr(1);
5349             }
5350
5351             while(q && lq != q){
5352                 lq = q;
5353                 var tm = q.match(tagTokenRe);
5354                 if(type == "select"){
5355                     if(tm){
5356                         if(tm[1] == "#"){
5357                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5358                         }else{
5359                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5360                         }
5361                         q = q.replace(tm[0], "");
5362                     }else if(q.substr(0, 1) != '@'){
5363                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5364                     }
5365                 }else{
5366                     if(tm){
5367                         if(tm[1] == "#"){
5368                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5369                         }else{
5370                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5371                         }
5372                         q = q.replace(tm[0], "");
5373                     }
5374                 }
5375                 while(!(mm = q.match(modeRe))){
5376                     var matched = false;
5377                     for(var j = 0; j < tklen; j++){
5378                         var t = tk[j];
5379                         var m = q.match(t.re);
5380                         if(m){
5381                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5382                                                     return m[i];
5383                                                 });
5384                             q = q.replace(m[0], "");
5385                             matched = true;
5386                             break;
5387                         }
5388                     }
5389                     // prevent infinite loop on bad selector
5390                     if(!matched){
5391                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5392                     }
5393                 }
5394                 if(mm[1]){
5395                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5396                     q = q.replace(mm[1], "");
5397                 }
5398             }
5399             fn[fn.length] = "return nodup(n);\n}";
5400             
5401              /** 
5402               * list of variables that need from compression as they are used by eval.
5403              *  eval:var:batch 
5404              *  eval:var:nodup
5405              *  eval:var:byTag
5406              *  eval:var:ById
5407              *  eval:var:getNodes
5408              *  eval:var:quickId
5409              *  eval:var:mode
5410              *  eval:var:root
5411              *  eval:var:n
5412              *  eval:var:byClassName
5413              *  eval:var:byPseudo
5414              *  eval:var:byAttribute
5415              *  eval:var:attrValue
5416              * 
5417              **/ 
5418             eval(fn.join(""));
5419             return f;
5420         },
5421
5422         /**
5423          * Selects a group of elements.
5424          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @return {Array}
5427          */
5428         select : function(path, root, type){
5429             if(!root || root == document){
5430                 root = document;
5431             }
5432             if(typeof root == "string"){
5433                 root = document.getElementById(root);
5434             }
5435             var paths = path.split(",");
5436             var results = [];
5437             for(var i = 0, len = paths.length; i < len; i++){
5438                 var p = paths[i].replace(trimRe, "");
5439                 if(!cache[p]){
5440                     cache[p] = Roo.DomQuery.compile(p);
5441                     if(!cache[p]){
5442                         throw p + " is not a valid selector";
5443                     }
5444                 }
5445                 var result = cache[p](root);
5446                 if(result && result != document){
5447                     results = results.concat(result);
5448                 }
5449             }
5450             if(paths.length > 1){
5451                 return nodup(results);
5452             }
5453             return results;
5454         },
5455
5456         /**
5457          * Selects a single element.
5458          * @param {String} selector The selector/xpath query
5459          * @param {Node} root (optional) The start of the query (defaults to document).
5460          * @return {Element}
5461          */
5462         selectNode : function(path, root){
5463             return Roo.DomQuery.select(path, root)[0];
5464         },
5465
5466         /**
5467          * Selects the value of a node, optionally replacing null with the defaultValue.
5468          * @param {String} selector The selector/xpath query
5469          * @param {Node} root (optional) The start of the query (defaults to document).
5470          * @param {String} defaultValue
5471          */
5472         selectValue : function(path, root, defaultValue){
5473             path = path.replace(trimRe, "");
5474             if(!valueCache[path]){
5475                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5476             }
5477             var n = valueCache[path](root);
5478             n = n[0] ? n[0] : n;
5479             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5480             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5481         },
5482
5483         /**
5484          * Selects the value of a node, parsing integers and floats.
5485          * @param {String} selector The selector/xpath query
5486          * @param {Node} root (optional) The start of the query (defaults to document).
5487          * @param {Number} defaultValue
5488          * @return {Number}
5489          */
5490         selectNumber : function(path, root, defaultValue){
5491             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5492             return parseFloat(v);
5493         },
5494
5495         /**
5496          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5497          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5498          * @param {String} selector The simple selector to test
5499          * @return {Boolean}
5500          */
5501         is : function(el, ss){
5502             if(typeof el == "string"){
5503                 el = document.getElementById(el);
5504             }
5505             var isArray = (el instanceof Array);
5506             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5507             return isArray ? (result.length == el.length) : (result.length > 0);
5508         },
5509
5510         /**
5511          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5512          * @param {Array} el An array of elements to filter
5513          * @param {String} selector The simple selector to test
5514          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5515          * the selector instead of the ones that match
5516          * @return {Array}
5517          */
5518         filter : function(els, ss, nonMatches){
5519             ss = ss.replace(trimRe, "");
5520             if(!simpleCache[ss]){
5521                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5522             }
5523             var result = simpleCache[ss](els);
5524             return nonMatches ? quickDiff(result, els) : result;
5525         },
5526
5527         /**
5528          * Collection of matching regular expressions and code snippets.
5529          */
5530         matchers : [{
5531                 re: /^\.([\w-]+)/,
5532                 select: 'n = byClassName(n, null, " {1} ");'
5533             }, {
5534                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5535                 select: 'n = byPseudo(n, "{1}", "{2}");'
5536             },{
5537                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5538                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5539             }, {
5540                 re: /^#([\w-]+)/,
5541                 select: 'n = byId(n, null, "{1}");'
5542             },{
5543                 re: /^@([\w-]+)/,
5544                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5545             }
5546         ],
5547
5548         /**
5549          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5550          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
5551          */
5552         operators : {
5553             "=" : function(a, v){
5554                 return a == v;
5555             },
5556             "!=" : function(a, v){
5557                 return a != v;
5558             },
5559             "^=" : function(a, v){
5560                 return a && a.substr(0, v.length) == v;
5561             },
5562             "$=" : function(a, v){
5563                 return a && a.substr(a.length-v.length) == v;
5564             },
5565             "*=" : function(a, v){
5566                 return a && a.indexOf(v) !== -1;
5567             },
5568             "%=" : function(a, v){
5569                 return (a % v) == 0;
5570             },
5571             "|=" : function(a, v){
5572                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5573             },
5574             "~=" : function(a, v){
5575                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5576             }
5577         },
5578
5579         /**
5580          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5581          * and the argument (if any) supplied in the selector.
5582          */
5583         pseudos : {
5584             "first-child" : function(c){
5585                 var r = [], ri = -1, n;
5586                 for(var i = 0, ci; ci = n = c[i]; i++){
5587                     while((n = n.previousSibling) && n.nodeType != 1);
5588                     if(!n){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "last-child" : function(c){
5596                 var r = [], ri = -1, n;
5597                 for(var i = 0, ci; ci = n = c[i]; i++){
5598                     while((n = n.nextSibling) && n.nodeType != 1);
5599                     if(!n){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "nth-child" : function(c, a) {
5607                 var r = [], ri = -1;
5608                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5609                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5610                 for(var i = 0, n; n = c[i]; i++){
5611                     var pn = n.parentNode;
5612                     if (batch != pn._batch) {
5613                         var j = 0;
5614                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5615                             if(cn.nodeType == 1){
5616                                cn.nodeIndex = ++j;
5617                             }
5618                         }
5619                         pn._batch = batch;
5620                     }
5621                     if (f == 1) {
5622                         if (l == 0 || n.nodeIndex == l){
5623                             r[++ri] = n;
5624                         }
5625                     } else if ((n.nodeIndex + l) % f == 0){
5626                         r[++ri] = n;
5627                     }
5628                 }
5629
5630                 return r;
5631             },
5632
5633             "only-child" : function(c){
5634                 var r = [], ri = -1;;
5635                 for(var i = 0, ci; ci = c[i]; i++){
5636                     if(!prev(ci) && !next(ci)){
5637                         r[++ri] = ci;
5638                     }
5639                 }
5640                 return r;
5641             },
5642
5643             "empty" : function(c){
5644                 var r = [], ri = -1;
5645                 for(var i = 0, ci; ci = c[i]; i++){
5646                     var cns = ci.childNodes, j = 0, cn, empty = true;
5647                     while(cn = cns[j]){
5648                         ++j;
5649                         if(cn.nodeType == 1 || cn.nodeType == 3){
5650                             empty = false;
5651                             break;
5652                         }
5653                     }
5654                     if(empty){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "contains" : function(c, v){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5665                         r[++ri] = ci;
5666                     }
5667                 }
5668                 return r;
5669             },
5670
5671             "nodeValue" : function(c, v){
5672                 var r = [], ri = -1;
5673                 for(var i = 0, ci; ci = c[i]; i++){
5674                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5675                         r[++ri] = ci;
5676                     }
5677                 }
5678                 return r;
5679             },
5680
5681             "checked" : function(c){
5682                 var r = [], ri = -1;
5683                 for(var i = 0, ci; ci = c[i]; i++){
5684                     if(ci.checked == true){
5685                         r[++ri] = ci;
5686                     }
5687                 }
5688                 return r;
5689             },
5690
5691             "not" : function(c, ss){
5692                 return Roo.DomQuery.filter(c, ss, true);
5693             },
5694
5695             "odd" : function(c){
5696                 return this["nth-child"](c, "odd");
5697             },
5698
5699             "even" : function(c){
5700                 return this["nth-child"](c, "even");
5701             },
5702
5703             "nth" : function(c, a){
5704                 return c[a-1] || [];
5705             },
5706
5707             "first" : function(c){
5708                 return c[0] || [];
5709             },
5710
5711             "last" : function(c){
5712                 return c[c.length-1] || [];
5713             },
5714
5715             "has" : function(c, ss){
5716                 var s = Roo.DomQuery.select;
5717                 var r = [], ri = -1;
5718                 for(var i = 0, ci; ci = c[i]; i++){
5719                     if(s(ss, ci).length > 0){
5720                         r[++ri] = ci;
5721                     }
5722                 }
5723                 return r;
5724             },
5725
5726             "next" : function(c, ss){
5727                 var is = Roo.DomQuery.is;
5728                 var r = [], ri = -1;
5729                 for(var i = 0, ci; ci = c[i]; i++){
5730                     var n = next(ci);
5731                     if(n && is(n, ss)){
5732                         r[++ri] = ci;
5733                     }
5734                 }
5735                 return r;
5736             },
5737
5738             "prev" : function(c, ss){
5739                 var is = Roo.DomQuery.is;
5740                 var r = [], ri = -1;
5741                 for(var i = 0, ci; ci = c[i]; i++){
5742                     var n = prev(ci);
5743                     if(n && is(n, ss)){
5744                         r[++ri] = ci;
5745                     }
5746                 }
5747                 return r;
5748             }
5749         }
5750     };
5751 }();
5752
5753 /**
5754  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5755  * @param {String} path The selector/xpath query
5756  * @param {Node} root (optional) The start of the query (defaults to document).
5757  * @return {Array}
5758  * @member Roo
5759  * @method query
5760  */
5761 Roo.query = Roo.DomQuery.select;
5762 /*
5763  * Based on:
5764  * Ext JS Library 1.1.1
5765  * Copyright(c) 2006-2007, Ext JS, LLC.
5766  *
5767  * Originally Released Under LGPL - original licence link has changed is not relivant.
5768  *
5769  * Fork - LGPL
5770  * <script type="text/javascript">
5771  */
5772
5773 /**
5774  * @class Roo.util.Observable
5775  * Base class that provides a common interface for publishing events. Subclasses are expected to
5776  * to have a property "events" with all the events defined.<br>
5777  * For example:
5778  * <pre><code>
5779  Employee = function(name){
5780     this.name = name;
5781     this.addEvents({
5782         "fired" : true,
5783         "quit" : true
5784     });
5785  }
5786  Roo.extend(Employee, Roo.util.Observable);
5787 </code></pre>
5788  * @param {Object} config properties to use (incuding events / listeners)
5789  */
5790
5791 Roo.util.Observable = function(cfg){
5792     
5793     cfg = cfg|| {};
5794     this.addEvents(cfg.events || {});
5795     if (cfg.events) {
5796         delete cfg.events; // make sure
5797     }
5798      
5799     Roo.apply(this, cfg);
5800     
5801     if(this.listeners){
5802         this.on(this.listeners);
5803         delete this.listeners;
5804     }
5805 };
5806 Roo.util.Observable.prototype = {
5807     /** 
5808  * @cfg {Object} listeners  list of events and functions to call for this object, 
5809  * For example :
5810  * <pre><code>
5811     listeners :  { 
5812        'click' : function(e) {
5813            ..... 
5814         } ,
5815         .... 
5816     } 
5817   </code></pre>
5818  */
5819     
5820     
5821     /**
5822      * Fires the specified event with the passed parameters (minus the event name).
5823      * @param {String} eventName
5824      * @param {Object...} args Variable number of parameters are passed to handlers
5825      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5826      */
5827     fireEvent : function(){
5828         var ce = this.events[arguments[0].toLowerCase()];
5829         if(typeof ce == "object"){
5830             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5831         }else{
5832             return true;
5833         }
5834     },
5835
5836     // private
5837     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5838
5839     /**
5840      * Appends an event handler to this component
5841      * @param {String}   eventName The type of event to listen for
5842      * @param {Function} handler The method the event invokes
5843      * @param {Object}   scope (optional) The scope in which to execute the handler
5844      * function. The handler function's "this" context.
5845      * @param {Object}   options (optional) An object containing handler configuration
5846      * properties. This may contain any of the following properties:<ul>
5847      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5848      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5849      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5850      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5851      * by the specified number of milliseconds. If the event fires again within that time, the original
5852      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5853      * </ul><br>
5854      * <p>
5855      * <b>Combining Options</b><br>
5856      * Using the options argument, it is possible to combine different types of listeners:<br>
5857      * <br>
5858      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5859                 <pre><code>
5860                 el.on('click', this.onClick, this, {
5861                         single: true,
5862                 delay: 100,
5863                 forumId: 4
5864                 });
5865                 </code></pre>
5866      * <p>
5867      * <b>Attaching multiple handlers in 1 call</b><br>
5868      * The method also allows for a single argument to be passed which is a config object containing properties
5869      * which specify multiple handlers.
5870      * <pre><code>
5871                 el.on({
5872                         'click': {
5873                         fn: this.onClick,
5874                         scope: this,
5875                         delay: 100
5876                 }, 
5877                 'mouseover': {
5878                         fn: this.onMouseOver,
5879                         scope: this
5880                 },
5881                 'mouseout': {
5882                         fn: this.onMouseOut,
5883                         scope: this
5884                 }
5885                 });
5886                 </code></pre>
5887      * <p>
5888      * Or a shorthand syntax which passes the same scope object to all handlers:
5889         <pre><code>
5890                 el.on({
5891                         'click': this.onClick,
5892                 'mouseover': this.onMouseOver,
5893                 'mouseout': this.onMouseOut,
5894                 scope: this
5895                 });
5896                 </code></pre>
5897      */
5898     addListener : function(eventName, fn, scope, o){
5899         if(typeof eventName == "object"){
5900             o = eventName;
5901             for(var e in o){
5902                 if(this.filterOptRe.test(e)){
5903                     continue;
5904                 }
5905                 if(typeof o[e] == "function"){
5906                     // shared options
5907                     this.addListener(e, o[e], o.scope,  o);
5908                 }else{
5909                     // individual options
5910                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5911                 }
5912             }
5913             return;
5914         }
5915         o = (!o || typeof o == "boolean") ? {} : o;
5916         eventName = eventName.toLowerCase();
5917         var ce = this.events[eventName] || true;
5918         if(typeof ce == "boolean"){
5919             ce = new Roo.util.Event(this, eventName);
5920             this.events[eventName] = ce;
5921         }
5922         ce.addListener(fn, scope, o);
5923     },
5924
5925     /**
5926      * Removes a listener
5927      * @param {String}   eventName     The type of event to listen for
5928      * @param {Function} handler        The handler to remove
5929      * @param {Object}   scope  (optional) The scope (this object) for the handler
5930      */
5931     removeListener : function(eventName, fn, scope){
5932         var ce = this.events[eventName.toLowerCase()];
5933         if(typeof ce == "object"){
5934             ce.removeListener(fn, scope);
5935         }
5936     },
5937
5938     /**
5939      * Removes all listeners for this object
5940      */
5941     purgeListeners : function(){
5942         for(var evt in this.events){
5943             if(typeof this.events[evt] == "object"){
5944                  this.events[evt].clearListeners();
5945             }
5946         }
5947     },
5948
5949     relayEvents : function(o, events){
5950         var createHandler = function(ename){
5951             return function(){
5952                  
5953                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5954             };
5955         };
5956         for(var i = 0, len = events.length; i < len; i++){
5957             var ename = events[i];
5958             if(!this.events[ename]){
5959                 this.events[ename] = true;
5960             };
5961             o.on(ename, createHandler(ename), this);
5962         }
5963     },
5964
5965     /**
5966      * Used to define events on this Observable
5967      * @param {Object} object The object with the events defined
5968      */
5969     addEvents : function(o){
5970         if(!this.events){
5971             this.events = {};
5972         }
5973         Roo.applyIf(this.events, o);
5974     },
5975
5976     /**
5977      * Checks to see if this object has any listeners for a specified event
5978      * @param {String} eventName The name of the event to check for
5979      * @return {Boolean} True if the event is being listened for, else false
5980      */
5981     hasListener : function(eventName){
5982         var e = this.events[eventName];
5983         return typeof e == "object" && e.listeners.length > 0;
5984     }
5985 };
5986 /**
5987  * Appends an event handler to this element (shorthand for addListener)
5988  * @param {String}   eventName     The type of event to listen for
5989  * @param {Function} handler        The method the event invokes
5990  * @param {Object}   scope (optional) The scope in which to execute the handler
5991  * function. The handler function's "this" context.
5992  * @param {Object}   options  (optional)
5993  * @method
5994  */
5995 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5996 /**
5997  * Removes a listener (shorthand for removeListener)
5998  * @param {String}   eventName     The type of event to listen for
5999  * @param {Function} handler        The handler to remove
6000  * @param {Object}   scope  (optional) The scope (this object) for the handler
6001  * @method
6002  */
6003 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6004
6005 /**
6006  * Starts capture on the specified Observable. All events will be passed
6007  * to the supplied function with the event name + standard signature of the event
6008  * <b>before</b> the event is fired. If the supplied function returns false,
6009  * the event will not fire.
6010  * @param {Observable} o The Observable to capture
6011  * @param {Function} fn The function to call
6012  * @param {Object} scope (optional) The scope (this object) for the fn
6013  * @static
6014  */
6015 Roo.util.Observable.capture = function(o, fn, scope){
6016     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6017 };
6018
6019 /**
6020  * Removes <b>all</b> added captures from the Observable.
6021  * @param {Observable} o The Observable to release
6022  * @static
6023  */
6024 Roo.util.Observable.releaseCapture = function(o){
6025     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6026 };
6027
6028 (function(){
6029
6030     var createBuffered = function(h, o, scope){
6031         var task = new Roo.util.DelayedTask();
6032         return function(){
6033             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6034         };
6035     };
6036
6037     var createSingle = function(h, e, fn, scope){
6038         return function(){
6039             e.removeListener(fn, scope);
6040             return h.apply(scope, arguments);
6041         };
6042     };
6043
6044     var createDelayed = function(h, o, scope){
6045         return function(){
6046             var args = Array.prototype.slice.call(arguments, 0);
6047             setTimeout(function(){
6048                 h.apply(scope, args);
6049             }, o.delay || 10);
6050         };
6051     };
6052
6053     Roo.util.Event = function(obj, name){
6054         this.name = name;
6055         this.obj = obj;
6056         this.listeners = [];
6057     };
6058
6059     Roo.util.Event.prototype = {
6060         addListener : function(fn, scope, options){
6061             var o = options || {};
6062             scope = scope || this.obj;
6063             if(!this.isListening(fn, scope)){
6064                 var l = {fn: fn, scope: scope, options: o};
6065                 var h = fn;
6066                 if(o.delay){
6067                     h = createDelayed(h, o, scope);
6068                 }
6069                 if(o.single){
6070                     h = createSingle(h, this, fn, scope);
6071                 }
6072                 if(o.buffer){
6073                     h = createBuffered(h, o, scope);
6074                 }
6075                 l.fireFn = h;
6076                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6077                     this.listeners.push(l);
6078                 }else{
6079                     this.listeners = this.listeners.slice(0);
6080                     this.listeners.push(l);
6081                 }
6082             }
6083         },
6084
6085         findListener : function(fn, scope){
6086             scope = scope || this.obj;
6087             var ls = this.listeners;
6088             for(var i = 0, len = ls.length; i < len; i++){
6089                 var l = ls[i];
6090                 if(l.fn == fn && l.scope == scope){
6091                     return i;
6092                 }
6093             }
6094             return -1;
6095         },
6096
6097         isListening : function(fn, scope){
6098             return this.findListener(fn, scope) != -1;
6099         },
6100
6101         removeListener : function(fn, scope){
6102             var index;
6103             if((index = this.findListener(fn, scope)) != -1){
6104                 if(!this.firing){
6105                     this.listeners.splice(index, 1);
6106                 }else{
6107                     this.listeners = this.listeners.slice(0);
6108                     this.listeners.splice(index, 1);
6109                 }
6110                 return true;
6111             }
6112             return false;
6113         },
6114
6115         clearListeners : function(){
6116             this.listeners = [];
6117         },
6118
6119         fire : function(){
6120             var ls = this.listeners, scope, len = ls.length;
6121             if(len > 0){
6122                 this.firing = true;
6123                 var args = Array.prototype.slice.call(arguments, 0);                
6124                 for(var i = 0; i < len; i++){
6125                     var l = ls[i];
6126                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6127                         this.firing = false;
6128                         return false;
6129                     }
6130                 }
6131                 this.firing = false;
6132             }
6133             return true;
6134         }
6135     };
6136 })();/*
6137  * RooJS Library 
6138  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6139  *
6140  * Licence LGPL 
6141  *
6142  */
6143  
6144 /**
6145  * @class Roo.Document
6146  * @extends Roo.util.Observable
6147  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6148  * 
6149  * @param {Object} config the methods and properties of the 'base' class for the application.
6150  * 
6151  *  Generic Page handler - implement this to start your app..
6152  * 
6153  * eg.
6154  *  MyProject = new Roo.Document({
6155         events : {
6156             'load' : true // your events..
6157         },
6158         listeners : {
6159             'ready' : function() {
6160                 // fired on Roo.onReady()
6161             }
6162         }
6163  * 
6164  */
6165 Roo.Document = function(cfg) {
6166      
6167     this.addEvents({ 
6168         'ready' : true
6169     });
6170     Roo.util.Observable.call(this,cfg);
6171     
6172     var _this = this;
6173     
6174     Roo.onReady(function() {
6175         _this.fireEvent('ready');
6176     },null,false);
6177     
6178     
6179 }
6180
6181 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6182  * Based on:
6183  * Ext JS Library 1.1.1
6184  * Copyright(c) 2006-2007, Ext JS, LLC.
6185  *
6186  * Originally Released Under LGPL - original licence link has changed is not relivant.
6187  *
6188  * Fork - LGPL
6189  * <script type="text/javascript">
6190  */
6191
6192 /**
6193  * @class Roo.EventManager
6194  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6195  * several useful events directly.
6196  * See {@link Roo.EventObject} for more details on normalized event objects.
6197  * @singleton
6198  */
6199 Roo.EventManager = function(){
6200     var docReadyEvent, docReadyProcId, docReadyState = false;
6201     var resizeEvent, resizeTask, textEvent, textSize;
6202     var E = Roo.lib.Event;
6203     var D = Roo.lib.Dom;
6204
6205     
6206     
6207
6208     var fireDocReady = function(){
6209         if(!docReadyState){
6210             docReadyState = true;
6211             Roo.isReady = true;
6212             if(docReadyProcId){
6213                 clearInterval(docReadyProcId);
6214             }
6215             if(Roo.isGecko || Roo.isOpera) {
6216                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6217             }
6218             if(Roo.isIE){
6219                 var defer = document.getElementById("ie-deferred-loader");
6220                 if(defer){
6221                     defer.onreadystatechange = null;
6222                     defer.parentNode.removeChild(defer);
6223                 }
6224             }
6225             if(docReadyEvent){
6226                 docReadyEvent.fire();
6227                 docReadyEvent.clearListeners();
6228             }
6229         }
6230     };
6231     
6232     var initDocReady = function(){
6233         docReadyEvent = new Roo.util.Event();
6234         if(Roo.isGecko || Roo.isOpera) {
6235             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6236         }else if(Roo.isIE){
6237             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6238             var defer = document.getElementById("ie-deferred-loader");
6239             defer.onreadystatechange = function(){
6240                 if(this.readyState == "complete"){
6241                     fireDocReady();
6242                 }
6243             };
6244         }else if(Roo.isSafari){ 
6245             docReadyProcId = setInterval(function(){
6246                 var rs = document.readyState;
6247                 if(rs == "complete") {
6248                     fireDocReady();     
6249                  }
6250             }, 10);
6251         }
6252         // no matter what, make sure it fires on load
6253         E.on(window, "load", fireDocReady);
6254     };
6255
6256     var createBuffered = function(h, o){
6257         var task = new Roo.util.DelayedTask(h);
6258         return function(e){
6259             // create new event object impl so new events don't wipe out properties
6260             e = new Roo.EventObjectImpl(e);
6261             task.delay(o.buffer, h, null, [e]);
6262         };
6263     };
6264
6265     var createSingle = function(h, el, ename, fn){
6266         return function(e){
6267             Roo.EventManager.removeListener(el, ename, fn);
6268             h(e);
6269         };
6270     };
6271
6272     var createDelayed = function(h, o){
6273         return function(e){
6274             // create new event object impl so new events don't wipe out properties
6275             e = new Roo.EventObjectImpl(e);
6276             setTimeout(function(){
6277                 h(e);
6278             }, o.delay || 10);
6279         };
6280     };
6281     var transitionEndVal = false;
6282     
6283     var transitionEnd = function()
6284     {
6285         if (transitionEndVal) {
6286             return transitionEndVal;
6287         }
6288         var el = document.createElement('div');
6289
6290         var transEndEventNames = {
6291             WebkitTransition : 'webkitTransitionEnd',
6292             MozTransition    : 'transitionend',
6293             OTransition      : 'oTransitionEnd otransitionend',
6294             transition       : 'transitionend'
6295         };
6296     
6297         for (var name in transEndEventNames) {
6298             if (el.style[name] !== undefined) {
6299                 transitionEndVal = transEndEventNames[name];
6300                 return  transitionEndVal ;
6301             }
6302         }
6303     }
6304     
6305   
6306
6307     var listen = function(element, ename, opt, fn, scope){
6308         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6309         fn = fn || o.fn; scope = scope || o.scope;
6310         var el = Roo.getDom(element);
6311         
6312         
6313         if(!el){
6314             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6315         }
6316         
6317         if (ename == 'transitionend') {
6318             ename = transitionEnd();
6319         }
6320         var h = function(e){
6321             e = Roo.EventObject.setEvent(e);
6322             var t;
6323             if(o.delegate){
6324                 t = e.getTarget(o.delegate, el);
6325                 if(!t){
6326                     return;
6327                 }
6328             }else{
6329                 t = e.target;
6330             }
6331             if(o.stopEvent === true){
6332                 e.stopEvent();
6333             }
6334             if(o.preventDefault === true){
6335                e.preventDefault();
6336             }
6337             if(o.stopPropagation === true){
6338                 e.stopPropagation();
6339             }
6340
6341             if(o.normalized === false){
6342                 e = e.browserEvent;
6343             }
6344
6345             fn.call(scope || el, e, t, o);
6346         };
6347         if(o.delay){
6348             h = createDelayed(h, o);
6349         }
6350         if(o.single){
6351             h = createSingle(h, el, ename, fn);
6352         }
6353         if(o.buffer){
6354             h = createBuffered(h, o);
6355         }
6356         
6357         fn._handlers = fn._handlers || [];
6358         
6359         
6360         fn._handlers.push([Roo.id(el), ename, h]);
6361         
6362         
6363          
6364         E.on(el, ename, h);
6365         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6366             el.addEventListener("DOMMouseScroll", h, false);
6367             E.on(window, 'unload', function(){
6368                 el.removeEventListener("DOMMouseScroll", h, false);
6369             });
6370         }
6371         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6372             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6373         }
6374         return h;
6375     };
6376
6377     var stopListening = function(el, ename, fn){
6378         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6379         if(hds){
6380             for(var i = 0, len = hds.length; i < len; i++){
6381                 var h = hds[i];
6382                 if(h[0] == id && h[1] == ename){
6383                     hd = h[2];
6384                     hds.splice(i, 1);
6385                     break;
6386                 }
6387             }
6388         }
6389         E.un(el, ename, hd);
6390         el = Roo.getDom(el);
6391         if(ename == "mousewheel" && el.addEventListener){
6392             el.removeEventListener("DOMMouseScroll", hd, false);
6393         }
6394         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6395             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6396         }
6397     };
6398
6399     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6400     
6401     var pub = {
6402         
6403         
6404         /** 
6405          * Fix for doc tools
6406          * @scope Roo.EventManager
6407          */
6408         
6409         
6410         /** 
6411          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6412          * object with a Roo.EventObject
6413          * @param {Function} fn        The method the event invokes
6414          * @param {Object}   scope    An object that becomes the scope of the handler
6415          * @param {boolean}  override If true, the obj passed in becomes
6416          *                             the execution scope of the listener
6417          * @return {Function} The wrapped function
6418          * @deprecated
6419          */
6420         wrap : function(fn, scope, override){
6421             return function(e){
6422                 Roo.EventObject.setEvent(e);
6423                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6424             };
6425         },
6426         
6427         /**
6428      * Appends an event handler to an element (shorthand for addListener)
6429      * @param {String/HTMLElement}   element        The html element or id to assign the
6430      * @param {String}   eventName The type of event to listen for
6431      * @param {Function} handler The method the event invokes
6432      * @param {Object}   scope (optional) The scope in which to execute the handler
6433      * function. The handler function's "this" context.
6434      * @param {Object}   options (optional) An object containing handler configuration
6435      * properties. This may contain any of the following properties:<ul>
6436      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6437      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6438      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6439      * <li>preventDefault {Boolean} True to prevent the default action</li>
6440      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6441      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6442      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6443      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6444      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6445      * by the specified number of milliseconds. If the event fires again within that time, the original
6446      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6447      * </ul><br>
6448      * <p>
6449      * <b>Combining Options</b><br>
6450      * Using the options argument, it is possible to combine different types of listeners:<br>
6451      * <br>
6452      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6453      * Code:<pre><code>
6454 el.on('click', this.onClick, this, {
6455     single: true,
6456     delay: 100,
6457     stopEvent : true,
6458     forumId: 4
6459 });</code></pre>
6460      * <p>
6461      * <b>Attaching multiple handlers in 1 call</b><br>
6462       * The method also allows for a single argument to be passed which is a config object containing properties
6463      * which specify multiple handlers.
6464      * <p>
6465      * Code:<pre><code>
6466 el.on({
6467     'click' : {
6468         fn: this.onClick
6469         scope: this,
6470         delay: 100
6471     },
6472     'mouseover' : {
6473         fn: this.onMouseOver
6474         scope: this
6475     },
6476     'mouseout' : {
6477         fn: this.onMouseOut
6478         scope: this
6479     }
6480 });</code></pre>
6481      * <p>
6482      * Or a shorthand syntax:<br>
6483      * Code:<pre><code>
6484 el.on({
6485     'click' : this.onClick,
6486     'mouseover' : this.onMouseOver,
6487     'mouseout' : this.onMouseOut
6488     scope: this
6489 });</code></pre>
6490      */
6491         addListener : function(element, eventName, fn, scope, options){
6492             if(typeof eventName == "object"){
6493                 var o = eventName;
6494                 for(var e in o){
6495                     if(propRe.test(e)){
6496                         continue;
6497                     }
6498                     if(typeof o[e] == "function"){
6499                         // shared options
6500                         listen(element, e, o, o[e], o.scope);
6501                     }else{
6502                         // individual options
6503                         listen(element, e, o[e]);
6504                     }
6505                 }
6506                 return;
6507             }
6508             return listen(element, eventName, options, fn, scope);
6509         },
6510         
6511         /**
6512          * Removes an event handler
6513          *
6514          * @param {String/HTMLElement}   element        The id or html element to remove the 
6515          *                             event from
6516          * @param {String}   eventName     The type of event
6517          * @param {Function} fn
6518          * @return {Boolean} True if a listener was actually removed
6519          */
6520         removeListener : function(element, eventName, fn){
6521             return stopListening(element, eventName, fn);
6522         },
6523         
6524         /**
6525          * Fires when the document is ready (before onload and before images are loaded). Can be 
6526          * accessed shorthanded Roo.onReady().
6527          * @param {Function} fn        The method the event invokes
6528          * @param {Object}   scope    An  object that becomes the scope of the handler
6529          * @param {boolean}  options
6530          */
6531         onDocumentReady : function(fn, scope, options){
6532             if(docReadyState){ // if it already fired
6533                 docReadyEvent.addListener(fn, scope, options);
6534                 docReadyEvent.fire();
6535                 docReadyEvent.clearListeners();
6536                 return;
6537             }
6538             if(!docReadyEvent){
6539                 initDocReady();
6540             }
6541             docReadyEvent.addListener(fn, scope, options);
6542         },
6543         
6544         /**
6545          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6546          * @param {Function} fn        The method the event invokes
6547          * @param {Object}   scope    An object that becomes the scope of the handler
6548          * @param {boolean}  options
6549          */
6550         onWindowResize : function(fn, scope, options){
6551             if(!resizeEvent){
6552                 resizeEvent = new Roo.util.Event();
6553                 resizeTask = new Roo.util.DelayedTask(function(){
6554                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6555                 });
6556                 E.on(window, "resize", function(){
6557                     if(Roo.isIE){
6558                         resizeTask.delay(50);
6559                     }else{
6560                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6561                     }
6562                 });
6563             }
6564             resizeEvent.addListener(fn, scope, options);
6565         },
6566
6567         /**
6568          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6569          * @param {Function} fn        The method the event invokes
6570          * @param {Object}   scope    An object that becomes the scope of the handler
6571          * @param {boolean}  options
6572          */
6573         onTextResize : function(fn, scope, options){
6574             if(!textEvent){
6575                 textEvent = new Roo.util.Event();
6576                 var textEl = new Roo.Element(document.createElement('div'));
6577                 textEl.dom.className = 'x-text-resize';
6578                 textEl.dom.innerHTML = 'X';
6579                 textEl.appendTo(document.body);
6580                 textSize = textEl.dom.offsetHeight;
6581                 setInterval(function(){
6582                     if(textEl.dom.offsetHeight != textSize){
6583                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6584                     }
6585                 }, this.textResizeInterval);
6586             }
6587             textEvent.addListener(fn, scope, options);
6588         },
6589
6590         /**
6591          * Removes the passed window resize listener.
6592          * @param {Function} fn        The method the event invokes
6593          * @param {Object}   scope    The scope of handler
6594          */
6595         removeResizeListener : function(fn, scope){
6596             if(resizeEvent){
6597                 resizeEvent.removeListener(fn, scope);
6598             }
6599         },
6600
6601         // private
6602         fireResize : function(){
6603             if(resizeEvent){
6604                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6605             }   
6606         },
6607         /**
6608          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6609          */
6610         ieDeferSrc : false,
6611         /**
6612          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6613          */
6614         textResizeInterval : 50
6615     };
6616     
6617     /**
6618      * Fix for doc tools
6619      * @scopeAlias pub=Roo.EventManager
6620      */
6621     
6622      /**
6623      * Appends an event handler to an element (shorthand for addListener)
6624      * @param {String/HTMLElement}   element        The html element or id to assign the
6625      * @param {String}   eventName The type of event to listen for
6626      * @param {Function} handler The method the event invokes
6627      * @param {Object}   scope (optional) The scope in which to execute the handler
6628      * function. The handler function's "this" context.
6629      * @param {Object}   options (optional) An object containing handler configuration
6630      * properties. This may contain any of the following properties:<ul>
6631      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6632      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6633      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6634      * <li>preventDefault {Boolean} True to prevent the default action</li>
6635      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6636      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6637      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6638      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6639      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6640      * by the specified number of milliseconds. If the event fires again within that time, the original
6641      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6642      * </ul><br>
6643      * <p>
6644      * <b>Combining Options</b><br>
6645      * Using the options argument, it is possible to combine different types of listeners:<br>
6646      * <br>
6647      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6648      * Code:<pre><code>
6649 el.on('click', this.onClick, this, {
6650     single: true,
6651     delay: 100,
6652     stopEvent : true,
6653     forumId: 4
6654 });</code></pre>
6655      * <p>
6656      * <b>Attaching multiple handlers in 1 call</b><br>
6657       * The method also allows for a single argument to be passed which is a config object containing properties
6658      * which specify multiple handlers.
6659      * <p>
6660      * Code:<pre><code>
6661 el.on({
6662     'click' : {
6663         fn: this.onClick
6664         scope: this,
6665         delay: 100
6666     },
6667     'mouseover' : {
6668         fn: this.onMouseOver
6669         scope: this
6670     },
6671     'mouseout' : {
6672         fn: this.onMouseOut
6673         scope: this
6674     }
6675 });</code></pre>
6676      * <p>
6677      * Or a shorthand syntax:<br>
6678      * Code:<pre><code>
6679 el.on({
6680     'click' : this.onClick,
6681     'mouseover' : this.onMouseOver,
6682     'mouseout' : this.onMouseOut
6683     scope: this
6684 });</code></pre>
6685      */
6686     pub.on = pub.addListener;
6687     pub.un = pub.removeListener;
6688
6689     pub.stoppedMouseDownEvent = new Roo.util.Event();
6690     return pub;
6691 }();
6692 /**
6693   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6694   * @param {Function} fn        The method the event invokes
6695   * @param {Object}   scope    An  object that becomes the scope of the handler
6696   * @param {boolean}  override If true, the obj passed in becomes
6697   *                             the execution scope of the listener
6698   * @member Roo
6699   * @method onReady
6700  */
6701 Roo.onReady = Roo.EventManager.onDocumentReady;
6702
6703 Roo.onReady(function(){
6704     var bd = Roo.get(document.body);
6705     if(!bd){ return; }
6706
6707     var cls = [
6708             Roo.isIE ? "roo-ie"
6709             : Roo.isIE11 ? "roo-ie11"
6710             : Roo.isEdge ? "roo-edge"
6711             : Roo.isGecko ? "roo-gecko"
6712             : Roo.isOpera ? "roo-opera"
6713             : Roo.isSafari ? "roo-safari" : ""];
6714
6715     if(Roo.isMac){
6716         cls.push("roo-mac");
6717     }
6718     if(Roo.isLinux){
6719         cls.push("roo-linux");
6720     }
6721     if(Roo.isIOS){
6722         cls.push("roo-ios");
6723     }
6724     if(Roo.isTouch){
6725         cls.push("roo-touch");
6726     }
6727     if(Roo.isBorderBox){
6728         cls.push('roo-border-box');
6729     }
6730     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6731         var p = bd.dom.parentNode;
6732         if(p){
6733             p.className += ' roo-strict';
6734         }
6735     }
6736     bd.addClass(cls.join(' '));
6737 });
6738
6739 /**
6740  * @class Roo.EventObject
6741  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6742  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6743  * Example:
6744  * <pre><code>
6745  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6746     e.preventDefault();
6747     var target = e.getTarget();
6748     ...
6749  }
6750  var myDiv = Roo.get("myDiv");
6751  myDiv.on("click", handleClick);
6752  //or
6753  Roo.EventManager.on("myDiv", 'click', handleClick);
6754  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6755  </code></pre>
6756  * @singleton
6757  */
6758 Roo.EventObject = function(){
6759     
6760     var E = Roo.lib.Event;
6761     
6762     // safari keypress events for special keys return bad keycodes
6763     var safariKeys = {
6764         63234 : 37, // left
6765         63235 : 39, // right
6766         63232 : 38, // up
6767         63233 : 40, // down
6768         63276 : 33, // page up
6769         63277 : 34, // page down
6770         63272 : 46, // delete
6771         63273 : 36, // home
6772         63275 : 35  // end
6773     };
6774
6775     // normalize button clicks
6776     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6777                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6778
6779     Roo.EventObjectImpl = function(e){
6780         if(e){
6781             this.setEvent(e.browserEvent || e);
6782         }
6783     };
6784     Roo.EventObjectImpl.prototype = {
6785         /**
6786          * Used to fix doc tools.
6787          * @scope Roo.EventObject.prototype
6788          */
6789             
6790
6791         
6792         
6793         /** The normal browser event */
6794         browserEvent : null,
6795         /** The button pressed in a mouse event */
6796         button : -1,
6797         /** True if the shift key was down during the event */
6798         shiftKey : false,
6799         /** True if the control key was down during the event */
6800         ctrlKey : false,
6801         /** True if the alt key was down during the event */
6802         altKey : false,
6803
6804         /** Key constant 
6805         * @type Number */
6806         BACKSPACE : 8,
6807         /** Key constant 
6808         * @type Number */
6809         TAB : 9,
6810         /** Key constant 
6811         * @type Number */
6812         RETURN : 13,
6813         /** Key constant 
6814         * @type Number */
6815         ENTER : 13,
6816         /** Key constant 
6817         * @type Number */
6818         SHIFT : 16,
6819         /** Key constant 
6820         * @type Number */
6821         CONTROL : 17,
6822         /** Key constant 
6823         * @type Number */
6824         ESC : 27,
6825         /** Key constant 
6826         * @type Number */
6827         SPACE : 32,
6828         /** Key constant 
6829         * @type Number */
6830         PAGEUP : 33,
6831         /** Key constant 
6832         * @type Number */
6833         PAGEDOWN : 34,
6834         /** Key constant 
6835         * @type Number */
6836         END : 35,
6837         /** Key constant 
6838         * @type Number */
6839         HOME : 36,
6840         /** Key constant 
6841         * @type Number */
6842         LEFT : 37,
6843         /** Key constant 
6844         * @type Number */
6845         UP : 38,
6846         /** Key constant 
6847         * @type Number */
6848         RIGHT : 39,
6849         /** Key constant 
6850         * @type Number */
6851         DOWN : 40,
6852         /** Key constant 
6853         * @type Number */
6854         DELETE : 46,
6855         /** Key constant 
6856         * @type Number */
6857         F5 : 116,
6858
6859            /** @private */
6860         setEvent : function(e){
6861             if(e == this || (e && e.browserEvent)){ // already wrapped
6862                 return e;
6863             }
6864             this.browserEvent = e;
6865             if(e){
6866                 // normalize buttons
6867                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6868                 if(e.type == 'click' && this.button == -1){
6869                     this.button = 0;
6870                 }
6871                 this.type = e.type;
6872                 this.shiftKey = e.shiftKey;
6873                 // mac metaKey behaves like ctrlKey
6874                 this.ctrlKey = e.ctrlKey || e.metaKey;
6875                 this.altKey = e.altKey;
6876                 // in getKey these will be normalized for the mac
6877                 this.keyCode = e.keyCode;
6878                 // keyup warnings on firefox.
6879                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6880                 // cache the target for the delayed and or buffered events
6881                 this.target = E.getTarget(e);
6882                 // same for XY
6883                 this.xy = E.getXY(e);
6884             }else{
6885                 this.button = -1;
6886                 this.shiftKey = false;
6887                 this.ctrlKey = false;
6888                 this.altKey = false;
6889                 this.keyCode = 0;
6890                 this.charCode =0;
6891                 this.target = null;
6892                 this.xy = [0, 0];
6893             }
6894             return this;
6895         },
6896
6897         /**
6898          * Stop the event (preventDefault and stopPropagation)
6899          */
6900         stopEvent : function(){
6901             if(this.browserEvent){
6902                 if(this.browserEvent.type == 'mousedown'){
6903                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6904                 }
6905                 E.stopEvent(this.browserEvent);
6906             }
6907         },
6908
6909         /**
6910          * Prevents the browsers default handling of the event.
6911          */
6912         preventDefault : function(){
6913             if(this.browserEvent){
6914                 E.preventDefault(this.browserEvent);
6915             }
6916         },
6917
6918         /** @private */
6919         isNavKeyPress : function(){
6920             var k = this.keyCode;
6921             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6922             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6923         },
6924
6925         isSpecialKey : function(){
6926             var k = this.keyCode;
6927             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6928             (k == 16) || (k == 17) ||
6929             (k >= 18 && k <= 20) ||
6930             (k >= 33 && k <= 35) ||
6931             (k >= 36 && k <= 39) ||
6932             (k >= 44 && k <= 45);
6933         },
6934         /**
6935          * Cancels bubbling of the event.
6936          */
6937         stopPropagation : function(){
6938             if(this.browserEvent){
6939                 if(this.type == 'mousedown'){
6940                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6941                 }
6942                 E.stopPropagation(this.browserEvent);
6943             }
6944         },
6945
6946         /**
6947          * Gets the key code for the event.
6948          * @return {Number}
6949          */
6950         getCharCode : function(){
6951             return this.charCode || this.keyCode;
6952         },
6953
6954         /**
6955          * Returns a normalized keyCode for the event.
6956          * @return {Number} The key code
6957          */
6958         getKey : function(){
6959             var k = this.keyCode || this.charCode;
6960             return Roo.isSafari ? (safariKeys[k] || k) : k;
6961         },
6962
6963         /**
6964          * Gets the x coordinate of the event.
6965          * @return {Number}
6966          */
6967         getPageX : function(){
6968             return this.xy[0];
6969         },
6970
6971         /**
6972          * Gets the y coordinate of the event.
6973          * @return {Number}
6974          */
6975         getPageY : function(){
6976             return this.xy[1];
6977         },
6978
6979         /**
6980          * Gets the time of the event.
6981          * @return {Number}
6982          */
6983         getTime : function(){
6984             if(this.browserEvent){
6985                 return E.getTime(this.browserEvent);
6986             }
6987             return null;
6988         },
6989
6990         /**
6991          * Gets the page coordinates of the event.
6992          * @return {Array} The xy values like [x, y]
6993          */
6994         getXY : function(){
6995             return this.xy;
6996         },
6997
6998         /**
6999          * Gets the target for the event.
7000          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7001          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7002                 search as a number or element (defaults to 10 || document.body)
7003          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7004          * @return {HTMLelement}
7005          */
7006         getTarget : function(selector, maxDepth, returnEl){
7007             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7008         },
7009         /**
7010          * Gets the related target.
7011          * @return {HTMLElement}
7012          */
7013         getRelatedTarget : function(){
7014             if(this.browserEvent){
7015                 return E.getRelatedTarget(this.browserEvent);
7016             }
7017             return null;
7018         },
7019
7020         /**
7021          * Normalizes mouse wheel delta across browsers
7022          * @return {Number} The delta
7023          */
7024         getWheelDelta : function(){
7025             var e = this.browserEvent;
7026             var delta = 0;
7027             if(e.wheelDelta){ /* IE/Opera. */
7028                 delta = e.wheelDelta/120;
7029             }else if(e.detail){ /* Mozilla case. */
7030                 delta = -e.detail/3;
7031             }
7032             return delta;
7033         },
7034
7035         /**
7036          * Returns true if the control, meta, shift or alt key was pressed during this event.
7037          * @return {Boolean}
7038          */
7039         hasModifier : function(){
7040             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7041         },
7042
7043         /**
7044          * Returns true if the target of this event equals el or is a child of el
7045          * @param {String/HTMLElement/Element} el
7046          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7047          * @return {Boolean}
7048          */
7049         within : function(el, related){
7050             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7051             return t && Roo.fly(el).contains(t);
7052         },
7053
7054         getPoint : function(){
7055             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7056         }
7057     };
7058
7059     return new Roo.EventObjectImpl();
7060 }();
7061             
7062     /*
7063  * Based on:
7064  * Ext JS Library 1.1.1
7065  * Copyright(c) 2006-2007, Ext JS, LLC.
7066  *
7067  * Originally Released Under LGPL - original licence link has changed is not relivant.
7068  *
7069  * Fork - LGPL
7070  * <script type="text/javascript">
7071  */
7072
7073  
7074 // was in Composite Element!??!?!
7075  
7076 (function(){
7077     var D = Roo.lib.Dom;
7078     var E = Roo.lib.Event;
7079     var A = Roo.lib.Anim;
7080
7081     // local style camelizing for speed
7082     var propCache = {};
7083     var camelRe = /(-[a-z])/gi;
7084     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7085     var view = document.defaultView;
7086
7087 /**
7088  * @class Roo.Element
7089  * Represents an Element in the DOM.<br><br>
7090  * Usage:<br>
7091 <pre><code>
7092 var el = Roo.get("my-div");
7093
7094 // or with getEl
7095 var el = getEl("my-div");
7096
7097 // or with a DOM element
7098 var el = Roo.get(myDivElement);
7099 </code></pre>
7100  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7101  * each call instead of constructing a new one.<br><br>
7102  * <b>Animations</b><br />
7103  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7104  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7105 <pre>
7106 Option    Default   Description
7107 --------- --------  ---------------------------------------------
7108 duration  .35       The duration of the animation in seconds
7109 easing    easeOut   The YUI easing method
7110 callback  none      A function to execute when the anim completes
7111 scope     this      The scope (this) of the callback function
7112 </pre>
7113 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7114 * manipulate the animation. Here's an example:
7115 <pre><code>
7116 var el = Roo.get("my-div");
7117
7118 // no animation
7119 el.setWidth(100);
7120
7121 // default animation
7122 el.setWidth(100, true);
7123
7124 // animation with some options set
7125 el.setWidth(100, {
7126     duration: 1,
7127     callback: this.foo,
7128     scope: this
7129 });
7130
7131 // using the "anim" property to get the Anim object
7132 var opt = {
7133     duration: 1,
7134     callback: this.foo,
7135     scope: this
7136 };
7137 el.setWidth(100, opt);
7138 ...
7139 if(opt.anim.isAnimated()){
7140     opt.anim.stop();
7141 }
7142 </code></pre>
7143 * <b> Composite (Collections of) Elements</b><br />
7144  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7145  * @constructor Create a new Element directly.
7146  * @param {String/HTMLElement} element
7147  * @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).
7148  */
7149     Roo.Element = function(element, forceNew){
7150         var dom = typeof element == "string" ?
7151                 document.getElementById(element) : element;
7152         if(!dom){ // invalid id/element
7153             return null;
7154         }
7155         var id = dom.id;
7156         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7157             return Roo.Element.cache[id];
7158         }
7159
7160         /**
7161          * The DOM element
7162          * @type HTMLElement
7163          */
7164         this.dom = dom;
7165
7166         /**
7167          * The DOM element ID
7168          * @type String
7169          */
7170         this.id = id || Roo.id(dom);
7171     };
7172
7173     var El = Roo.Element;
7174
7175     El.prototype = {
7176         /**
7177          * The element's default display mode  (defaults to "") 
7178          * @type String
7179          */
7180         originalDisplay : "",
7181
7182         
7183         // note this is overridden in BS version..
7184         visibilityMode : 1, 
7185         /**
7186          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7187          * @type String
7188          */
7189         defaultUnit : "px",
7190         
7191         /**
7192          * Sets the element's visibility mode. When setVisible() is called it
7193          * will use this to determine whether to set the visibility or the display property.
7194          * @param visMode Element.VISIBILITY or Element.DISPLAY
7195          * @return {Roo.Element} this
7196          */
7197         setVisibilityMode : function(visMode){
7198             this.visibilityMode = visMode;
7199             return this;
7200         },
7201         /**
7202          * Convenience method for setVisibilityMode(Element.DISPLAY)
7203          * @param {String} display (optional) What to set display to when visible
7204          * @return {Roo.Element} this
7205          */
7206         enableDisplayMode : function(display){
7207             this.setVisibilityMode(El.DISPLAY);
7208             if(typeof display != "undefined") { this.originalDisplay = display; }
7209             return this;
7210         },
7211
7212         /**
7213          * 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)
7214          * @param {String} selector The simple selector to test
7215          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7216                 search as a number or element (defaults to 10 || document.body)
7217          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7218          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7219          */
7220         findParent : function(simpleSelector, maxDepth, returnEl){
7221             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7222             maxDepth = maxDepth || 50;
7223             if(typeof maxDepth != "number"){
7224                 stopEl = Roo.getDom(maxDepth);
7225                 maxDepth = 10;
7226             }
7227             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7228                 if(dq.is(p, simpleSelector)){
7229                     return returnEl ? Roo.get(p) : p;
7230                 }
7231                 depth++;
7232                 p = p.parentNode;
7233             }
7234             return null;
7235         },
7236
7237
7238         /**
7239          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7240          * @param {String} selector The simple selector to test
7241          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7242                 search as a number or element (defaults to 10 || document.body)
7243          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7244          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7245          */
7246         findParentNode : function(simpleSelector, maxDepth, returnEl){
7247             var p = Roo.fly(this.dom.parentNode, '_internal');
7248             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7249         },
7250         
7251         /**
7252          * Looks at  the scrollable parent element
7253          */
7254         findScrollableParent : function()
7255         {
7256             var overflowRegex = /(auto|scroll)/;
7257             
7258             if(this.getStyle('position') === 'fixed'){
7259                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7260             }
7261             
7262             var excludeStaticParent = this.getStyle('position') === "absolute";
7263             
7264             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7265                 
7266                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7267                     continue;
7268                 }
7269                 
7270                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7271                     return parent;
7272                 }
7273                 
7274                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7275                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7276                 }
7277             }
7278             
7279             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7280         },
7281
7282         /**
7283          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7284          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7285          * @param {String} selector The simple selector to test
7286          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7287                 search as a number or element (defaults to 10 || document.body)
7288          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7289          */
7290         up : function(simpleSelector, maxDepth){
7291             return this.findParentNode(simpleSelector, maxDepth, true);
7292         },
7293
7294
7295
7296         /**
7297          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7298          * @param {String} selector The simple selector to test
7299          * @return {Boolean} True if this element matches the selector, else false
7300          */
7301         is : function(simpleSelector){
7302             return Roo.DomQuery.is(this.dom, simpleSelector);
7303         },
7304
7305         /**
7306          * Perform animation on this element.
7307          * @param {Object} args The YUI animation control args
7308          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7309          * @param {Function} onComplete (optional) Function to call when animation completes
7310          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7311          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7312          * @return {Roo.Element} this
7313          */
7314         animate : function(args, duration, onComplete, easing, animType){
7315             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7316             return this;
7317         },
7318
7319         /*
7320          * @private Internal animation call
7321          */
7322         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7323             animType = animType || 'run';
7324             opt = opt || {};
7325             var anim = Roo.lib.Anim[animType](
7326                 this.dom, args,
7327                 (opt.duration || defaultDur) || .35,
7328                 (opt.easing || defaultEase) || 'easeOut',
7329                 function(){
7330                     Roo.callback(cb, this);
7331                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7332                 },
7333                 this
7334             );
7335             opt.anim = anim;
7336             return anim;
7337         },
7338
7339         // private legacy anim prep
7340         preanim : function(a, i){
7341             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7342         },
7343
7344         /**
7345          * Removes worthless text nodes
7346          * @param {Boolean} forceReclean (optional) By default the element
7347          * keeps track if it has been cleaned already so
7348          * you can call this over and over. However, if you update the element and
7349          * need to force a reclean, you can pass true.
7350          */
7351         clean : function(forceReclean){
7352             if(this.isCleaned && forceReclean !== true){
7353                 return this;
7354             }
7355             var ns = /\S/;
7356             var d = this.dom, n = d.firstChild, ni = -1;
7357             while(n){
7358                 var nx = n.nextSibling;
7359                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7360                     d.removeChild(n);
7361                 }else{
7362                     n.nodeIndex = ++ni;
7363                 }
7364                 n = nx;
7365             }
7366             this.isCleaned = true;
7367             return this;
7368         },
7369
7370         // private
7371         calcOffsetsTo : function(el){
7372             el = Roo.get(el);
7373             var d = el.dom;
7374             var restorePos = false;
7375             if(el.getStyle('position') == 'static'){
7376                 el.position('relative');
7377                 restorePos = true;
7378             }
7379             var x = 0, y =0;
7380             var op = this.dom;
7381             while(op && op != d && op.tagName != 'HTML'){
7382                 x+= op.offsetLeft;
7383                 y+= op.offsetTop;
7384                 op = op.offsetParent;
7385             }
7386             if(restorePos){
7387                 el.position('static');
7388             }
7389             return [x, y];
7390         },
7391
7392         /**
7393          * Scrolls this element into view within the passed container.
7394          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7395          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7396          * @return {Roo.Element} this
7397          */
7398         scrollIntoView : function(container, hscroll){
7399             var c = Roo.getDom(container) || document.body;
7400             var el = this.dom;
7401
7402             var o = this.calcOffsetsTo(c),
7403                 l = o[0],
7404                 t = o[1],
7405                 b = t+el.offsetHeight,
7406                 r = l+el.offsetWidth;
7407
7408             var ch = c.clientHeight;
7409             var ct = parseInt(c.scrollTop, 10);
7410             var cl = parseInt(c.scrollLeft, 10);
7411             var cb = ct + ch;
7412             var cr = cl + c.clientWidth;
7413
7414             if(t < ct){
7415                 c.scrollTop = t;
7416             }else if(b > cb){
7417                 c.scrollTop = b-ch;
7418             }
7419
7420             if(hscroll !== false){
7421                 if(l < cl){
7422                     c.scrollLeft = l;
7423                 }else if(r > cr){
7424                     c.scrollLeft = r-c.clientWidth;
7425                 }
7426             }
7427             return this;
7428         },
7429
7430         // private
7431         scrollChildIntoView : function(child, hscroll){
7432             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7433         },
7434
7435         /**
7436          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7437          * the new height may not be available immediately.
7438          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7439          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7440          * @param {Function} onComplete (optional) Function to call when animation completes
7441          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7442          * @return {Roo.Element} this
7443          */
7444         autoHeight : function(animate, duration, onComplete, easing){
7445             var oldHeight = this.getHeight();
7446             this.clip();
7447             this.setHeight(1); // force clipping
7448             setTimeout(function(){
7449                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7450                 if(!animate){
7451                     this.setHeight(height);
7452                     this.unclip();
7453                     if(typeof onComplete == "function"){
7454                         onComplete();
7455                     }
7456                 }else{
7457                     this.setHeight(oldHeight); // restore original height
7458                     this.setHeight(height, animate, duration, function(){
7459                         this.unclip();
7460                         if(typeof onComplete == "function") { onComplete(); }
7461                     }.createDelegate(this), easing);
7462                 }
7463             }.createDelegate(this), 0);
7464             return this;
7465         },
7466
7467         /**
7468          * Returns true if this element is an ancestor of the passed element
7469          * @param {HTMLElement/String} el The element to check
7470          * @return {Boolean} True if this element is an ancestor of el, else false
7471          */
7472         contains : function(el){
7473             if(!el){return false;}
7474             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7475         },
7476
7477         /**
7478          * Checks whether the element is currently visible using both visibility and display properties.
7479          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7480          * @return {Boolean} True if the element is currently visible, else false
7481          */
7482         isVisible : function(deep) {
7483             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7484             if(deep !== true || !vis){
7485                 return vis;
7486             }
7487             var p = this.dom.parentNode;
7488             while(p && p.tagName.toLowerCase() != "body"){
7489                 if(!Roo.fly(p, '_isVisible').isVisible()){
7490                     return false;
7491                 }
7492                 p = p.parentNode;
7493             }
7494             return true;
7495         },
7496
7497         /**
7498          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7499          * @param {String} selector The CSS selector
7500          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7501          * @return {CompositeElement/CompositeElementLite} The composite element
7502          */
7503         select : function(selector, unique){
7504             return El.select(selector, unique, this.dom);
7505         },
7506
7507         /**
7508          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7509          * @param {String} selector The CSS selector
7510          * @return {Array} An array of the matched nodes
7511          */
7512         query : function(selector, unique){
7513             return Roo.DomQuery.select(selector, this.dom);
7514         },
7515
7516         /**
7517          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7518          * @param {String} selector The CSS selector
7519          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7520          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7521          */
7522         child : function(selector, returnDom){
7523             var n = Roo.DomQuery.selectNode(selector, this.dom);
7524             return returnDom ? n : Roo.get(n);
7525         },
7526
7527         /**
7528          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7529          * @param {String} selector The CSS selector
7530          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7531          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7532          */
7533         down : function(selector, returnDom){
7534             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7535             return returnDom ? n : Roo.get(n);
7536         },
7537
7538         /**
7539          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7540          * @param {String} group The group the DD object is member of
7541          * @param {Object} config The DD config object
7542          * @param {Object} overrides An object containing methods to override/implement on the DD object
7543          * @return {Roo.dd.DD} The DD object
7544          */
7545         initDD : function(group, config, overrides){
7546             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7547             return Roo.apply(dd, overrides);
7548         },
7549
7550         /**
7551          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7552          * @param {String} group The group the DDProxy object is member of
7553          * @param {Object} config The DDProxy config object
7554          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7555          * @return {Roo.dd.DDProxy} The DDProxy object
7556          */
7557         initDDProxy : function(group, config, overrides){
7558             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7559             return Roo.apply(dd, overrides);
7560         },
7561
7562         /**
7563          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7564          * @param {String} group The group the DDTarget object is member of
7565          * @param {Object} config The DDTarget config object
7566          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7567          * @return {Roo.dd.DDTarget} The DDTarget object
7568          */
7569         initDDTarget : function(group, config, overrides){
7570             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7571             return Roo.apply(dd, overrides);
7572         },
7573
7574         /**
7575          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7576          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7577          * @param {Boolean} visible Whether the element is visible
7578          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7579          * @return {Roo.Element} this
7580          */
7581          setVisible : function(visible, animate){
7582             if(!animate || !A){
7583                 if(this.visibilityMode == El.DISPLAY){
7584                     this.setDisplayed(visible);
7585                 }else{
7586                     this.fixDisplay();
7587                     this.dom.style.visibility = visible ? "visible" : "hidden";
7588                 }
7589             }else{
7590                 // closure for composites
7591                 var dom = this.dom;
7592                 var visMode = this.visibilityMode;
7593                 if(visible){
7594                     this.setOpacity(.01);
7595                     this.setVisible(true);
7596                 }
7597                 this.anim({opacity: { to: (visible?1:0) }},
7598                       this.preanim(arguments, 1),
7599                       null, .35, 'easeIn', function(){
7600                          if(!visible){
7601                              if(visMode == El.DISPLAY){
7602                                  dom.style.display = "none";
7603                              }else{
7604                                  dom.style.visibility = "hidden";
7605                              }
7606                              Roo.get(dom).setOpacity(1);
7607                          }
7608                      });
7609             }
7610             return this;
7611         },
7612
7613         /**
7614          * Returns true if display is not "none"
7615          * @return {Boolean}
7616          */
7617         isDisplayed : function() {
7618             return this.getStyle("display") != "none";
7619         },
7620
7621         /**
7622          * Toggles the element's visibility or display, depending on visibility mode.
7623          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7624          * @return {Roo.Element} this
7625          */
7626         toggle : function(animate){
7627             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7628             return this;
7629         },
7630
7631         /**
7632          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7633          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7634          * @return {Roo.Element} this
7635          */
7636         setDisplayed : function(value) {
7637             if(typeof value == "boolean"){
7638                value = value ? this.originalDisplay : "none";
7639             }
7640             this.setStyle("display", value);
7641             return this;
7642         },
7643
7644         /**
7645          * Tries to focus the element. Any exceptions are caught and ignored.
7646          * @return {Roo.Element} this
7647          */
7648         focus : function() {
7649             try{
7650                 this.dom.focus();
7651             }catch(e){}
7652             return this;
7653         },
7654
7655         /**
7656          * Tries to blur the element. Any exceptions are caught and ignored.
7657          * @return {Roo.Element} this
7658          */
7659         blur : function() {
7660             try{
7661                 this.dom.blur();
7662             }catch(e){}
7663             return this;
7664         },
7665
7666         /**
7667          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7668          * @param {String/Array} className The CSS class to add, or an array of classes
7669          * @return {Roo.Element} this
7670          */
7671         addClass : function(className){
7672             if(className instanceof Array){
7673                 for(var i = 0, len = className.length; i < len; i++) {
7674                     this.addClass(className[i]);
7675                 }
7676             }else{
7677                 if(className && !this.hasClass(className)){
7678                     this.dom.className = this.dom.className + " " + className;
7679                 }
7680             }
7681             return this;
7682         },
7683
7684         /**
7685          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7686          * @param {String/Array} className The CSS class to add, or an array of classes
7687          * @return {Roo.Element} this
7688          */
7689         radioClass : function(className){
7690             var siblings = this.dom.parentNode.childNodes;
7691             for(var i = 0; i < siblings.length; i++) {
7692                 var s = siblings[i];
7693                 if(s.nodeType == 1){
7694                     Roo.get(s).removeClass(className);
7695                 }
7696             }
7697             this.addClass(className);
7698             return this;
7699         },
7700
7701         /**
7702          * Removes one or more CSS classes from the element.
7703          * @param {String/Array} className The CSS class to remove, or an array of classes
7704          * @return {Roo.Element} this
7705          */
7706         removeClass : function(className){
7707             if(!className || !this.dom.className){
7708                 return this;
7709             }
7710             if(className instanceof Array){
7711                 for(var i = 0, len = className.length; i < len; i++) {
7712                     this.removeClass(className[i]);
7713                 }
7714             }else{
7715                 if(this.hasClass(className)){
7716                     var re = this.classReCache[className];
7717                     if (!re) {
7718                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7719                        this.classReCache[className] = re;
7720                     }
7721                     this.dom.className =
7722                         this.dom.className.replace(re, " ");
7723                 }
7724             }
7725             return this;
7726         },
7727
7728         // private
7729         classReCache: {},
7730
7731         /**
7732          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7733          * @param {String} className The CSS class to toggle
7734          * @return {Roo.Element} this
7735          */
7736         toggleClass : function(className){
7737             if(this.hasClass(className)){
7738                 this.removeClass(className);
7739             }else{
7740                 this.addClass(className);
7741             }
7742             return this;
7743         },
7744
7745         /**
7746          * Checks if the specified CSS class exists on this element's DOM node.
7747          * @param {String} className The CSS class to check for
7748          * @return {Boolean} True if the class exists, else false
7749          */
7750         hasClass : function(className){
7751             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7752         },
7753
7754         /**
7755          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7756          * @param {String} oldClassName The CSS class to replace
7757          * @param {String} newClassName The replacement CSS class
7758          * @return {Roo.Element} this
7759          */
7760         replaceClass : function(oldClassName, newClassName){
7761             this.removeClass(oldClassName);
7762             this.addClass(newClassName);
7763             return this;
7764         },
7765
7766         /**
7767          * Returns an object with properties matching the styles requested.
7768          * For example, el.getStyles('color', 'font-size', 'width') might return
7769          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7770          * @param {String} style1 A style name
7771          * @param {String} style2 A style name
7772          * @param {String} etc.
7773          * @return {Object} The style object
7774          */
7775         getStyles : function(){
7776             var a = arguments, len = a.length, r = {};
7777             for(var i = 0; i < len; i++){
7778                 r[a[i]] = this.getStyle(a[i]);
7779             }
7780             return r;
7781         },
7782
7783         /**
7784          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7785          * @param {String} property The style property whose value is returned.
7786          * @return {String} The current value of the style property for this element.
7787          */
7788         getStyle : function(){
7789             return view && view.getComputedStyle ?
7790                 function(prop){
7791                     var el = this.dom, v, cs, camel;
7792                     if(prop == 'float'){
7793                         prop = "cssFloat";
7794                     }
7795                     if(el.style && (v = el.style[prop])){
7796                         return v;
7797                     }
7798                     if(cs = view.getComputedStyle(el, "")){
7799                         if(!(camel = propCache[prop])){
7800                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7801                         }
7802                         return cs[camel];
7803                     }
7804                     return null;
7805                 } :
7806                 function(prop){
7807                     var el = this.dom, v, cs, camel;
7808                     if(prop == 'opacity'){
7809                         if(typeof el.style.filter == 'string'){
7810                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7811                             if(m){
7812                                 var fv = parseFloat(m[1]);
7813                                 if(!isNaN(fv)){
7814                                     return fv ? fv / 100 : 0;
7815                                 }
7816                             }
7817                         }
7818                         return 1;
7819                     }else if(prop == 'float'){
7820                         prop = "styleFloat";
7821                     }
7822                     if(!(camel = propCache[prop])){
7823                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7824                     }
7825                     if(v = el.style[camel]){
7826                         return v;
7827                     }
7828                     if(cs = el.currentStyle){
7829                         return cs[camel];
7830                     }
7831                     return null;
7832                 };
7833         }(),
7834
7835         /**
7836          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7837          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7838          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7839          * @return {Roo.Element} this
7840          */
7841         setStyle : function(prop, value){
7842             if(typeof prop == "string"){
7843                 
7844                 if (prop == 'float') {
7845                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7846                     return this;
7847                 }
7848                 
7849                 var camel;
7850                 if(!(camel = propCache[prop])){
7851                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7852                 }
7853                 
7854                 if(camel == 'opacity') {
7855                     this.setOpacity(value);
7856                 }else{
7857                     this.dom.style[camel] = value;
7858                 }
7859             }else{
7860                 for(var style in prop){
7861                     if(typeof prop[style] != "function"){
7862                        this.setStyle(style, prop[style]);
7863                     }
7864                 }
7865             }
7866             return this;
7867         },
7868
7869         /**
7870          * More flexible version of {@link #setStyle} for setting style properties.
7871          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7872          * a function which returns such a specification.
7873          * @return {Roo.Element} this
7874          */
7875         applyStyles : function(style){
7876             Roo.DomHelper.applyStyles(this.dom, style);
7877             return this;
7878         },
7879
7880         /**
7881           * 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).
7882           * @return {Number} The X position of the element
7883           */
7884         getX : function(){
7885             return D.getX(this.dom);
7886         },
7887
7888         /**
7889           * 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).
7890           * @return {Number} The Y position of the element
7891           */
7892         getY : function(){
7893             return D.getY(this.dom);
7894         },
7895
7896         /**
7897           * 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).
7898           * @return {Array} The XY position of the element
7899           */
7900         getXY : function(){
7901             return D.getXY(this.dom);
7902         },
7903
7904         /**
7905          * 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).
7906          * @param {Number} The X position of the element
7907          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7908          * @return {Roo.Element} this
7909          */
7910         setX : function(x, animate){
7911             if(!animate || !A){
7912                 D.setX(this.dom, x);
7913             }else{
7914                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7915             }
7916             return this;
7917         },
7918
7919         /**
7920          * 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).
7921          * @param {Number} The Y position of the element
7922          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7923          * @return {Roo.Element} this
7924          */
7925         setY : function(y, animate){
7926             if(!animate || !A){
7927                 D.setY(this.dom, y);
7928             }else{
7929                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7930             }
7931             return this;
7932         },
7933
7934         /**
7935          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7936          * @param {String} left The left CSS property value
7937          * @return {Roo.Element} this
7938          */
7939         setLeft : function(left){
7940             this.setStyle("left", this.addUnits(left));
7941             return this;
7942         },
7943
7944         /**
7945          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7946          * @param {String} top The top CSS property value
7947          * @return {Roo.Element} this
7948          */
7949         setTop : function(top){
7950             this.setStyle("top", this.addUnits(top));
7951             return this;
7952         },
7953
7954         /**
7955          * Sets the element's CSS right style.
7956          * @param {String} right The right CSS property value
7957          * @return {Roo.Element} this
7958          */
7959         setRight : function(right){
7960             this.setStyle("right", this.addUnits(right));
7961             return this;
7962         },
7963
7964         /**
7965          * Sets the element's CSS bottom style.
7966          * @param {String} bottom The bottom CSS property value
7967          * @return {Roo.Element} this
7968          */
7969         setBottom : function(bottom){
7970             this.setStyle("bottom", this.addUnits(bottom));
7971             return this;
7972         },
7973
7974         /**
7975          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7976          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7977          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7978          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7979          * @return {Roo.Element} this
7980          */
7981         setXY : function(pos, animate){
7982             if(!animate || !A){
7983                 D.setXY(this.dom, pos);
7984             }else{
7985                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7986             }
7987             return this;
7988         },
7989
7990         /**
7991          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7992          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7993          * @param {Number} x X value for new position (coordinates are page-based)
7994          * @param {Number} y Y value for new position (coordinates are page-based)
7995          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7996          * @return {Roo.Element} this
7997          */
7998         setLocation : function(x, y, animate){
7999             this.setXY([x, y], this.preanim(arguments, 2));
8000             return this;
8001         },
8002
8003         /**
8004          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8005          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8006          * @param {Number} x X value for new position (coordinates are page-based)
8007          * @param {Number} y Y value for new position (coordinates are page-based)
8008          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8009          * @return {Roo.Element} this
8010          */
8011         moveTo : function(x, y, animate){
8012             this.setXY([x, y], this.preanim(arguments, 2));
8013             return this;
8014         },
8015
8016         /**
8017          * Returns the region of the given element.
8018          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8019          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8020          */
8021         getRegion : function(){
8022             return D.getRegion(this.dom);
8023         },
8024
8025         /**
8026          * Returns the offset height of the element
8027          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8028          * @return {Number} The element's height
8029          */
8030         getHeight : function(contentHeight){
8031             var h = this.dom.offsetHeight || 0;
8032             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8033         },
8034
8035         /**
8036          * Returns the offset width of the element
8037          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8038          * @return {Number} The element's width
8039          */
8040         getWidth : function(contentWidth){
8041             var w = this.dom.offsetWidth || 0;
8042             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8043         },
8044
8045         /**
8046          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8047          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8048          * if a height has not been set using CSS.
8049          * @return {Number}
8050          */
8051         getComputedHeight : function(){
8052             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8053             if(!h){
8054                 h = parseInt(this.getStyle('height'), 10) || 0;
8055                 if(!this.isBorderBox()){
8056                     h += this.getFrameWidth('tb');
8057                 }
8058             }
8059             return h;
8060         },
8061
8062         /**
8063          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8064          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8065          * if a width has not been set using CSS.
8066          * @return {Number}
8067          */
8068         getComputedWidth : function(){
8069             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8070             if(!w){
8071                 w = parseInt(this.getStyle('width'), 10) || 0;
8072                 if(!this.isBorderBox()){
8073                     w += this.getFrameWidth('lr');
8074                 }
8075             }
8076             return w;
8077         },
8078
8079         /**
8080          * Returns the size of the element.
8081          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8082          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8083          */
8084         getSize : function(contentSize){
8085             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8086         },
8087
8088         /**
8089          * Returns the width and height of the viewport.
8090          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8091          */
8092         getViewSize : function(){
8093             var d = this.dom, doc = document, aw = 0, ah = 0;
8094             if(d == doc || d == doc.body){
8095                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8096             }else{
8097                 return {
8098                     width : d.clientWidth,
8099                     height: d.clientHeight
8100                 };
8101             }
8102         },
8103
8104         /**
8105          * Returns the value of the "value" attribute
8106          * @param {Boolean} asNumber true to parse the value as a number
8107          * @return {String/Number}
8108          */
8109         getValue : function(asNumber){
8110             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8111         },
8112
8113         // private
8114         adjustWidth : function(width){
8115             if(typeof width == "number"){
8116                 if(this.autoBoxAdjust && !this.isBorderBox()){
8117                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8118                 }
8119                 if(width < 0){
8120                     width = 0;
8121                 }
8122             }
8123             return width;
8124         },
8125
8126         // private
8127         adjustHeight : function(height){
8128             if(typeof height == "number"){
8129                if(this.autoBoxAdjust && !this.isBorderBox()){
8130                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8131                }
8132                if(height < 0){
8133                    height = 0;
8134                }
8135             }
8136             return height;
8137         },
8138
8139         /**
8140          * Set the width of the element
8141          * @param {Number} width The new width
8142          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8143          * @return {Roo.Element} this
8144          */
8145         setWidth : function(width, animate){
8146             width = this.adjustWidth(width);
8147             if(!animate || !A){
8148                 this.dom.style.width = this.addUnits(width);
8149             }else{
8150                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8151             }
8152             return this;
8153         },
8154
8155         /**
8156          * Set the height of the element
8157          * @param {Number} height The new height
8158          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8159          * @return {Roo.Element} this
8160          */
8161          setHeight : function(height, animate){
8162             height = this.adjustHeight(height);
8163             if(!animate || !A){
8164                 this.dom.style.height = this.addUnits(height);
8165             }else{
8166                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8167             }
8168             return this;
8169         },
8170
8171         /**
8172          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8173          * @param {Number} width The new width
8174          * @param {Number} height The new height
8175          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8176          * @return {Roo.Element} this
8177          */
8178          setSize : function(width, height, animate){
8179             if(typeof width == "object"){ // in case of object from getSize()
8180                 height = width.height; width = width.width;
8181             }
8182             width = this.adjustWidth(width); height = this.adjustHeight(height);
8183             if(!animate || !A){
8184                 this.dom.style.width = this.addUnits(width);
8185                 this.dom.style.height = this.addUnits(height);
8186             }else{
8187                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8188             }
8189             return this;
8190         },
8191
8192         /**
8193          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8194          * @param {Number} x X value for new position (coordinates are page-based)
8195          * @param {Number} y Y value for new position (coordinates are page-based)
8196          * @param {Number} width The new width
8197          * @param {Number} height The new height
8198          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8199          * @return {Roo.Element} this
8200          */
8201         setBounds : function(x, y, width, height, animate){
8202             if(!animate || !A){
8203                 this.setSize(width, height);
8204                 this.setLocation(x, y);
8205             }else{
8206                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8207                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8208                               this.preanim(arguments, 4), 'motion');
8209             }
8210             return this;
8211         },
8212
8213         /**
8214          * 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.
8215          * @param {Roo.lib.Region} region The region to fill
8216          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8217          * @return {Roo.Element} this
8218          */
8219         setRegion : function(region, animate){
8220             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8221             return this;
8222         },
8223
8224         /**
8225          * Appends an event handler
8226          *
8227          * @param {String}   eventName     The type of event to append
8228          * @param {Function} fn        The method the event invokes
8229          * @param {Object} scope       (optional) The scope (this object) of the fn
8230          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8231          */
8232         addListener : function(eventName, fn, scope, options){
8233             if (this.dom) {
8234                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8235             }
8236             if (eventName == 'dblclick') {
8237                 this.addListener('touchstart', this.onTapHandler, this);
8238             }
8239         },
8240         tapedTwice : false,
8241         onTapHandler : function(event)
8242         {
8243             if(!this.tapedTwice) {
8244                 this.tapedTwice = true;
8245                 var s = this;
8246                 setTimeout( function() {
8247                     s.tapedTwice = false;
8248                 }, 300 );
8249                 return;
8250             }
8251             event.preventDefault();
8252             var revent = new MouseEvent('dblclick',  {
8253                 view: window,
8254                 bubbles: true,
8255                 cancelable: true
8256             });
8257              
8258             this.dom.dispatchEvent(revent);
8259             //action on double tap goes below
8260              
8261         }, 
8262
8263         /**
8264          * Removes an event handler from this element
8265          * @param {String} eventName the type of event to remove
8266          * @param {Function} fn the method the event invokes
8267          * @return {Roo.Element} this
8268          */
8269         removeListener : function(eventName, fn){
8270             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8271             return this;
8272         },
8273
8274         /**
8275          * Removes all previous added listeners from this element
8276          * @return {Roo.Element} this
8277          */
8278         removeAllListeners : function(){
8279             E.purgeElement(this.dom);
8280             return this;
8281         },
8282
8283         relayEvent : function(eventName, observable){
8284             this.on(eventName, function(e){
8285                 observable.fireEvent(eventName, e);
8286             });
8287         },
8288
8289         /**
8290          * Set the opacity of the element
8291          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8292          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8293          * @return {Roo.Element} this
8294          */
8295          setOpacity : function(opacity, animate){
8296             if(!animate || !A){
8297                 var s = this.dom.style;
8298                 if(Roo.isIE){
8299                     s.zoom = 1;
8300                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8301                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8302                 }else{
8303                     s.opacity = opacity;
8304                 }
8305             }else{
8306                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8307             }
8308             return this;
8309         },
8310
8311         /**
8312          * Gets the left X coordinate
8313          * @param {Boolean} local True to get the local css position instead of page coordinate
8314          * @return {Number}
8315          */
8316         getLeft : function(local){
8317             if(!local){
8318                 return this.getX();
8319             }else{
8320                 return parseInt(this.getStyle("left"), 10) || 0;
8321             }
8322         },
8323
8324         /**
8325          * Gets the right X coordinate of the element (element X position + element width)
8326          * @param {Boolean} local True to get the local css position instead of page coordinate
8327          * @return {Number}
8328          */
8329         getRight : function(local){
8330             if(!local){
8331                 return this.getX() + this.getWidth();
8332             }else{
8333                 return (this.getLeft(true) + this.getWidth()) || 0;
8334             }
8335         },
8336
8337         /**
8338          * Gets the top Y coordinate
8339          * @param {Boolean} local True to get the local css position instead of page coordinate
8340          * @return {Number}
8341          */
8342         getTop : function(local) {
8343             if(!local){
8344                 return this.getY();
8345             }else{
8346                 return parseInt(this.getStyle("top"), 10) || 0;
8347             }
8348         },
8349
8350         /**
8351          * Gets the bottom Y coordinate of the element (element Y position + element height)
8352          * @param {Boolean} local True to get the local css position instead of page coordinate
8353          * @return {Number}
8354          */
8355         getBottom : function(local){
8356             if(!local){
8357                 return this.getY() + this.getHeight();
8358             }else{
8359                 return (this.getTop(true) + this.getHeight()) || 0;
8360             }
8361         },
8362
8363         /**
8364         * Initializes positioning on this element. If a desired position is not passed, it will make the
8365         * the element positioned relative IF it is not already positioned.
8366         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8367         * @param {Number} zIndex (optional) The zIndex to apply
8368         * @param {Number} x (optional) Set the page X position
8369         * @param {Number} y (optional) Set the page Y position
8370         */
8371         position : function(pos, zIndex, x, y){
8372             if(!pos){
8373                if(this.getStyle('position') == 'static'){
8374                    this.setStyle('position', 'relative');
8375                }
8376             }else{
8377                 this.setStyle("position", pos);
8378             }
8379             if(zIndex){
8380                 this.setStyle("z-index", zIndex);
8381             }
8382             if(x !== undefined && y !== undefined){
8383                 this.setXY([x, y]);
8384             }else if(x !== undefined){
8385                 this.setX(x);
8386             }else if(y !== undefined){
8387                 this.setY(y);
8388             }
8389         },
8390
8391         /**
8392         * Clear positioning back to the default when the document was loaded
8393         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8394         * @return {Roo.Element} this
8395          */
8396         clearPositioning : function(value){
8397             value = value ||'';
8398             this.setStyle({
8399                 "left": value,
8400                 "right": value,
8401                 "top": value,
8402                 "bottom": value,
8403                 "z-index": "",
8404                 "position" : "static"
8405             });
8406             return this;
8407         },
8408
8409         /**
8410         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8411         * snapshot before performing an update and then restoring the element.
8412         * @return {Object}
8413         */
8414         getPositioning : function(){
8415             var l = this.getStyle("left");
8416             var t = this.getStyle("top");
8417             return {
8418                 "position" : this.getStyle("position"),
8419                 "left" : l,
8420                 "right" : l ? "" : this.getStyle("right"),
8421                 "top" : t,
8422                 "bottom" : t ? "" : this.getStyle("bottom"),
8423                 "z-index" : this.getStyle("z-index")
8424             };
8425         },
8426
8427         /**
8428          * Gets the width of the border(s) for the specified side(s)
8429          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8430          * passing lr would get the border (l)eft width + the border (r)ight width.
8431          * @return {Number} The width of the sides passed added together
8432          */
8433         getBorderWidth : function(side){
8434             return this.addStyles(side, El.borders);
8435         },
8436
8437         /**
8438          * Gets the width of the padding(s) for the specified side(s)
8439          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8440          * passing lr would get the padding (l)eft + the padding (r)ight.
8441          * @return {Number} The padding of the sides passed added together
8442          */
8443         getPadding : function(side){
8444             return this.addStyles(side, El.paddings);
8445         },
8446
8447         /**
8448         * Set positioning with an object returned by getPositioning().
8449         * @param {Object} posCfg
8450         * @return {Roo.Element} this
8451          */
8452         setPositioning : function(pc){
8453             this.applyStyles(pc);
8454             if(pc.right == "auto"){
8455                 this.dom.style.right = "";
8456             }
8457             if(pc.bottom == "auto"){
8458                 this.dom.style.bottom = "";
8459             }
8460             return this;
8461         },
8462
8463         // private
8464         fixDisplay : function(){
8465             if(this.getStyle("display") == "none"){
8466                 this.setStyle("visibility", "hidden");
8467                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8468                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8469                     this.setStyle("display", "block");
8470                 }
8471             }
8472         },
8473
8474         /**
8475          * Quick set left and top adding default units
8476          * @param {String} left The left CSS property value
8477          * @param {String} top The top CSS property value
8478          * @return {Roo.Element} this
8479          */
8480          setLeftTop : function(left, top){
8481             this.dom.style.left = this.addUnits(left);
8482             this.dom.style.top = this.addUnits(top);
8483             return this;
8484         },
8485
8486         /**
8487          * Move this element relative to its current position.
8488          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8489          * @param {Number} distance How far to move the element in pixels
8490          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8491          * @return {Roo.Element} this
8492          */
8493          move : function(direction, distance, animate){
8494             var xy = this.getXY();
8495             direction = direction.toLowerCase();
8496             switch(direction){
8497                 case "l":
8498                 case "left":
8499                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8500                     break;
8501                case "r":
8502                case "right":
8503                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8504                     break;
8505                case "t":
8506                case "top":
8507                case "up":
8508                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8509                     break;
8510                case "b":
8511                case "bottom":
8512                case "down":
8513                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8514                     break;
8515             }
8516             return this;
8517         },
8518
8519         /**
8520          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8521          * @return {Roo.Element} this
8522          */
8523         clip : function(){
8524             if(!this.isClipped){
8525                this.isClipped = true;
8526                this.originalClip = {
8527                    "o": this.getStyle("overflow"),
8528                    "x": this.getStyle("overflow-x"),
8529                    "y": this.getStyle("overflow-y")
8530                };
8531                this.setStyle("overflow", "hidden");
8532                this.setStyle("overflow-x", "hidden");
8533                this.setStyle("overflow-y", "hidden");
8534             }
8535             return this;
8536         },
8537
8538         /**
8539          *  Return clipping (overflow) to original clipping before clip() was called
8540          * @return {Roo.Element} this
8541          */
8542         unclip : function(){
8543             if(this.isClipped){
8544                 this.isClipped = false;
8545                 var o = this.originalClip;
8546                 if(o.o){this.setStyle("overflow", o.o);}
8547                 if(o.x){this.setStyle("overflow-x", o.x);}
8548                 if(o.y){this.setStyle("overflow-y", o.y);}
8549             }
8550             return this;
8551         },
8552
8553
8554         /**
8555          * Gets the x,y coordinates specified by the anchor position on the element.
8556          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8557          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8558          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8559          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8560          * @return {Array} [x, y] An array containing the element's x and y coordinates
8561          */
8562         getAnchorXY : function(anchor, local, s){
8563             //Passing a different size is useful for pre-calculating anchors,
8564             //especially for anchored animations that change the el size.
8565
8566             var w, h, vp = false;
8567             if(!s){
8568                 var d = this.dom;
8569                 if(d == document.body || d == document){
8570                     vp = true;
8571                     w = D.getViewWidth(); h = D.getViewHeight();
8572                 }else{
8573                     w = this.getWidth(); h = this.getHeight();
8574                 }
8575             }else{
8576                 w = s.width;  h = s.height;
8577             }
8578             var x = 0, y = 0, r = Math.round;
8579             switch((anchor || "tl").toLowerCase()){
8580                 case "c":
8581                     x = r(w*.5);
8582                     y = r(h*.5);
8583                 break;
8584                 case "t":
8585                     x = r(w*.5);
8586                     y = 0;
8587                 break;
8588                 case "l":
8589                     x = 0;
8590                     y = r(h*.5);
8591                 break;
8592                 case "r":
8593                     x = w;
8594                     y = r(h*.5);
8595                 break;
8596                 case "b":
8597                     x = r(w*.5);
8598                     y = h;
8599                 break;
8600                 case "tl":
8601                     x = 0;
8602                     y = 0;
8603                 break;
8604                 case "bl":
8605                     x = 0;
8606                     y = h;
8607                 break;
8608                 case "br":
8609                     x = w;
8610                     y = h;
8611                 break;
8612                 case "tr":
8613                     x = w;
8614                     y = 0;
8615                 break;
8616             }
8617             if(local === true){
8618                 return [x, y];
8619             }
8620             if(vp){
8621                 var sc = this.getScroll();
8622                 return [x + sc.left, y + sc.top];
8623             }
8624             //Add the element's offset xy
8625             var o = this.getXY();
8626             return [x+o[0], y+o[1]];
8627         },
8628
8629         /**
8630          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8631          * supported position values.
8632          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8633          * @param {String} position The position to align to.
8634          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8635          * @return {Array} [x, y]
8636          */
8637         getAlignToXY : function(el, p, o)
8638         {
8639             el = Roo.get(el);
8640             var d = this.dom;
8641             if(!el.dom){
8642                 throw "Element.alignTo with an element that doesn't exist";
8643             }
8644             var c = false; //constrain to viewport
8645             var p1 = "", p2 = "";
8646             o = o || [0,0];
8647
8648             if(!p){
8649                 p = "tl-bl";
8650             }else if(p == "?"){
8651                 p = "tl-bl?";
8652             }else if(p.indexOf("-") == -1){
8653                 p = "tl-" + p;
8654             }
8655             p = p.toLowerCase();
8656             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8657             if(!m){
8658                throw "Element.alignTo with an invalid alignment " + p;
8659             }
8660             p1 = m[1]; p2 = m[2]; c = !!m[3];
8661
8662             //Subtract the aligned el's internal xy from the target's offset xy
8663             //plus custom offset to get the aligned el's new offset xy
8664             var a1 = this.getAnchorXY(p1, true);
8665             var a2 = el.getAnchorXY(p2, false);
8666             var x = a2[0] - a1[0] + o[0];
8667             var y = a2[1] - a1[1] + o[1];
8668             if(c){
8669                 //constrain the aligned el to viewport if necessary
8670                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8671                 // 5px of margin for ie
8672                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8673
8674                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8675                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8676                 //otherwise swap the aligned el to the opposite border of the target.
8677                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8678                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8679                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8680                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8681
8682                var doc = document;
8683                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8684                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8685
8686                if((x+w) > dw + scrollX){
8687                     x = swapX ? r.left-w : dw+scrollX-w;
8688                 }
8689                if(x < scrollX){
8690                    x = swapX ? r.right : scrollX;
8691                }
8692                if((y+h) > dh + scrollY){
8693                     y = swapY ? r.top-h : dh+scrollY-h;
8694                 }
8695                if (y < scrollY){
8696                    y = swapY ? r.bottom : scrollY;
8697                }
8698             }
8699             return [x,y];
8700         },
8701
8702         // private
8703         getConstrainToXY : function(){
8704             var os = {top:0, left:0, bottom:0, right: 0};
8705
8706             return function(el, local, offsets, proposedXY){
8707                 el = Roo.get(el);
8708                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8709
8710                 var vw, vh, vx = 0, vy = 0;
8711                 if(el.dom == document.body || el.dom == document){
8712                     vw = Roo.lib.Dom.getViewWidth();
8713                     vh = Roo.lib.Dom.getViewHeight();
8714                 }else{
8715                     vw = el.dom.clientWidth;
8716                     vh = el.dom.clientHeight;
8717                     if(!local){
8718                         var vxy = el.getXY();
8719                         vx = vxy[0];
8720                         vy = vxy[1];
8721                     }
8722                 }
8723
8724                 var s = el.getScroll();
8725
8726                 vx += offsets.left + s.left;
8727                 vy += offsets.top + s.top;
8728
8729                 vw -= offsets.right;
8730                 vh -= offsets.bottom;
8731
8732                 var vr = vx+vw;
8733                 var vb = vy+vh;
8734
8735                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8736                 var x = xy[0], y = xy[1];
8737                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8738
8739                 // only move it if it needs it
8740                 var moved = false;
8741
8742                 // first validate right/bottom
8743                 if((x + w) > vr){
8744                     x = vr - w;
8745                     moved = true;
8746                 }
8747                 if((y + h) > vb){
8748                     y = vb - h;
8749                     moved = true;
8750                 }
8751                 // then make sure top/left isn't negative
8752                 if(x < vx){
8753                     x = vx;
8754                     moved = true;
8755                 }
8756                 if(y < vy){
8757                     y = vy;
8758                     moved = true;
8759                 }
8760                 return moved ? [x, y] : false;
8761             };
8762         }(),
8763
8764         // private
8765         adjustForConstraints : function(xy, parent, offsets){
8766             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8767         },
8768
8769         /**
8770          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8771          * document it aligns it to the viewport.
8772          * The position parameter is optional, and can be specified in any one of the following formats:
8773          * <ul>
8774          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8775          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8776          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8777          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8778          *   <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
8779          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8780          * </ul>
8781          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8782          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8783          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8784          * that specified in order to enforce the viewport constraints.
8785          * Following are all of the supported anchor positions:
8786     <pre>
8787     Value  Description
8788     -----  -----------------------------
8789     tl     The top left corner (default)
8790     t      The center of the top edge
8791     tr     The top right corner
8792     l      The center of the left edge
8793     c      In the center of the element
8794     r      The center of the right edge
8795     bl     The bottom left corner
8796     b      The center of the bottom edge
8797     br     The bottom right corner
8798     </pre>
8799     Example Usage:
8800     <pre><code>
8801     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8802     el.alignTo("other-el");
8803
8804     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8805     el.alignTo("other-el", "tr?");
8806
8807     // align the bottom right corner of el with the center left edge of other-el
8808     el.alignTo("other-el", "br-l?");
8809
8810     // align the center of el with the bottom left corner of other-el and
8811     // adjust the x position by -6 pixels (and the y position by 0)
8812     el.alignTo("other-el", "c-bl", [-6, 0]);
8813     </code></pre>
8814          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8815          * @param {String} position The position to align to.
8816          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8817          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8818          * @return {Roo.Element} this
8819          */
8820         alignTo : function(element, position, offsets, animate){
8821             var xy = this.getAlignToXY(element, position, offsets);
8822             this.setXY(xy, this.preanim(arguments, 3));
8823             return this;
8824         },
8825
8826         /**
8827          * Anchors an element to another element and realigns it when the window is resized.
8828          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8829          * @param {String} position The position to align to.
8830          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8831          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8832          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8833          * is a number, it is used as the buffer delay (defaults to 50ms).
8834          * @param {Function} callback The function to call after the animation finishes
8835          * @return {Roo.Element} this
8836          */
8837         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8838             var action = function(){
8839                 this.alignTo(el, alignment, offsets, animate);
8840                 Roo.callback(callback, this);
8841             };
8842             Roo.EventManager.onWindowResize(action, this);
8843             var tm = typeof monitorScroll;
8844             if(tm != 'undefined'){
8845                 Roo.EventManager.on(window, 'scroll', action, this,
8846                     {buffer: tm == 'number' ? monitorScroll : 50});
8847             }
8848             action.call(this); // align immediately
8849             return this;
8850         },
8851         /**
8852          * Clears any opacity settings from this element. Required in some cases for IE.
8853          * @return {Roo.Element} this
8854          */
8855         clearOpacity : function(){
8856             if (window.ActiveXObject) {
8857                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8858                     this.dom.style.filter = "";
8859                 }
8860             } else {
8861                 this.dom.style.opacity = "";
8862                 this.dom.style["-moz-opacity"] = "";
8863                 this.dom.style["-khtml-opacity"] = "";
8864             }
8865             return this;
8866         },
8867
8868         /**
8869          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8870          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8871          * @return {Roo.Element} this
8872          */
8873         hide : function(animate){
8874             this.setVisible(false, this.preanim(arguments, 0));
8875             return this;
8876         },
8877
8878         /**
8879         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8880         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8881          * @return {Roo.Element} this
8882          */
8883         show : function(animate){
8884             this.setVisible(true, this.preanim(arguments, 0));
8885             return this;
8886         },
8887
8888         /**
8889          * @private Test if size has a unit, otherwise appends the default
8890          */
8891         addUnits : function(size){
8892             return Roo.Element.addUnits(size, this.defaultUnit);
8893         },
8894
8895         /**
8896          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8897          * @return {Roo.Element} this
8898          */
8899         beginMeasure : function(){
8900             var el = this.dom;
8901             if(el.offsetWidth || el.offsetHeight){
8902                 return this; // offsets work already
8903             }
8904             var changed = [];
8905             var p = this.dom, b = document.body; // start with this element
8906             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8907                 var pe = Roo.get(p);
8908                 if(pe.getStyle('display') == 'none'){
8909                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8910                     p.style.visibility = "hidden";
8911                     p.style.display = "block";
8912                 }
8913                 p = p.parentNode;
8914             }
8915             this._measureChanged = changed;
8916             return this;
8917
8918         },
8919
8920         /**
8921          * Restores displays to before beginMeasure was called
8922          * @return {Roo.Element} this
8923          */
8924         endMeasure : function(){
8925             var changed = this._measureChanged;
8926             if(changed){
8927                 for(var i = 0, len = changed.length; i < len; i++) {
8928                     var r = changed[i];
8929                     r.el.style.visibility = r.visibility;
8930                     r.el.style.display = "none";
8931                 }
8932                 this._measureChanged = null;
8933             }
8934             return this;
8935         },
8936
8937         /**
8938         * Update the innerHTML of this element, optionally searching for and processing scripts
8939         * @param {String} html The new HTML
8940         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8941         * @param {Function} callback For async script loading you can be noticed when the update completes
8942         * @return {Roo.Element} this
8943          */
8944         update : function(html, loadScripts, callback){
8945             if(typeof html == "undefined"){
8946                 html = "";
8947             }
8948             if(loadScripts !== true){
8949                 this.dom.innerHTML = html;
8950                 if(typeof callback == "function"){
8951                     callback();
8952                 }
8953                 return this;
8954             }
8955             var id = Roo.id();
8956             var dom = this.dom;
8957
8958             html += '<span id="' + id + '"></span>';
8959
8960             E.onAvailable(id, function(){
8961                 var hd = document.getElementsByTagName("head")[0];
8962                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8963                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8964                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8965
8966                 var match;
8967                 while(match = re.exec(html)){
8968                     var attrs = match[1];
8969                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8970                     if(srcMatch && srcMatch[2]){
8971                        var s = document.createElement("script");
8972                        s.src = srcMatch[2];
8973                        var typeMatch = attrs.match(typeRe);
8974                        if(typeMatch && typeMatch[2]){
8975                            s.type = typeMatch[2];
8976                        }
8977                        hd.appendChild(s);
8978                     }else if(match[2] && match[2].length > 0){
8979                         if(window.execScript) {
8980                            window.execScript(match[2]);
8981                         } else {
8982                             /**
8983                              * eval:var:id
8984                              * eval:var:dom
8985                              * eval:var:html
8986                              * 
8987                              */
8988                            window.eval(match[2]);
8989                         }
8990                     }
8991                 }
8992                 var el = document.getElementById(id);
8993                 if(el){el.parentNode.removeChild(el);}
8994                 if(typeof callback == "function"){
8995                     callback();
8996                 }
8997             });
8998             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8999             return this;
9000         },
9001
9002         /**
9003          * Direct access to the UpdateManager update() method (takes the same parameters).
9004          * @param {String/Function} url The url for this request or a function to call to get the url
9005          * @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}
9006          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9007          * @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.
9008          * @return {Roo.Element} this
9009          */
9010         load : function(){
9011             var um = this.getUpdateManager();
9012             um.update.apply(um, arguments);
9013             return this;
9014         },
9015
9016         /**
9017         * Gets this element's UpdateManager
9018         * @return {Roo.UpdateManager} The UpdateManager
9019         */
9020         getUpdateManager : function(){
9021             if(!this.updateManager){
9022                 this.updateManager = new Roo.UpdateManager(this);
9023             }
9024             return this.updateManager;
9025         },
9026
9027         /**
9028          * Disables text selection for this element (normalized across browsers)
9029          * @return {Roo.Element} this
9030          */
9031         unselectable : function(){
9032             this.dom.unselectable = "on";
9033             this.swallowEvent("selectstart", true);
9034             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9035             this.addClass("x-unselectable");
9036             return this;
9037         },
9038
9039         /**
9040         * Calculates the x, y to center this element on the screen
9041         * @return {Array} The x, y values [x, y]
9042         */
9043         getCenterXY : function(){
9044             return this.getAlignToXY(document, 'c-c');
9045         },
9046
9047         /**
9048         * Centers the Element in either the viewport, or another Element.
9049         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9050         */
9051         center : function(centerIn){
9052             this.alignTo(centerIn || document, 'c-c');
9053             return this;
9054         },
9055
9056         /**
9057          * Tests various css rules/browsers to determine if this element uses a border box
9058          * @return {Boolean}
9059          */
9060         isBorderBox : function(){
9061             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9062         },
9063
9064         /**
9065          * Return a box {x, y, width, height} that can be used to set another elements
9066          * size/location to match this element.
9067          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9068          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9069          * @return {Object} box An object in the format {x, y, width, height}
9070          */
9071         getBox : function(contentBox, local){
9072             var xy;
9073             if(!local){
9074                 xy = this.getXY();
9075             }else{
9076                 var left = parseInt(this.getStyle("left"), 10) || 0;
9077                 var top = parseInt(this.getStyle("top"), 10) || 0;
9078                 xy = [left, top];
9079             }
9080             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9081             if(!contentBox){
9082                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9083             }else{
9084                 var l = this.getBorderWidth("l")+this.getPadding("l");
9085                 var r = this.getBorderWidth("r")+this.getPadding("r");
9086                 var t = this.getBorderWidth("t")+this.getPadding("t");
9087                 var b = this.getBorderWidth("b")+this.getPadding("b");
9088                 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)};
9089             }
9090             bx.right = bx.x + bx.width;
9091             bx.bottom = bx.y + bx.height;
9092             return bx;
9093         },
9094
9095         /**
9096          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9097          for more information about the sides.
9098          * @param {String} sides
9099          * @return {Number}
9100          */
9101         getFrameWidth : function(sides, onlyContentBox){
9102             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9103         },
9104
9105         /**
9106          * 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.
9107          * @param {Object} box The box to fill {x, y, width, height}
9108          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9109          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9110          * @return {Roo.Element} this
9111          */
9112         setBox : function(box, adjust, animate){
9113             var w = box.width, h = box.height;
9114             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9115                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9116                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9117             }
9118             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9119             return this;
9120         },
9121
9122         /**
9123          * Forces the browser to repaint this element
9124          * @return {Roo.Element} this
9125          */
9126          repaint : function(){
9127             var dom = this.dom;
9128             this.addClass("x-repaint");
9129             setTimeout(function(){
9130                 Roo.get(dom).removeClass("x-repaint");
9131             }, 1);
9132             return this;
9133         },
9134
9135         /**
9136          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9137          * then it returns the calculated width of the sides (see getPadding)
9138          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9139          * @return {Object/Number}
9140          */
9141         getMargins : function(side){
9142             if(!side){
9143                 return {
9144                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9145                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9146                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9147                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9148                 };
9149             }else{
9150                 return this.addStyles(side, El.margins);
9151              }
9152         },
9153
9154         // private
9155         addStyles : function(sides, styles){
9156             var val = 0, v, w;
9157             for(var i = 0, len = sides.length; i < len; i++){
9158                 v = this.getStyle(styles[sides.charAt(i)]);
9159                 if(v){
9160                      w = parseInt(v, 10);
9161                      if(w){ val += w; }
9162                 }
9163             }
9164             return val;
9165         },
9166
9167         /**
9168          * Creates a proxy element of this element
9169          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9170          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9171          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9172          * @return {Roo.Element} The new proxy element
9173          */
9174         createProxy : function(config, renderTo, matchBox){
9175             if(renderTo){
9176                 renderTo = Roo.getDom(renderTo);
9177             }else{
9178                 renderTo = document.body;
9179             }
9180             config = typeof config == "object" ?
9181                 config : {tag : "div", cls: config};
9182             var proxy = Roo.DomHelper.append(renderTo, config, true);
9183             if(matchBox){
9184                proxy.setBox(this.getBox());
9185             }
9186             return proxy;
9187         },
9188
9189         /**
9190          * Puts a mask over this element to disable user interaction. Requires core.css.
9191          * This method can only be applied to elements which accept child nodes.
9192          * @param {String} msg (optional) A message to display in the mask
9193          * @param {String} msgCls (optional) A css class to apply to the msg element
9194          * @return {Element} The mask  element
9195          */
9196         mask : function(msg, msgCls)
9197         {
9198             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9199                 this.setStyle("position", "relative");
9200             }
9201             if(!this._mask){
9202                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9203             }
9204             
9205             this.addClass("x-masked");
9206             this._mask.setDisplayed(true);
9207             
9208             // we wander
9209             var z = 0;
9210             var dom = this.dom;
9211             while (dom && dom.style) {
9212                 if (!isNaN(parseInt(dom.style.zIndex))) {
9213                     z = Math.max(z, parseInt(dom.style.zIndex));
9214                 }
9215                 dom = dom.parentNode;
9216             }
9217             // if we are masking the body - then it hides everything..
9218             if (this.dom == document.body) {
9219                 z = 1000000;
9220                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9221                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9222             }
9223            
9224             if(typeof msg == 'string'){
9225                 if(!this._maskMsg){
9226                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9227                         cls: "roo-el-mask-msg", 
9228                         cn: [
9229                             {
9230                                 tag: 'i',
9231                                 cls: 'fa fa-spinner fa-spin'
9232                             },
9233                             {
9234                                 tag: 'div'
9235                             }   
9236                         ]
9237                     }, true);
9238                 }
9239                 var mm = this._maskMsg;
9240                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9241                 if (mm.dom.lastChild) { // weird IE issue?
9242                     mm.dom.lastChild.innerHTML = msg;
9243                 }
9244                 mm.setDisplayed(true);
9245                 mm.center(this);
9246                 mm.setStyle('z-index', z + 102);
9247             }
9248             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9249                 this._mask.setHeight(this.getHeight());
9250             }
9251             this._mask.setStyle('z-index', z + 100);
9252             
9253             return this._mask;
9254         },
9255
9256         /**
9257          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9258          * it is cached for reuse.
9259          */
9260         unmask : function(removeEl){
9261             if(this._mask){
9262                 if(removeEl === true){
9263                     this._mask.remove();
9264                     delete this._mask;
9265                     if(this._maskMsg){
9266                         this._maskMsg.remove();
9267                         delete this._maskMsg;
9268                     }
9269                 }else{
9270                     this._mask.setDisplayed(false);
9271                     if(this._maskMsg){
9272                         this._maskMsg.setDisplayed(false);
9273                     }
9274                 }
9275             }
9276             this.removeClass("x-masked");
9277         },
9278
9279         /**
9280          * Returns true if this element is masked
9281          * @return {Boolean}
9282          */
9283         isMasked : function(){
9284             return this._mask && this._mask.isVisible();
9285         },
9286
9287         /**
9288          * Creates an iframe shim for this element to keep selects and other windowed objects from
9289          * showing through.
9290          * @return {Roo.Element} The new shim element
9291          */
9292         createShim : function(){
9293             var el = document.createElement('iframe');
9294             el.frameBorder = 'no';
9295             el.className = 'roo-shim';
9296             if(Roo.isIE && Roo.isSecure){
9297                 el.src = Roo.SSL_SECURE_URL;
9298             }
9299             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9300             shim.autoBoxAdjust = false;
9301             return shim;
9302         },
9303
9304         /**
9305          * Removes this element from the DOM and deletes it from the cache
9306          */
9307         remove : function(){
9308             if(this.dom.parentNode){
9309                 this.dom.parentNode.removeChild(this.dom);
9310             }
9311             delete El.cache[this.dom.id];
9312         },
9313
9314         /**
9315          * Sets up event handlers to add and remove a css class when the mouse is over this element
9316          * @param {String} className
9317          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9318          * mouseout events for children elements
9319          * @return {Roo.Element} this
9320          */
9321         addClassOnOver : function(className, preventFlicker){
9322             this.on("mouseover", function(){
9323                 Roo.fly(this, '_internal').addClass(className);
9324             }, this.dom);
9325             var removeFn = function(e){
9326                 if(preventFlicker !== true || !e.within(this, true)){
9327                     Roo.fly(this, '_internal').removeClass(className);
9328                 }
9329             };
9330             this.on("mouseout", removeFn, this.dom);
9331             return this;
9332         },
9333
9334         /**
9335          * Sets up event handlers to add and remove a css class when this element has the focus
9336          * @param {String} className
9337          * @return {Roo.Element} this
9338          */
9339         addClassOnFocus : function(className){
9340             this.on("focus", function(){
9341                 Roo.fly(this, '_internal').addClass(className);
9342             }, this.dom);
9343             this.on("blur", function(){
9344                 Roo.fly(this, '_internal').removeClass(className);
9345             }, this.dom);
9346             return this;
9347         },
9348         /**
9349          * 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)
9350          * @param {String} className
9351          * @return {Roo.Element} this
9352          */
9353         addClassOnClick : function(className){
9354             var dom = this.dom;
9355             this.on("mousedown", function(){
9356                 Roo.fly(dom, '_internal').addClass(className);
9357                 var d = Roo.get(document);
9358                 var fn = function(){
9359                     Roo.fly(dom, '_internal').removeClass(className);
9360                     d.removeListener("mouseup", fn);
9361                 };
9362                 d.on("mouseup", fn);
9363             });
9364             return this;
9365         },
9366
9367         /**
9368          * Stops the specified event from bubbling and optionally prevents the default action
9369          * @param {String} eventName
9370          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9371          * @return {Roo.Element} this
9372          */
9373         swallowEvent : function(eventName, preventDefault){
9374             var fn = function(e){
9375                 e.stopPropagation();
9376                 if(preventDefault){
9377                     e.preventDefault();
9378                 }
9379             };
9380             if(eventName instanceof Array){
9381                 for(var i = 0, len = eventName.length; i < len; i++){
9382                      this.on(eventName[i], fn);
9383                 }
9384                 return this;
9385             }
9386             this.on(eventName, fn);
9387             return this;
9388         },
9389
9390         /**
9391          * @private
9392          */
9393         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9394
9395         /**
9396          * Sizes this element to its parent element's dimensions performing
9397          * neccessary box adjustments.
9398          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9399          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9400          * @return {Roo.Element} this
9401          */
9402         fitToParent : function(monitorResize, targetParent) {
9403           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9404           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9405           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9406             return;
9407           }
9408           var p = Roo.get(targetParent || this.dom.parentNode);
9409           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9410           if (monitorResize === true) {
9411             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9412             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9413           }
9414           return this;
9415         },
9416
9417         /**
9418          * Gets the next sibling, skipping text nodes
9419          * @return {HTMLElement} The next sibling or null
9420          */
9421         getNextSibling : function(){
9422             var n = this.dom.nextSibling;
9423             while(n && n.nodeType != 1){
9424                 n = n.nextSibling;
9425             }
9426             return n;
9427         },
9428
9429         /**
9430          * Gets the previous sibling, skipping text nodes
9431          * @return {HTMLElement} The previous sibling or null
9432          */
9433         getPrevSibling : function(){
9434             var n = this.dom.previousSibling;
9435             while(n && n.nodeType != 1){
9436                 n = n.previousSibling;
9437             }
9438             return n;
9439         },
9440
9441
9442         /**
9443          * Appends the passed element(s) to this element
9444          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9445          * @return {Roo.Element} this
9446          */
9447         appendChild: function(el){
9448             el = Roo.get(el);
9449             el.appendTo(this);
9450             return this;
9451         },
9452
9453         /**
9454          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9455          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9456          * automatically generated with the specified attributes.
9457          * @param {HTMLElement} insertBefore (optional) a child element of this element
9458          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9459          * @return {Roo.Element} The new child element
9460          */
9461         createChild: function(config, insertBefore, returnDom){
9462             config = config || {tag:'div'};
9463             if(insertBefore){
9464                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9465             }
9466             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9467         },
9468
9469         /**
9470          * Appends this element to the passed element
9471          * @param {String/HTMLElement/Element} el The new parent element
9472          * @return {Roo.Element} this
9473          */
9474         appendTo: function(el){
9475             el = Roo.getDom(el);
9476             el.appendChild(this.dom);
9477             return this;
9478         },
9479
9480         /**
9481          * Inserts this element before the passed element in the DOM
9482          * @param {String/HTMLElement/Element} el The element to insert before
9483          * @return {Roo.Element} this
9484          */
9485         insertBefore: function(el){
9486             el = Roo.getDom(el);
9487             el.parentNode.insertBefore(this.dom, el);
9488             return this;
9489         },
9490
9491         /**
9492          * Inserts this element after the passed element in the DOM
9493          * @param {String/HTMLElement/Element} el The element to insert after
9494          * @return {Roo.Element} this
9495          */
9496         insertAfter: function(el){
9497             el = Roo.getDom(el);
9498             el.parentNode.insertBefore(this.dom, el.nextSibling);
9499             return this;
9500         },
9501
9502         /**
9503          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9504          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9505          * @return {Roo.Element} The new child
9506          */
9507         insertFirst: function(el, returnDom){
9508             el = el || {};
9509             if(typeof el == 'object' && !el.nodeType){ // dh config
9510                 return this.createChild(el, this.dom.firstChild, returnDom);
9511             }else{
9512                 el = Roo.getDom(el);
9513                 this.dom.insertBefore(el, this.dom.firstChild);
9514                 return !returnDom ? Roo.get(el) : el;
9515             }
9516         },
9517
9518         /**
9519          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9520          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9521          * @param {String} where (optional) 'before' or 'after' defaults to before
9522          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9523          * @return {Roo.Element} the inserted Element
9524          */
9525         insertSibling: function(el, where, returnDom){
9526             where = where ? where.toLowerCase() : 'before';
9527             el = el || {};
9528             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9529
9530             if(typeof el == 'object' && !el.nodeType){ // dh config
9531                 if(where == 'after' && !this.dom.nextSibling){
9532                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9533                 }else{
9534                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9535                 }
9536
9537             }else{
9538                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9539                             where == 'before' ? this.dom : this.dom.nextSibling);
9540                 if(!returnDom){
9541                     rt = Roo.get(rt);
9542                 }
9543             }
9544             return rt;
9545         },
9546
9547         /**
9548          * Creates and wraps this element with another element
9549          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9550          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9551          * @return {HTMLElement/Element} The newly created wrapper element
9552          */
9553         wrap: function(config, returnDom){
9554             if(!config){
9555                 config = {tag: "div"};
9556             }
9557             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9558             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9559             return newEl;
9560         },
9561
9562         /**
9563          * Replaces the passed element with this element
9564          * @param {String/HTMLElement/Element} el The element to replace
9565          * @return {Roo.Element} this
9566          */
9567         replace: function(el){
9568             el = Roo.get(el);
9569             this.insertBefore(el);
9570             el.remove();
9571             return this;
9572         },
9573
9574         /**
9575          * Inserts an html fragment into this element
9576          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9577          * @param {String} html The HTML fragment
9578          * @param {Boolean} returnEl True to return an Roo.Element
9579          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9580          */
9581         insertHtml : function(where, html, returnEl){
9582             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9583             return returnEl ? Roo.get(el) : el;
9584         },
9585
9586         /**
9587          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9588          * @param {Object} o The object with the attributes
9589          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9590          * @return {Roo.Element} this
9591          */
9592         set : function(o, useSet){
9593             var el = this.dom;
9594             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9595             for(var attr in o){
9596                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9597                 if(attr=="cls"){
9598                     el.className = o["cls"];
9599                 }else{
9600                     if(useSet) {
9601                         el.setAttribute(attr, o[attr]);
9602                     } else {
9603                         el[attr] = o[attr];
9604                     }
9605                 }
9606             }
9607             if(o.style){
9608                 Roo.DomHelper.applyStyles(el, o.style);
9609             }
9610             return this;
9611         },
9612
9613         /**
9614          * Convenience method for constructing a KeyMap
9615          * @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:
9616          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9617          * @param {Function} fn The function to call
9618          * @param {Object} scope (optional) The scope of the function
9619          * @return {Roo.KeyMap} The KeyMap created
9620          */
9621         addKeyListener : function(key, fn, scope){
9622             var config;
9623             if(typeof key != "object" || key instanceof Array){
9624                 config = {
9625                     key: key,
9626                     fn: fn,
9627                     scope: scope
9628                 };
9629             }else{
9630                 config = {
9631                     key : key.key,
9632                     shift : key.shift,
9633                     ctrl : key.ctrl,
9634                     alt : key.alt,
9635                     fn: fn,
9636                     scope: scope
9637                 };
9638             }
9639             return new Roo.KeyMap(this, config);
9640         },
9641
9642         /**
9643          * Creates a KeyMap for this element
9644          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9645          * @return {Roo.KeyMap} The KeyMap created
9646          */
9647         addKeyMap : function(config){
9648             return new Roo.KeyMap(this, config);
9649         },
9650
9651         /**
9652          * Returns true if this element is scrollable.
9653          * @return {Boolean}
9654          */
9655          isScrollable : function(){
9656             var dom = this.dom;
9657             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9658         },
9659
9660         /**
9661          * 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().
9662          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9663          * @param {Number} value The new scroll value
9664          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9665          * @return {Element} this
9666          */
9667
9668         scrollTo : function(side, value, animate){
9669             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9670             if(!animate || !A){
9671                 this.dom[prop] = value;
9672             }else{
9673                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9674                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9675             }
9676             return this;
9677         },
9678
9679         /**
9680          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9681          * within this element's scrollable range.
9682          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9683          * @param {Number} distance How far to scroll the element in pixels
9684          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9685          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9686          * was scrolled as far as it could go.
9687          */
9688          scroll : function(direction, distance, animate){
9689              if(!this.isScrollable()){
9690                  return;
9691              }
9692              var el = this.dom;
9693              var l = el.scrollLeft, t = el.scrollTop;
9694              var w = el.scrollWidth, h = el.scrollHeight;
9695              var cw = el.clientWidth, ch = el.clientHeight;
9696              direction = direction.toLowerCase();
9697              var scrolled = false;
9698              var a = this.preanim(arguments, 2);
9699              switch(direction){
9700                  case "l":
9701                  case "left":
9702                      if(w - l > cw){
9703                          var v = Math.min(l + distance, w-cw);
9704                          this.scrollTo("left", v, a);
9705                          scrolled = true;
9706                      }
9707                      break;
9708                 case "r":
9709                 case "right":
9710                      if(l > 0){
9711                          var v = Math.max(l - distance, 0);
9712                          this.scrollTo("left", v, a);
9713                          scrolled = true;
9714                      }
9715                      break;
9716                 case "t":
9717                 case "top":
9718                 case "up":
9719                      if(t > 0){
9720                          var v = Math.max(t - distance, 0);
9721                          this.scrollTo("top", v, a);
9722                          scrolled = true;
9723                      }
9724                      break;
9725                 case "b":
9726                 case "bottom":
9727                 case "down":
9728                      if(h - t > ch){
9729                          var v = Math.min(t + distance, h-ch);
9730                          this.scrollTo("top", v, a);
9731                          scrolled = true;
9732                      }
9733                      break;
9734              }
9735              return scrolled;
9736         },
9737
9738         /**
9739          * Translates the passed page coordinates into left/top css values for this element
9740          * @param {Number/Array} x The page x or an array containing [x, y]
9741          * @param {Number} y The page y
9742          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9743          */
9744         translatePoints : function(x, y){
9745             if(typeof x == 'object' || x instanceof Array){
9746                 y = x[1]; x = x[0];
9747             }
9748             var p = this.getStyle('position');
9749             var o = this.getXY();
9750
9751             var l = parseInt(this.getStyle('left'), 10);
9752             var t = parseInt(this.getStyle('top'), 10);
9753
9754             if(isNaN(l)){
9755                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9756             }
9757             if(isNaN(t)){
9758                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9759             }
9760
9761             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9762         },
9763
9764         /**
9765          * Returns the current scroll position of the element.
9766          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9767          */
9768         getScroll : function(){
9769             var d = this.dom, doc = document;
9770             if(d == doc || d == doc.body){
9771                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9772                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9773                 return {left: l, top: t};
9774             }else{
9775                 return {left: d.scrollLeft, top: d.scrollTop};
9776             }
9777         },
9778
9779         /**
9780          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9781          * are convert to standard 6 digit hex color.
9782          * @param {String} attr The css attribute
9783          * @param {String} defaultValue The default value to use when a valid color isn't found
9784          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9785          * YUI color anims.
9786          */
9787         getColor : function(attr, defaultValue, prefix){
9788             var v = this.getStyle(attr);
9789             if(!v || v == "transparent" || v == "inherit") {
9790                 return defaultValue;
9791             }
9792             var color = typeof prefix == "undefined" ? "#" : prefix;
9793             if(v.substr(0, 4) == "rgb("){
9794                 var rvs = v.slice(4, v.length -1).split(",");
9795                 for(var i = 0; i < 3; i++){
9796                     var h = parseInt(rvs[i]).toString(16);
9797                     if(h < 16){
9798                         h = "0" + h;
9799                     }
9800                     color += h;
9801                 }
9802             } else {
9803                 if(v.substr(0, 1) == "#"){
9804                     if(v.length == 4) {
9805                         for(var i = 1; i < 4; i++){
9806                             var c = v.charAt(i);
9807                             color +=  c + c;
9808                         }
9809                     }else if(v.length == 7){
9810                         color += v.substr(1);
9811                     }
9812                 }
9813             }
9814             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9815         },
9816
9817         /**
9818          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9819          * gradient background, rounded corners and a 4-way shadow.
9820          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9821          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9822          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9823          * @return {Roo.Element} this
9824          */
9825         boxWrap : function(cls){
9826             cls = cls || 'x-box';
9827             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9828             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9829             return el;
9830         },
9831
9832         /**
9833          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9834          * @param {String} namespace The namespace in which to look for the attribute
9835          * @param {String} name The attribute name
9836          * @return {String} The attribute value
9837          */
9838         getAttributeNS : Roo.isIE ? function(ns, name){
9839             var d = this.dom;
9840             var type = typeof d[ns+":"+name];
9841             if(type != 'undefined' && type != 'unknown'){
9842                 return d[ns+":"+name];
9843             }
9844             return d[name];
9845         } : function(ns, name){
9846             var d = this.dom;
9847             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9848         },
9849         
9850         
9851         /**
9852          * Sets or Returns the value the dom attribute value
9853          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9854          * @param {String} value (optional) The value to set the attribute to
9855          * @return {String} The attribute value
9856          */
9857         attr : function(name){
9858             if (arguments.length > 1) {
9859                 this.dom.setAttribute(name, arguments[1]);
9860                 return arguments[1];
9861             }
9862             if (typeof(name) == 'object') {
9863                 for(var i in name) {
9864                     this.attr(i, name[i]);
9865                 }
9866                 return name;
9867             }
9868             
9869             
9870             if (!this.dom.hasAttribute(name)) {
9871                 return undefined;
9872             }
9873             return this.dom.getAttribute(name);
9874         }
9875         
9876         
9877         
9878     };
9879
9880     var ep = El.prototype;
9881
9882     /**
9883      * Appends an event handler (Shorthand for addListener)
9884      * @param {String}   eventName     The type of event to append
9885      * @param {Function} fn        The method the event invokes
9886      * @param {Object} scope       (optional) The scope (this object) of the fn
9887      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9888      * @method
9889      */
9890     ep.on = ep.addListener;
9891         // backwards compat
9892     ep.mon = ep.addListener;
9893
9894     /**
9895      * Removes an event handler from this element (shorthand for removeListener)
9896      * @param {String} eventName the type of event to remove
9897      * @param {Function} fn the method the event invokes
9898      * @return {Roo.Element} this
9899      * @method
9900      */
9901     ep.un = ep.removeListener;
9902
9903     /**
9904      * true to automatically adjust width and height settings for box-model issues (default to true)
9905      */
9906     ep.autoBoxAdjust = true;
9907
9908     // private
9909     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9910
9911     // private
9912     El.addUnits = function(v, defaultUnit){
9913         if(v === "" || v == "auto"){
9914             return v;
9915         }
9916         if(v === undefined){
9917             return '';
9918         }
9919         if(typeof v == "number" || !El.unitPattern.test(v)){
9920             return v + (defaultUnit || 'px');
9921         }
9922         return v;
9923     };
9924
9925     // special markup used throughout Roo when box wrapping elements
9926     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>';
9927     /**
9928      * Visibility mode constant - Use visibility to hide element
9929      * @static
9930      * @type Number
9931      */
9932     El.VISIBILITY = 1;
9933     /**
9934      * Visibility mode constant - Use display to hide element
9935      * @static
9936      * @type Number
9937      */
9938     El.DISPLAY = 2;
9939
9940     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9941     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9942     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9943
9944
9945
9946     /**
9947      * @private
9948      */
9949     El.cache = {};
9950
9951     var docEl;
9952
9953     /**
9954      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9955      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9956      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9957      * @return {Element} The Element object
9958      * @static
9959      */
9960     El.get = function(el){
9961         var ex, elm, id;
9962         if(!el){ return null; }
9963         if(typeof el == "string"){ // element id
9964             if(!(elm = document.getElementById(el))){
9965                 return null;
9966             }
9967             if(ex = El.cache[el]){
9968                 ex.dom = elm;
9969             }else{
9970                 ex = El.cache[el] = new El(elm);
9971             }
9972             return ex;
9973         }else if(el.tagName){ // dom element
9974             if(!(id = el.id)){
9975                 id = Roo.id(el);
9976             }
9977             if(ex = El.cache[id]){
9978                 ex.dom = el;
9979             }else{
9980                 ex = El.cache[id] = new El(el);
9981             }
9982             return ex;
9983         }else if(el instanceof El){
9984             if(el != docEl){
9985                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9986                                                               // catch case where it hasn't been appended
9987                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9988             }
9989             return el;
9990         }else if(el.isComposite){
9991             return el;
9992         }else if(el instanceof Array){
9993             return El.select(el);
9994         }else if(el == document){
9995             // create a bogus element object representing the document object
9996             if(!docEl){
9997                 var f = function(){};
9998                 f.prototype = El.prototype;
9999                 docEl = new f();
10000                 docEl.dom = document;
10001             }
10002             return docEl;
10003         }
10004         return null;
10005     };
10006
10007     // private
10008     El.uncache = function(el){
10009         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10010             if(a[i]){
10011                 delete El.cache[a[i].id || a[i]];
10012             }
10013         }
10014     };
10015
10016     // private
10017     // Garbage collection - uncache elements/purge listeners on orphaned elements
10018     // so we don't hold a reference and cause the browser to retain them
10019     El.garbageCollect = function(){
10020         if(!Roo.enableGarbageCollector){
10021             clearInterval(El.collectorThread);
10022             return;
10023         }
10024         for(var eid in El.cache){
10025             var el = El.cache[eid], d = el.dom;
10026             // -------------------------------------------------------
10027             // Determining what is garbage:
10028             // -------------------------------------------------------
10029             // !d
10030             // dom node is null, definitely garbage
10031             // -------------------------------------------------------
10032             // !d.parentNode
10033             // no parentNode == direct orphan, definitely garbage
10034             // -------------------------------------------------------
10035             // !d.offsetParent && !document.getElementById(eid)
10036             // display none elements have no offsetParent so we will
10037             // also try to look it up by it's id. However, check
10038             // offsetParent first so we don't do unneeded lookups.
10039             // This enables collection of elements that are not orphans
10040             // directly, but somewhere up the line they have an orphan
10041             // parent.
10042             // -------------------------------------------------------
10043             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10044                 delete El.cache[eid];
10045                 if(d && Roo.enableListenerCollection){
10046                     E.purgeElement(d);
10047                 }
10048             }
10049         }
10050     }
10051     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10052
10053
10054     // dom is optional
10055     El.Flyweight = function(dom){
10056         this.dom = dom;
10057     };
10058     El.Flyweight.prototype = El.prototype;
10059
10060     El._flyweights = {};
10061     /**
10062      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10063      * the dom node can be overwritten by other code.
10064      * @param {String/HTMLElement} el The dom node or id
10065      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10066      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10067      * @static
10068      * @return {Element} The shared Element object
10069      */
10070     El.fly = function(el, named){
10071         named = named || '_global';
10072         el = Roo.getDom(el);
10073         if(!el){
10074             return null;
10075         }
10076         if(!El._flyweights[named]){
10077             El._flyweights[named] = new El.Flyweight();
10078         }
10079         El._flyweights[named].dom = el;
10080         return El._flyweights[named];
10081     };
10082
10083     /**
10084      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10085      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10086      * Shorthand of {@link Roo.Element#get}
10087      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10088      * @return {Element} The Element object
10089      * @member Roo
10090      * @method get
10091      */
10092     Roo.get = El.get;
10093     /**
10094      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10095      * the dom node can be overwritten by other code.
10096      * Shorthand of {@link Roo.Element#fly}
10097      * @param {String/HTMLElement} el The dom node or id
10098      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10099      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10100      * @static
10101      * @return {Element} The shared Element object
10102      * @member Roo
10103      * @method fly
10104      */
10105     Roo.fly = El.fly;
10106
10107     // speedy lookup for elements never to box adjust
10108     var noBoxAdjust = Roo.isStrict ? {
10109         select:1
10110     } : {
10111         input:1, select:1, textarea:1
10112     };
10113     if(Roo.isIE || Roo.isGecko){
10114         noBoxAdjust['button'] = 1;
10115     }
10116
10117
10118     Roo.EventManager.on(window, 'unload', function(){
10119         delete El.cache;
10120         delete El._flyweights;
10121     });
10122 })();
10123
10124
10125
10126
10127 if(Roo.DomQuery){
10128     Roo.Element.selectorFunction = Roo.DomQuery.select;
10129 }
10130
10131 Roo.Element.select = function(selector, unique, root){
10132     var els;
10133     if(typeof selector == "string"){
10134         els = Roo.Element.selectorFunction(selector, root);
10135     }else if(selector.length !== undefined){
10136         els = selector;
10137     }else{
10138         throw "Invalid selector";
10139     }
10140     if(unique === true){
10141         return new Roo.CompositeElement(els);
10142     }else{
10143         return new Roo.CompositeElementLite(els);
10144     }
10145 };
10146 /**
10147  * Selects elements based on the passed CSS selector to enable working on them as 1.
10148  * @param {String/Array} selector The CSS selector or an array of elements
10149  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10150  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10151  * @return {CompositeElementLite/CompositeElement}
10152  * @member Roo
10153  * @method select
10154  */
10155 Roo.select = Roo.Element.select;
10156
10157
10158
10159
10160
10161
10162
10163
10164
10165
10166
10167
10168
10169
10170 /*
10171  * Based on:
10172  * Ext JS Library 1.1.1
10173  * Copyright(c) 2006-2007, Ext JS, LLC.
10174  *
10175  * Originally Released Under LGPL - original licence link has changed is not relivant.
10176  *
10177  * Fork - LGPL
10178  * <script type="text/javascript">
10179  */
10180
10181
10182
10183 //Notifies Element that fx methods are available
10184 Roo.enableFx = true;
10185
10186 /**
10187  * @class Roo.Fx
10188  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10189  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10190  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10191  * Element effects to work.</p><br/>
10192  *
10193  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10194  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10195  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10196  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10197  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10198  * expected results and should be done with care.</p><br/>
10199  *
10200  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10201  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10202 <pre>
10203 Value  Description
10204 -----  -----------------------------
10205 tl     The top left corner
10206 t      The center of the top edge
10207 tr     The top right corner
10208 l      The center of the left edge
10209 r      The center of the right edge
10210 bl     The bottom left corner
10211 b      The center of the bottom edge
10212 br     The bottom right corner
10213 </pre>
10214  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10215  * below are common options that can be passed to any Fx method.</b>
10216  * @cfg {Function} callback A function called when the effect is finished
10217  * @cfg {Object} scope The scope of the effect function
10218  * @cfg {String} easing A valid Easing value for the effect
10219  * @cfg {String} afterCls A css class to apply after the effect
10220  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10221  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10222  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10223  * effects that end with the element being visually hidden, ignored otherwise)
10224  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10225  * a function which returns such a specification that will be applied to the Element after the effect finishes
10226  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10227  * @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
10228  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10229  */
10230 Roo.Fx = {
10231         /**
10232          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10233          * origin for the slide effect.  This function automatically handles wrapping the element with
10234          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10235          * Usage:
10236          *<pre><code>
10237 // default: slide the element in from the top
10238 el.slideIn();
10239
10240 // custom: slide the element in from the right with a 2-second duration
10241 el.slideIn('r', { duration: 2 });
10242
10243 // common config options shown with default values
10244 el.slideIn('t', {
10245     easing: 'easeOut',
10246     duration: .5
10247 });
10248 </code></pre>
10249          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10250          * @param {Object} options (optional) Object literal with any of the Fx config options
10251          * @return {Roo.Element} The Element
10252          */
10253     slideIn : function(anchor, o){
10254         var el = this.getFxEl();
10255         o = o || {};
10256
10257         el.queueFx(o, function(){
10258
10259             anchor = anchor || "t";
10260
10261             // fix display to visibility
10262             this.fixDisplay();
10263
10264             // restore values after effect
10265             var r = this.getFxRestore();
10266             var b = this.getBox();
10267             // fixed size for slide
10268             this.setSize(b);
10269
10270             // wrap if needed
10271             var wrap = this.fxWrap(r.pos, o, "hidden");
10272
10273             var st = this.dom.style;
10274             st.visibility = "visible";
10275             st.position = "absolute";
10276
10277             // clear out temp styles after slide and unwrap
10278             var after = function(){
10279                 el.fxUnwrap(wrap, r.pos, o);
10280                 st.width = r.width;
10281                 st.height = r.height;
10282                 el.afterFx(o);
10283             };
10284             // time to calc the positions
10285             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10286
10287             switch(anchor.toLowerCase()){
10288                 case "t":
10289                     wrap.setSize(b.width, 0);
10290                     st.left = st.bottom = "0";
10291                     a = {height: bh};
10292                 break;
10293                 case "l":
10294                     wrap.setSize(0, b.height);
10295                     st.right = st.top = "0";
10296                     a = {width: bw};
10297                 break;
10298                 case "r":
10299                     wrap.setSize(0, b.height);
10300                     wrap.setX(b.right);
10301                     st.left = st.top = "0";
10302                     a = {width: bw, points: pt};
10303                 break;
10304                 case "b":
10305                     wrap.setSize(b.width, 0);
10306                     wrap.setY(b.bottom);
10307                     st.left = st.top = "0";
10308                     a = {height: bh, points: pt};
10309                 break;
10310                 case "tl":
10311                     wrap.setSize(0, 0);
10312                     st.right = st.bottom = "0";
10313                     a = {width: bw, height: bh};
10314                 break;
10315                 case "bl":
10316                     wrap.setSize(0, 0);
10317                     wrap.setY(b.y+b.height);
10318                     st.right = st.top = "0";
10319                     a = {width: bw, height: bh, points: pt};
10320                 break;
10321                 case "br":
10322                     wrap.setSize(0, 0);
10323                     wrap.setXY([b.right, b.bottom]);
10324                     st.left = st.top = "0";
10325                     a = {width: bw, height: bh, points: pt};
10326                 break;
10327                 case "tr":
10328                     wrap.setSize(0, 0);
10329                     wrap.setX(b.x+b.width);
10330                     st.left = st.bottom = "0";
10331                     a = {width: bw, height: bh, points: pt};
10332                 break;
10333             }
10334             this.dom.style.visibility = "visible";
10335             wrap.show();
10336
10337             arguments.callee.anim = wrap.fxanim(a,
10338                 o,
10339                 'motion',
10340                 .5,
10341                 'easeOut', after);
10342         });
10343         return this;
10344     },
10345     
10346         /**
10347          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10348          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10349          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10350          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10351          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10352          * Usage:
10353          *<pre><code>
10354 // default: slide the element out to the top
10355 el.slideOut();
10356
10357 // custom: slide the element out to the right with a 2-second duration
10358 el.slideOut('r', { duration: 2 });
10359
10360 // common config options shown with default values
10361 el.slideOut('t', {
10362     easing: 'easeOut',
10363     duration: .5,
10364     remove: false,
10365     useDisplay: false
10366 });
10367 </code></pre>
10368          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10369          * @param {Object} options (optional) Object literal with any of the Fx config options
10370          * @return {Roo.Element} The Element
10371          */
10372     slideOut : function(anchor, o){
10373         var el = this.getFxEl();
10374         o = o || {};
10375
10376         el.queueFx(o, function(){
10377
10378             anchor = anchor || "t";
10379
10380             // restore values after effect
10381             var r = this.getFxRestore();
10382             
10383             var b = this.getBox();
10384             // fixed size for slide
10385             this.setSize(b);
10386
10387             // wrap if needed
10388             var wrap = this.fxWrap(r.pos, o, "visible");
10389
10390             var st = this.dom.style;
10391             st.visibility = "visible";
10392             st.position = "absolute";
10393
10394             wrap.setSize(b);
10395
10396             var after = function(){
10397                 if(o.useDisplay){
10398                     el.setDisplayed(false);
10399                 }else{
10400                     el.hide();
10401                 }
10402
10403                 el.fxUnwrap(wrap, r.pos, o);
10404
10405                 st.width = r.width;
10406                 st.height = r.height;
10407
10408                 el.afterFx(o);
10409             };
10410
10411             var a, zero = {to: 0};
10412             switch(anchor.toLowerCase()){
10413                 case "t":
10414                     st.left = st.bottom = "0";
10415                     a = {height: zero};
10416                 break;
10417                 case "l":
10418                     st.right = st.top = "0";
10419                     a = {width: zero};
10420                 break;
10421                 case "r":
10422                     st.left = st.top = "0";
10423                     a = {width: zero, points: {to:[b.right, b.y]}};
10424                 break;
10425                 case "b":
10426                     st.left = st.top = "0";
10427                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10428                 break;
10429                 case "tl":
10430                     st.right = st.bottom = "0";
10431                     a = {width: zero, height: zero};
10432                 break;
10433                 case "bl":
10434                     st.right = st.top = "0";
10435                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10436                 break;
10437                 case "br":
10438                     st.left = st.top = "0";
10439                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10440                 break;
10441                 case "tr":
10442                     st.left = st.bottom = "0";
10443                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10444                 break;
10445             }
10446
10447             arguments.callee.anim = wrap.fxanim(a,
10448                 o,
10449                 'motion',
10450                 .5,
10451                 "easeOut", after);
10452         });
10453         return this;
10454     },
10455
10456         /**
10457          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10458          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10459          * The element must be removed from the DOM using the 'remove' config option if desired.
10460          * Usage:
10461          *<pre><code>
10462 // default
10463 el.puff();
10464
10465 // common config options shown with default values
10466 el.puff({
10467     easing: 'easeOut',
10468     duration: .5,
10469     remove: false,
10470     useDisplay: false
10471 });
10472 </code></pre>
10473          * @param {Object} options (optional) Object literal with any of the Fx config options
10474          * @return {Roo.Element} The Element
10475          */
10476     puff : function(o){
10477         var el = this.getFxEl();
10478         o = o || {};
10479
10480         el.queueFx(o, function(){
10481             this.clearOpacity();
10482             this.show();
10483
10484             // restore values after effect
10485             var r = this.getFxRestore();
10486             var st = this.dom.style;
10487
10488             var after = function(){
10489                 if(o.useDisplay){
10490                     el.setDisplayed(false);
10491                 }else{
10492                     el.hide();
10493                 }
10494
10495                 el.clearOpacity();
10496
10497                 el.setPositioning(r.pos);
10498                 st.width = r.width;
10499                 st.height = r.height;
10500                 st.fontSize = '';
10501                 el.afterFx(o);
10502             };
10503
10504             var width = this.getWidth();
10505             var height = this.getHeight();
10506
10507             arguments.callee.anim = this.fxanim({
10508                     width : {to: this.adjustWidth(width * 2)},
10509                     height : {to: this.adjustHeight(height * 2)},
10510                     points : {by: [-(width * .5), -(height * .5)]},
10511                     opacity : {to: 0},
10512                     fontSize: {to:200, unit: "%"}
10513                 },
10514                 o,
10515                 'motion',
10516                 .5,
10517                 "easeOut", after);
10518         });
10519         return this;
10520     },
10521
10522         /**
10523          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10524          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10525          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10526          * Usage:
10527          *<pre><code>
10528 // default
10529 el.switchOff();
10530
10531 // all config options shown with default values
10532 el.switchOff({
10533     easing: 'easeIn',
10534     duration: .3,
10535     remove: false,
10536     useDisplay: false
10537 });
10538 </code></pre>
10539          * @param {Object} options (optional) Object literal with any of the Fx config options
10540          * @return {Roo.Element} The Element
10541          */
10542     switchOff : function(o){
10543         var el = this.getFxEl();
10544         o = o || {};
10545
10546         el.queueFx(o, function(){
10547             this.clearOpacity();
10548             this.clip();
10549
10550             // restore values after effect
10551             var r = this.getFxRestore();
10552             var st = this.dom.style;
10553
10554             var after = function(){
10555                 if(o.useDisplay){
10556                     el.setDisplayed(false);
10557                 }else{
10558                     el.hide();
10559                 }
10560
10561                 el.clearOpacity();
10562                 el.setPositioning(r.pos);
10563                 st.width = r.width;
10564                 st.height = r.height;
10565
10566                 el.afterFx(o);
10567             };
10568
10569             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10570                 this.clearOpacity();
10571                 (function(){
10572                     this.fxanim({
10573                         height:{to:1},
10574                         points:{by:[0, this.getHeight() * .5]}
10575                     }, o, 'motion', 0.3, 'easeIn', after);
10576                 }).defer(100, this);
10577             });
10578         });
10579         return this;
10580     },
10581
10582     /**
10583      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10584      * changed using the "attr" config option) and then fading back to the original color. If no original
10585      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10586      * Usage:
10587 <pre><code>
10588 // default: highlight background to yellow
10589 el.highlight();
10590
10591 // custom: highlight foreground text to blue for 2 seconds
10592 el.highlight("0000ff", { attr: 'color', duration: 2 });
10593
10594 // common config options shown with default values
10595 el.highlight("ffff9c", {
10596     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10597     endColor: (current color) or "ffffff",
10598     easing: 'easeIn',
10599     duration: 1
10600 });
10601 </code></pre>
10602      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10603      * @param {Object} options (optional) Object literal with any of the Fx config options
10604      * @return {Roo.Element} The Element
10605      */ 
10606     highlight : function(color, o){
10607         var el = this.getFxEl();
10608         o = o || {};
10609
10610         el.queueFx(o, function(){
10611             color = color || "ffff9c";
10612             attr = o.attr || "backgroundColor";
10613
10614             this.clearOpacity();
10615             this.show();
10616
10617             var origColor = this.getColor(attr);
10618             var restoreColor = this.dom.style[attr];
10619             endColor = (o.endColor || origColor) || "ffffff";
10620
10621             var after = function(){
10622                 el.dom.style[attr] = restoreColor;
10623                 el.afterFx(o);
10624             };
10625
10626             var a = {};
10627             a[attr] = {from: color, to: endColor};
10628             arguments.callee.anim = this.fxanim(a,
10629                 o,
10630                 'color',
10631                 1,
10632                 'easeIn', after);
10633         });
10634         return this;
10635     },
10636
10637    /**
10638     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10639     * Usage:
10640 <pre><code>
10641 // default: a single light blue ripple
10642 el.frame();
10643
10644 // custom: 3 red ripples lasting 3 seconds total
10645 el.frame("ff0000", 3, { duration: 3 });
10646
10647 // common config options shown with default values
10648 el.frame("C3DAF9", 1, {
10649     duration: 1 //duration of entire animation (not each individual ripple)
10650     // Note: Easing is not configurable and will be ignored if included
10651 });
10652 </code></pre>
10653     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10654     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10655     * @param {Object} options (optional) Object literal with any of the Fx config options
10656     * @return {Roo.Element} The Element
10657     */
10658     frame : function(color, count, o){
10659         var el = this.getFxEl();
10660         o = o || {};
10661
10662         el.queueFx(o, function(){
10663             color = color || "#C3DAF9";
10664             if(color.length == 6){
10665                 color = "#" + color;
10666             }
10667             count = count || 1;
10668             duration = o.duration || 1;
10669             this.show();
10670
10671             var b = this.getBox();
10672             var animFn = function(){
10673                 var proxy = this.createProxy({
10674
10675                      style:{
10676                         visbility:"hidden",
10677                         position:"absolute",
10678                         "z-index":"35000", // yee haw
10679                         border:"0px solid " + color
10680                      }
10681                   });
10682                 var scale = Roo.isBorderBox ? 2 : 1;
10683                 proxy.animate({
10684                     top:{from:b.y, to:b.y - 20},
10685                     left:{from:b.x, to:b.x - 20},
10686                     borderWidth:{from:0, to:10},
10687                     opacity:{from:1, to:0},
10688                     height:{from:b.height, to:(b.height + (20*scale))},
10689                     width:{from:b.width, to:(b.width + (20*scale))}
10690                 }, duration, function(){
10691                     proxy.remove();
10692                 });
10693                 if(--count > 0){
10694                      animFn.defer((duration/2)*1000, this);
10695                 }else{
10696                     el.afterFx(o);
10697                 }
10698             };
10699             animFn.call(this);
10700         });
10701         return this;
10702     },
10703
10704    /**
10705     * Creates a pause before any subsequent queued effects begin.  If there are
10706     * no effects queued after the pause it will have no effect.
10707     * Usage:
10708 <pre><code>
10709 el.pause(1);
10710 </code></pre>
10711     * @param {Number} seconds The length of time to pause (in seconds)
10712     * @return {Roo.Element} The Element
10713     */
10714     pause : function(seconds){
10715         var el = this.getFxEl();
10716         var o = {};
10717
10718         el.queueFx(o, function(){
10719             setTimeout(function(){
10720                 el.afterFx(o);
10721             }, seconds * 1000);
10722         });
10723         return this;
10724     },
10725
10726    /**
10727     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10728     * using the "endOpacity" config option.
10729     * Usage:
10730 <pre><code>
10731 // default: fade in from opacity 0 to 100%
10732 el.fadeIn();
10733
10734 // custom: fade in from opacity 0 to 75% over 2 seconds
10735 el.fadeIn({ endOpacity: .75, duration: 2});
10736
10737 // common config options shown with default values
10738 el.fadeIn({
10739     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10740     easing: 'easeOut',
10741     duration: .5
10742 });
10743 </code></pre>
10744     * @param {Object} options (optional) Object literal with any of the Fx config options
10745     * @return {Roo.Element} The Element
10746     */
10747     fadeIn : function(o){
10748         var el = this.getFxEl();
10749         o = o || {};
10750         el.queueFx(o, function(){
10751             this.setOpacity(0);
10752             this.fixDisplay();
10753             this.dom.style.visibility = 'visible';
10754             var to = o.endOpacity || 1;
10755             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10756                 o, null, .5, "easeOut", function(){
10757                 if(to == 1){
10758                     this.clearOpacity();
10759                 }
10760                 el.afterFx(o);
10761             });
10762         });
10763         return this;
10764     },
10765
10766    /**
10767     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10768     * using the "endOpacity" config option.
10769     * Usage:
10770 <pre><code>
10771 // default: fade out from the element's current opacity to 0
10772 el.fadeOut();
10773
10774 // custom: fade out from the element's current opacity to 25% over 2 seconds
10775 el.fadeOut({ endOpacity: .25, duration: 2});
10776
10777 // common config options shown with default values
10778 el.fadeOut({
10779     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10780     easing: 'easeOut',
10781     duration: .5
10782     remove: false,
10783     useDisplay: false
10784 });
10785 </code></pre>
10786     * @param {Object} options (optional) Object literal with any of the Fx config options
10787     * @return {Roo.Element} The Element
10788     */
10789     fadeOut : function(o){
10790         var el = this.getFxEl();
10791         o = o || {};
10792         el.queueFx(o, function(){
10793             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10794                 o, null, .5, "easeOut", function(){
10795                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10796                      this.dom.style.display = "none";
10797                 }else{
10798                      this.dom.style.visibility = "hidden";
10799                 }
10800                 this.clearOpacity();
10801                 el.afterFx(o);
10802             });
10803         });
10804         return this;
10805     },
10806
10807    /**
10808     * Animates the transition of an element's dimensions from a starting height/width
10809     * to an ending height/width.
10810     * Usage:
10811 <pre><code>
10812 // change height and width to 100x100 pixels
10813 el.scale(100, 100);
10814
10815 // common config options shown with default values.  The height and width will default to
10816 // the element's existing values if passed as null.
10817 el.scale(
10818     [element's width],
10819     [element's height], {
10820     easing: 'easeOut',
10821     duration: .35
10822 });
10823 </code></pre>
10824     * @param {Number} width  The new width (pass undefined to keep the original width)
10825     * @param {Number} height  The new height (pass undefined to keep the original height)
10826     * @param {Object} options (optional) Object literal with any of the Fx config options
10827     * @return {Roo.Element} The Element
10828     */
10829     scale : function(w, h, o){
10830         this.shift(Roo.apply({}, o, {
10831             width: w,
10832             height: h
10833         }));
10834         return this;
10835     },
10836
10837    /**
10838     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10839     * Any of these properties not specified in the config object will not be changed.  This effect 
10840     * requires that at least one new dimension, position or opacity setting must be passed in on
10841     * the config object in order for the function to have any effect.
10842     * Usage:
10843 <pre><code>
10844 // slide the element horizontally to x position 200 while changing the height and opacity
10845 el.shift({ x: 200, height: 50, opacity: .8 });
10846
10847 // common config options shown with default values.
10848 el.shift({
10849     width: [element's width],
10850     height: [element's height],
10851     x: [element's x position],
10852     y: [element's y position],
10853     opacity: [element's opacity],
10854     easing: 'easeOut',
10855     duration: .35
10856 });
10857 </code></pre>
10858     * @param {Object} options  Object literal with any of the Fx config options
10859     * @return {Roo.Element} The Element
10860     */
10861     shift : function(o){
10862         var el = this.getFxEl();
10863         o = o || {};
10864         el.queueFx(o, function(){
10865             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10866             if(w !== undefined){
10867                 a.width = {to: this.adjustWidth(w)};
10868             }
10869             if(h !== undefined){
10870                 a.height = {to: this.adjustHeight(h)};
10871             }
10872             if(x !== undefined || y !== undefined){
10873                 a.points = {to: [
10874                     x !== undefined ? x : this.getX(),
10875                     y !== undefined ? y : this.getY()
10876                 ]};
10877             }
10878             if(op !== undefined){
10879                 a.opacity = {to: op};
10880             }
10881             if(o.xy !== undefined){
10882                 a.points = {to: o.xy};
10883             }
10884             arguments.callee.anim = this.fxanim(a,
10885                 o, 'motion', .35, "easeOut", function(){
10886                 el.afterFx(o);
10887             });
10888         });
10889         return this;
10890     },
10891
10892         /**
10893          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10894          * ending point of the effect.
10895          * Usage:
10896          *<pre><code>
10897 // default: slide the element downward while fading out
10898 el.ghost();
10899
10900 // custom: slide the element out to the right with a 2-second duration
10901 el.ghost('r', { duration: 2 });
10902
10903 // common config options shown with default values
10904 el.ghost('b', {
10905     easing: 'easeOut',
10906     duration: .5
10907     remove: false,
10908     useDisplay: false
10909 });
10910 </code></pre>
10911          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10912          * @param {Object} options (optional) Object literal with any of the Fx config options
10913          * @return {Roo.Element} The Element
10914          */
10915     ghost : function(anchor, o){
10916         var el = this.getFxEl();
10917         o = o || {};
10918
10919         el.queueFx(o, function(){
10920             anchor = anchor || "b";
10921
10922             // restore values after effect
10923             var r = this.getFxRestore();
10924             var w = this.getWidth(),
10925                 h = this.getHeight();
10926
10927             var st = this.dom.style;
10928
10929             var after = function(){
10930                 if(o.useDisplay){
10931                     el.setDisplayed(false);
10932                 }else{
10933                     el.hide();
10934                 }
10935
10936                 el.clearOpacity();
10937                 el.setPositioning(r.pos);
10938                 st.width = r.width;
10939                 st.height = r.height;
10940
10941                 el.afterFx(o);
10942             };
10943
10944             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10945             switch(anchor.toLowerCase()){
10946                 case "t":
10947                     pt.by = [0, -h];
10948                 break;
10949                 case "l":
10950                     pt.by = [-w, 0];
10951                 break;
10952                 case "r":
10953                     pt.by = [w, 0];
10954                 break;
10955                 case "b":
10956                     pt.by = [0, h];
10957                 break;
10958                 case "tl":
10959                     pt.by = [-w, -h];
10960                 break;
10961                 case "bl":
10962                     pt.by = [-w, h];
10963                 break;
10964                 case "br":
10965                     pt.by = [w, h];
10966                 break;
10967                 case "tr":
10968                     pt.by = [w, -h];
10969                 break;
10970             }
10971
10972             arguments.callee.anim = this.fxanim(a,
10973                 o,
10974                 'motion',
10975                 .5,
10976                 "easeOut", after);
10977         });
10978         return this;
10979     },
10980
10981         /**
10982          * Ensures that all effects queued after syncFx is called on the element are
10983          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10984          * @return {Roo.Element} The Element
10985          */
10986     syncFx : function(){
10987         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10988             block : false,
10989             concurrent : true,
10990             stopFx : false
10991         });
10992         return this;
10993     },
10994
10995         /**
10996          * Ensures that all effects queued after sequenceFx is called on the element are
10997          * run in sequence.  This is the opposite of {@link #syncFx}.
10998          * @return {Roo.Element} The Element
10999          */
11000     sequenceFx : function(){
11001         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11002             block : false,
11003             concurrent : false,
11004             stopFx : false
11005         });
11006         return this;
11007     },
11008
11009         /* @private */
11010     nextFx : function(){
11011         var ef = this.fxQueue[0];
11012         if(ef){
11013             ef.call(this);
11014         }
11015     },
11016
11017         /**
11018          * Returns true if the element has any effects actively running or queued, else returns false.
11019          * @return {Boolean} True if element has active effects, else false
11020          */
11021     hasActiveFx : function(){
11022         return this.fxQueue && this.fxQueue[0];
11023     },
11024
11025         /**
11026          * Stops any running effects and clears the element's internal effects queue if it contains
11027          * any additional effects that haven't started yet.
11028          * @return {Roo.Element} The Element
11029          */
11030     stopFx : function(){
11031         if(this.hasActiveFx()){
11032             var cur = this.fxQueue[0];
11033             if(cur && cur.anim && cur.anim.isAnimated()){
11034                 this.fxQueue = [cur]; // clear out others
11035                 cur.anim.stop(true);
11036             }
11037         }
11038         return this;
11039     },
11040
11041         /* @private */
11042     beforeFx : function(o){
11043         if(this.hasActiveFx() && !o.concurrent){
11044            if(o.stopFx){
11045                this.stopFx();
11046                return true;
11047            }
11048            return false;
11049         }
11050         return true;
11051     },
11052
11053         /**
11054          * Returns true if the element is currently blocking so that no other effect can be queued
11055          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11056          * used to ensure that an effect initiated by a user action runs to completion prior to the
11057          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11058          * @return {Boolean} True if blocking, else false
11059          */
11060     hasFxBlock : function(){
11061         var q = this.fxQueue;
11062         return q && q[0] && q[0].block;
11063     },
11064
11065         /* @private */
11066     queueFx : function(o, fn){
11067         if(!this.fxQueue){
11068             this.fxQueue = [];
11069         }
11070         if(!this.hasFxBlock()){
11071             Roo.applyIf(o, this.fxDefaults);
11072             if(!o.concurrent){
11073                 var run = this.beforeFx(o);
11074                 fn.block = o.block;
11075                 this.fxQueue.push(fn);
11076                 if(run){
11077                     this.nextFx();
11078                 }
11079             }else{
11080                 fn.call(this);
11081             }
11082         }
11083         return this;
11084     },
11085
11086         /* @private */
11087     fxWrap : function(pos, o, vis){
11088         var wrap;
11089         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11090             var wrapXY;
11091             if(o.fixPosition){
11092                 wrapXY = this.getXY();
11093             }
11094             var div = document.createElement("div");
11095             div.style.visibility = vis;
11096             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11097             wrap.setPositioning(pos);
11098             if(wrap.getStyle("position") == "static"){
11099                 wrap.position("relative");
11100             }
11101             this.clearPositioning('auto');
11102             wrap.clip();
11103             wrap.dom.appendChild(this.dom);
11104             if(wrapXY){
11105                 wrap.setXY(wrapXY);
11106             }
11107         }
11108         return wrap;
11109     },
11110
11111         /* @private */
11112     fxUnwrap : function(wrap, pos, o){
11113         this.clearPositioning();
11114         this.setPositioning(pos);
11115         if(!o.wrap){
11116             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11117             wrap.remove();
11118         }
11119     },
11120
11121         /* @private */
11122     getFxRestore : function(){
11123         var st = this.dom.style;
11124         return {pos: this.getPositioning(), width: st.width, height : st.height};
11125     },
11126
11127         /* @private */
11128     afterFx : function(o){
11129         if(o.afterStyle){
11130             this.applyStyles(o.afterStyle);
11131         }
11132         if(o.afterCls){
11133             this.addClass(o.afterCls);
11134         }
11135         if(o.remove === true){
11136             this.remove();
11137         }
11138         Roo.callback(o.callback, o.scope, [this]);
11139         if(!o.concurrent){
11140             this.fxQueue.shift();
11141             this.nextFx();
11142         }
11143     },
11144
11145         /* @private */
11146     getFxEl : function(){ // support for composite element fx
11147         return Roo.get(this.dom);
11148     },
11149
11150         /* @private */
11151     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11152         animType = animType || 'run';
11153         opt = opt || {};
11154         var anim = Roo.lib.Anim[animType](
11155             this.dom, args,
11156             (opt.duration || defaultDur) || .35,
11157             (opt.easing || defaultEase) || 'easeOut',
11158             function(){
11159                 Roo.callback(cb, this);
11160             },
11161             this
11162         );
11163         opt.anim = anim;
11164         return anim;
11165     }
11166 };
11167
11168 // backwords compat
11169 Roo.Fx.resize = Roo.Fx.scale;
11170
11171 //When included, Roo.Fx is automatically applied to Element so that all basic
11172 //effects are available directly via the Element API
11173 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11174  * Based on:
11175  * Ext JS Library 1.1.1
11176  * Copyright(c) 2006-2007, Ext JS, LLC.
11177  *
11178  * Originally Released Under LGPL - original licence link has changed is not relivant.
11179  *
11180  * Fork - LGPL
11181  * <script type="text/javascript">
11182  */
11183
11184
11185 /**
11186  * @class Roo.CompositeElement
11187  * Standard composite class. Creates a Roo.Element for every element in the collection.
11188  * <br><br>
11189  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11190  * actions will be performed on all the elements in this collection.</b>
11191  * <br><br>
11192  * All methods return <i>this</i> and can be chained.
11193  <pre><code>
11194  var els = Roo.select("#some-el div.some-class", true);
11195  // or select directly from an existing element
11196  var el = Roo.get('some-el');
11197  el.select('div.some-class', true);
11198
11199  els.setWidth(100); // all elements become 100 width
11200  els.hide(true); // all elements fade out and hide
11201  // or
11202  els.setWidth(100).hide(true);
11203  </code></pre>
11204  */
11205 Roo.CompositeElement = function(els){
11206     this.elements = [];
11207     this.addElements(els);
11208 };
11209 Roo.CompositeElement.prototype = {
11210     isComposite: true,
11211     addElements : function(els){
11212         if(!els) {
11213             return this;
11214         }
11215         if(typeof els == "string"){
11216             els = Roo.Element.selectorFunction(els);
11217         }
11218         var yels = this.elements;
11219         var index = yels.length-1;
11220         for(var i = 0, len = els.length; i < len; i++) {
11221                 yels[++index] = Roo.get(els[i]);
11222         }
11223         return this;
11224     },
11225
11226     /**
11227     * Clears this composite and adds the elements returned by the passed selector.
11228     * @param {String/Array} els A string CSS selector, an array of elements or an element
11229     * @return {CompositeElement} this
11230     */
11231     fill : function(els){
11232         this.elements = [];
11233         this.add(els);
11234         return this;
11235     },
11236
11237     /**
11238     * Filters this composite to only elements that match the passed selector.
11239     * @param {String} selector A string CSS selector
11240     * @param {Boolean} inverse return inverse filter (not matches)
11241     * @return {CompositeElement} this
11242     */
11243     filter : function(selector, inverse){
11244         var els = [];
11245         inverse = inverse || false;
11246         this.each(function(el){
11247             var match = inverse ? !el.is(selector) : el.is(selector);
11248             if(match){
11249                 els[els.length] = el.dom;
11250             }
11251         });
11252         this.fill(els);
11253         return this;
11254     },
11255
11256     invoke : function(fn, args){
11257         var els = this.elements;
11258         for(var i = 0, len = els.length; i < len; i++) {
11259                 Roo.Element.prototype[fn].apply(els[i], args);
11260         }
11261         return this;
11262     },
11263     /**
11264     * Adds elements to this composite.
11265     * @param {String/Array} els A string CSS selector, an array of elements or an element
11266     * @return {CompositeElement} this
11267     */
11268     add : function(els){
11269         if(typeof els == "string"){
11270             this.addElements(Roo.Element.selectorFunction(els));
11271         }else if(els.length !== undefined){
11272             this.addElements(els);
11273         }else{
11274             this.addElements([els]);
11275         }
11276         return this;
11277     },
11278     /**
11279     * Calls the passed function passing (el, this, index) for each element in this composite.
11280     * @param {Function} fn The function to call
11281     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11282     * @return {CompositeElement} this
11283     */
11284     each : function(fn, scope){
11285         var els = this.elements;
11286         for(var i = 0, len = els.length; i < len; i++){
11287             if(fn.call(scope || els[i], els[i], this, i) === false) {
11288                 break;
11289             }
11290         }
11291         return this;
11292     },
11293
11294     /**
11295      * Returns the Element object at the specified index
11296      * @param {Number} index
11297      * @return {Roo.Element}
11298      */
11299     item : function(index){
11300         return this.elements[index] || null;
11301     },
11302
11303     /**
11304      * Returns the first Element
11305      * @return {Roo.Element}
11306      */
11307     first : function(){
11308         return this.item(0);
11309     },
11310
11311     /**
11312      * Returns the last Element
11313      * @return {Roo.Element}
11314      */
11315     last : function(){
11316         return this.item(this.elements.length-1);
11317     },
11318
11319     /**
11320      * Returns the number of elements in this composite
11321      * @return Number
11322      */
11323     getCount : function(){
11324         return this.elements.length;
11325     },
11326
11327     /**
11328      * Returns true if this composite contains the passed element
11329      * @return Boolean
11330      */
11331     contains : function(el){
11332         return this.indexOf(el) !== -1;
11333     },
11334
11335     /**
11336      * Returns true if this composite contains the passed element
11337      * @return Boolean
11338      */
11339     indexOf : function(el){
11340         return this.elements.indexOf(Roo.get(el));
11341     },
11342
11343
11344     /**
11345     * Removes the specified element(s).
11346     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11347     * or an array of any of those.
11348     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11349     * @return {CompositeElement} this
11350     */
11351     removeElement : function(el, removeDom){
11352         if(el instanceof Array){
11353             for(var i = 0, len = el.length; i < len; i++){
11354                 this.removeElement(el[i]);
11355             }
11356             return this;
11357         }
11358         var index = typeof el == 'number' ? el : this.indexOf(el);
11359         if(index !== -1){
11360             if(removeDom){
11361                 var d = this.elements[index];
11362                 if(d.dom){
11363                     d.remove();
11364                 }else{
11365                     d.parentNode.removeChild(d);
11366                 }
11367             }
11368             this.elements.splice(index, 1);
11369         }
11370         return this;
11371     },
11372
11373     /**
11374     * Replaces the specified element with the passed element.
11375     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11376     * to replace.
11377     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11378     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11379     * @return {CompositeElement} this
11380     */
11381     replaceElement : function(el, replacement, domReplace){
11382         var index = typeof el == 'number' ? el : this.indexOf(el);
11383         if(index !== -1){
11384             if(domReplace){
11385                 this.elements[index].replaceWith(replacement);
11386             }else{
11387                 this.elements.splice(index, 1, Roo.get(replacement))
11388             }
11389         }
11390         return this;
11391     },
11392
11393     /**
11394      * Removes all elements.
11395      */
11396     clear : function(){
11397         this.elements = [];
11398     }
11399 };
11400 (function(){
11401     Roo.CompositeElement.createCall = function(proto, fnName){
11402         if(!proto[fnName]){
11403             proto[fnName] = function(){
11404                 return this.invoke(fnName, arguments);
11405             };
11406         }
11407     };
11408     for(var fnName in Roo.Element.prototype){
11409         if(typeof Roo.Element.prototype[fnName] == "function"){
11410             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11411         }
11412     };
11413 })();
11414 /*
11415  * Based on:
11416  * Ext JS Library 1.1.1
11417  * Copyright(c) 2006-2007, Ext JS, LLC.
11418  *
11419  * Originally Released Under LGPL - original licence link has changed is not relivant.
11420  *
11421  * Fork - LGPL
11422  * <script type="text/javascript">
11423  */
11424
11425 /**
11426  * @class Roo.CompositeElementLite
11427  * @extends Roo.CompositeElement
11428  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11429  <pre><code>
11430  var els = Roo.select("#some-el div.some-class");
11431  // or select directly from an existing element
11432  var el = Roo.get('some-el');
11433  el.select('div.some-class');
11434
11435  els.setWidth(100); // all elements become 100 width
11436  els.hide(true); // all elements fade out and hide
11437  // or
11438  els.setWidth(100).hide(true);
11439  </code></pre><br><br>
11440  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11441  * actions will be performed on all the elements in this collection.</b>
11442  */
11443 Roo.CompositeElementLite = function(els){
11444     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11445     this.el = new Roo.Element.Flyweight();
11446 };
11447 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11448     addElements : function(els){
11449         if(els){
11450             if(els instanceof Array){
11451                 this.elements = this.elements.concat(els);
11452             }else{
11453                 var yels = this.elements;
11454                 var index = yels.length-1;
11455                 for(var i = 0, len = els.length; i < len; i++) {
11456                     yels[++index] = els[i];
11457                 }
11458             }
11459         }
11460         return this;
11461     },
11462     invoke : function(fn, args){
11463         var els = this.elements;
11464         var el = this.el;
11465         for(var i = 0, len = els.length; i < len; i++) {
11466             el.dom = els[i];
11467                 Roo.Element.prototype[fn].apply(el, args);
11468         }
11469         return this;
11470     },
11471     /**
11472      * Returns a flyweight Element of the dom element object at the specified index
11473      * @param {Number} index
11474      * @return {Roo.Element}
11475      */
11476     item : function(index){
11477         if(!this.elements[index]){
11478             return null;
11479         }
11480         this.el.dom = this.elements[index];
11481         return this.el;
11482     },
11483
11484     // fixes scope with flyweight
11485     addListener : function(eventName, handler, scope, opt){
11486         var els = this.elements;
11487         for(var i = 0, len = els.length; i < len; i++) {
11488             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11489         }
11490         return this;
11491     },
11492
11493     /**
11494     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11495     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11496     * a reference to the dom node, use el.dom.</b>
11497     * @param {Function} fn The function to call
11498     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11499     * @return {CompositeElement} this
11500     */
11501     each : function(fn, scope){
11502         var els = this.elements;
11503         var el = this.el;
11504         for(var i = 0, len = els.length; i < len; i++){
11505             el.dom = els[i];
11506                 if(fn.call(scope || el, el, this, i) === false){
11507                 break;
11508             }
11509         }
11510         return this;
11511     },
11512
11513     indexOf : function(el){
11514         return this.elements.indexOf(Roo.getDom(el));
11515     },
11516
11517     replaceElement : function(el, replacement, domReplace){
11518         var index = typeof el == 'number' ? el : this.indexOf(el);
11519         if(index !== -1){
11520             replacement = Roo.getDom(replacement);
11521             if(domReplace){
11522                 var d = this.elements[index];
11523                 d.parentNode.insertBefore(replacement, d);
11524                 d.parentNode.removeChild(d);
11525             }
11526             this.elements.splice(index, 1, replacement);
11527         }
11528         return this;
11529     }
11530 });
11531 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11532
11533 /*
11534  * Based on:
11535  * Ext JS Library 1.1.1
11536  * Copyright(c) 2006-2007, Ext JS, LLC.
11537  *
11538  * Originally Released Under LGPL - original licence link has changed is not relivant.
11539  *
11540  * Fork - LGPL
11541  * <script type="text/javascript">
11542  */
11543
11544  
11545
11546 /**
11547  * @class Roo.data.Connection
11548  * @extends Roo.util.Observable
11549  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11550  * either to a configured URL, or to a URL specified at request time. 
11551  * 
11552  * Requests made by this class are asynchronous, and will return immediately. No data from
11553  * the server will be available to the statement immediately following the {@link #request} call.
11554  * To process returned data, use a callback in the request options object, or an event listener.
11555  * 
11556  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11557  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11558  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11559  * property and, if present, the IFRAME's XML document as the responseXML property.
11560  * 
11561  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11562  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11563  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11564  * standard DOM methods.
11565  * @constructor
11566  * @param {Object} config a configuration object.
11567  */
11568 Roo.data.Connection = function(config){
11569     Roo.apply(this, config);
11570     this.addEvents({
11571         /**
11572          * @event beforerequest
11573          * Fires before a network request is made to retrieve a data object.
11574          * @param {Connection} conn This Connection object.
11575          * @param {Object} options The options config object passed to the {@link #request} method.
11576          */
11577         "beforerequest" : true,
11578         /**
11579          * @event requestcomplete
11580          * Fires if the request was successfully completed.
11581          * @param {Connection} conn This Connection object.
11582          * @param {Object} response The XHR object containing the response data.
11583          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11584          * @param {Object} options The options config object passed to the {@link #request} method.
11585          */
11586         "requestcomplete" : true,
11587         /**
11588          * @event requestexception
11589          * Fires if an error HTTP status was returned from the server.
11590          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11591          * @param {Connection} conn This Connection object.
11592          * @param {Object} response The XHR object containing the response data.
11593          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11594          * @param {Object} options The options config object passed to the {@link #request} method.
11595          */
11596         "requestexception" : true
11597     });
11598     Roo.data.Connection.superclass.constructor.call(this);
11599 };
11600
11601 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11602     /**
11603      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11604      */
11605     /**
11606      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11607      * extra parameters to each request made by this object. (defaults to undefined)
11608      */
11609     /**
11610      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11611      *  to each request made by this object. (defaults to undefined)
11612      */
11613     /**
11614      * @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)
11615      */
11616     /**
11617      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11618      */
11619     timeout : 30000,
11620     /**
11621      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11622      * @type Boolean
11623      */
11624     autoAbort:false,
11625
11626     /**
11627      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11628      * @type Boolean
11629      */
11630     disableCaching: true,
11631
11632     /**
11633      * Sends an HTTP request to a remote server.
11634      * @param {Object} options An object which may contain the following properties:<ul>
11635      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11636      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11637      * request, a url encoded string or a function to call to get either.</li>
11638      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11639      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11640      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11641      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11642      * <li>options {Object} The parameter to the request call.</li>
11643      * <li>success {Boolean} True if the request succeeded.</li>
11644      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11645      * </ul></li>
11646      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11647      * The callback is passed the following parameters:<ul>
11648      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11649      * <li>options {Object} The parameter to the request call.</li>
11650      * </ul></li>
11651      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11652      * The callback is passed the following parameters:<ul>
11653      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11654      * <li>options {Object} The parameter to the request call.</li>
11655      * </ul></li>
11656      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11657      * for the callback function. Defaults to the browser window.</li>
11658      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11659      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11660      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11661      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11662      * params for the post data. Any params will be appended to the URL.</li>
11663      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11664      * </ul>
11665      * @return {Number} transactionId
11666      */
11667     request : function(o){
11668         if(this.fireEvent("beforerequest", this, o) !== false){
11669             var p = o.params;
11670
11671             if(typeof p == "function"){
11672                 p = p.call(o.scope||window, o);
11673             }
11674             if(typeof p == "object"){
11675                 p = Roo.urlEncode(o.params);
11676             }
11677             if(this.extraParams){
11678                 var extras = Roo.urlEncode(this.extraParams);
11679                 p = p ? (p + '&' + extras) : extras;
11680             }
11681
11682             var url = o.url || this.url;
11683             if(typeof url == 'function'){
11684                 url = url.call(o.scope||window, o);
11685             }
11686
11687             if(o.form){
11688                 var form = Roo.getDom(o.form);
11689                 url = url || form.action;
11690
11691                 var enctype = form.getAttribute("enctype");
11692                 
11693                 if (o.formData) {
11694                     return this.doFormDataUpload(o, url);
11695                 }
11696                 
11697                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11698                     return this.doFormUpload(o, p, url);
11699                 }
11700                 var f = Roo.lib.Ajax.serializeForm(form);
11701                 p = p ? (p + '&' + f) : f;
11702             }
11703             
11704             if (!o.form && o.formData) {
11705                 o.formData = o.formData === true ? new FormData() : o.formData;
11706                 for (var k in o.params) {
11707                     o.formData.append(k,o.params[k]);
11708                 }
11709                     
11710                 return this.doFormDataUpload(o, url);
11711             }
11712             
11713
11714             var hs = o.headers;
11715             if(this.defaultHeaders){
11716                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11717                 if(!o.headers){
11718                     o.headers = hs;
11719                 }
11720             }
11721
11722             var cb = {
11723                 success: this.handleResponse,
11724                 failure: this.handleFailure,
11725                 scope: this,
11726                 argument: {options: o},
11727                 timeout : o.timeout || this.timeout
11728             };
11729
11730             var method = o.method||this.method||(p ? "POST" : "GET");
11731
11732             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11733                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11734             }
11735
11736             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11737                 if(o.autoAbort){
11738                     this.abort();
11739                 }
11740             }else if(this.autoAbort !== false){
11741                 this.abort();
11742             }
11743
11744             if((method == 'GET' && p) || o.xmlData){
11745                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11746                 p = '';
11747             }
11748             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11749             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11750             Roo.lib.Ajax.useDefaultHeader == true;
11751             return this.transId;
11752         }else{
11753             Roo.callback(o.callback, o.scope, [o, null, null]);
11754             return null;
11755         }
11756     },
11757
11758     /**
11759      * Determine whether this object has a request outstanding.
11760      * @param {Number} transactionId (Optional) defaults to the last transaction
11761      * @return {Boolean} True if there is an outstanding request.
11762      */
11763     isLoading : function(transId){
11764         if(transId){
11765             return Roo.lib.Ajax.isCallInProgress(transId);
11766         }else{
11767             return this.transId ? true : false;
11768         }
11769     },
11770
11771     /**
11772      * Aborts any outstanding request.
11773      * @param {Number} transactionId (Optional) defaults to the last transaction
11774      */
11775     abort : function(transId){
11776         if(transId || this.isLoading()){
11777             Roo.lib.Ajax.abort(transId || this.transId);
11778         }
11779     },
11780
11781     // private
11782     handleResponse : function(response){
11783         this.transId = false;
11784         var options = response.argument.options;
11785         response.argument = options ? options.argument : null;
11786         this.fireEvent("requestcomplete", this, response, options);
11787         Roo.callback(options.success, options.scope, [response, options]);
11788         Roo.callback(options.callback, options.scope, [options, true, response]);
11789     },
11790
11791     // private
11792     handleFailure : function(response, e){
11793         this.transId = false;
11794         var options = response.argument.options;
11795         response.argument = options ? options.argument : null;
11796         this.fireEvent("requestexception", this, response, options, e);
11797         Roo.callback(options.failure, options.scope, [response, options]);
11798         Roo.callback(options.callback, options.scope, [options, false, response]);
11799     },
11800
11801     // private
11802     doFormUpload : function(o, ps, url){
11803         var id = Roo.id();
11804         var frame = document.createElement('iframe');
11805         frame.id = id;
11806         frame.name = id;
11807         frame.className = 'x-hidden';
11808         if(Roo.isIE){
11809             frame.src = Roo.SSL_SECURE_URL;
11810         }
11811         document.body.appendChild(frame);
11812
11813         if(Roo.isIE){
11814            document.frames[id].name = id;
11815         }
11816
11817         var form = Roo.getDom(o.form);
11818         form.target = id;
11819         form.method = 'POST';
11820         form.enctype = form.encoding = 'multipart/form-data';
11821         if(url){
11822             form.action = url;
11823         }
11824
11825         var hiddens, hd;
11826         if(ps){ // add dynamic params
11827             hiddens = [];
11828             ps = Roo.urlDecode(ps, false);
11829             for(var k in ps){
11830                 if(ps.hasOwnProperty(k)){
11831                     hd = document.createElement('input');
11832                     hd.type = 'hidden';
11833                     hd.name = k;
11834                     hd.value = ps[k];
11835                     form.appendChild(hd);
11836                     hiddens.push(hd);
11837                 }
11838             }
11839         }
11840
11841         function cb(){
11842             var r = {  // bogus response object
11843                 responseText : '',
11844                 responseXML : null
11845             };
11846
11847             r.argument = o ? o.argument : null;
11848
11849             try { //
11850                 var doc;
11851                 if(Roo.isIE){
11852                     doc = frame.contentWindow.document;
11853                 }else {
11854                     doc = (frame.contentDocument || window.frames[id].document);
11855                 }
11856                 if(doc && doc.body){
11857                     r.responseText = doc.body.innerHTML;
11858                 }
11859                 if(doc && doc.XMLDocument){
11860                     r.responseXML = doc.XMLDocument;
11861                 }else {
11862                     r.responseXML = doc;
11863                 }
11864             }
11865             catch(e) {
11866                 // ignore
11867             }
11868
11869             Roo.EventManager.removeListener(frame, 'load', cb, this);
11870
11871             this.fireEvent("requestcomplete", this, r, o);
11872             Roo.callback(o.success, o.scope, [r, o]);
11873             Roo.callback(o.callback, o.scope, [o, true, r]);
11874
11875             setTimeout(function(){document.body.removeChild(frame);}, 100);
11876         }
11877
11878         Roo.EventManager.on(frame, 'load', cb, this);
11879         form.submit();
11880
11881         if(hiddens){ // remove dynamic params
11882             for(var i = 0, len = hiddens.length; i < len; i++){
11883                 form.removeChild(hiddens[i]);
11884             }
11885         }
11886     },
11887     // this is a 'formdata version???'
11888     
11889     
11890     doFormDataUpload : function(o,  url)
11891     {
11892         var formData;
11893         if (o.form) {
11894             var form =  Roo.getDom(o.form);
11895             form.enctype = form.encoding = 'multipart/form-data';
11896             formData = o.formData === true ? new FormData(form) : o.formData;
11897         } else {
11898             formData = o.formData === true ? new FormData() : o.formData;
11899         }
11900         
11901       
11902         var cb = {
11903             success: this.handleResponse,
11904             failure: this.handleFailure,
11905             scope: this,
11906             argument: {options: o},
11907             timeout : o.timeout || this.timeout
11908         };
11909  
11910         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11911             if(o.autoAbort){
11912                 this.abort();
11913             }
11914         }else if(this.autoAbort !== false){
11915             this.abort();
11916         }
11917
11918         //Roo.lib.Ajax.defaultPostHeader = null;
11919         Roo.lib.Ajax.useDefaultHeader = false;
11920         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11921         Roo.lib.Ajax.useDefaultHeader = true;
11922  
11923          
11924     }
11925     
11926 });
11927 /*
11928  * Based on:
11929  * Ext JS Library 1.1.1
11930  * Copyright(c) 2006-2007, Ext JS, LLC.
11931  *
11932  * Originally Released Under LGPL - original licence link has changed is not relivant.
11933  *
11934  * Fork - LGPL
11935  * <script type="text/javascript">
11936  */
11937  
11938 /**
11939  * Global Ajax request class.
11940  * 
11941  * @class Roo.Ajax
11942  * @extends Roo.data.Connection
11943  * @static
11944  * 
11945  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11946  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11947  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11948  * @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)
11949  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11950  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11951  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11952  */
11953 Roo.Ajax = new Roo.data.Connection({
11954     // fix up the docs
11955     /**
11956      * @scope Roo.Ajax
11957      * @type {Boolear} 
11958      */
11959     autoAbort : false,
11960
11961     /**
11962      * Serialize the passed form into a url encoded string
11963      * @scope Roo.Ajax
11964      * @param {String/HTMLElement} form
11965      * @return {String}
11966      */
11967     serializeForm : function(form){
11968         return Roo.lib.Ajax.serializeForm(form);
11969     }
11970 });/*
11971  * Based on:
11972  * Ext JS Library 1.1.1
11973  * Copyright(c) 2006-2007, Ext JS, LLC.
11974  *
11975  * Originally Released Under LGPL - original licence link has changed is not relivant.
11976  *
11977  * Fork - LGPL
11978  * <script type="text/javascript">
11979  */
11980
11981  
11982 /**
11983  * @class Roo.UpdateManager
11984  * @extends Roo.util.Observable
11985  * Provides AJAX-style update for Element object.<br><br>
11986  * Usage:<br>
11987  * <pre><code>
11988  * // Get it from a Roo.Element object
11989  * var el = Roo.get("foo");
11990  * var mgr = el.getUpdateManager();
11991  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11992  * ...
11993  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11994  * <br>
11995  * // or directly (returns the same UpdateManager instance)
11996  * var mgr = new Roo.UpdateManager("myElementId");
11997  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11998  * mgr.on("update", myFcnNeedsToKnow);
11999  * <br>
12000    // short handed call directly from the element object
12001    Roo.get("foo").load({
12002         url: "bar.php",
12003         scripts:true,
12004         params: "for=bar",
12005         text: "Loading Foo..."
12006    });
12007  * </code></pre>
12008  * @constructor
12009  * Create new UpdateManager directly.
12010  * @param {String/HTMLElement/Roo.Element} el The element to update
12011  * @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).
12012  */
12013 Roo.UpdateManager = function(el, forceNew){
12014     el = Roo.get(el);
12015     if(!forceNew && el.updateManager){
12016         return el.updateManager;
12017     }
12018     /**
12019      * The Element object
12020      * @type Roo.Element
12021      */
12022     this.el = el;
12023     /**
12024      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12025      * @type String
12026      */
12027     this.defaultUrl = null;
12028
12029     this.addEvents({
12030         /**
12031          * @event beforeupdate
12032          * Fired before an update is made, return false from your handler and the update is cancelled.
12033          * @param {Roo.Element} el
12034          * @param {String/Object/Function} url
12035          * @param {String/Object} params
12036          */
12037         "beforeupdate": true,
12038         /**
12039          * @event update
12040          * Fired after successful update is made.
12041          * @param {Roo.Element} el
12042          * @param {Object} oResponseObject The response Object
12043          */
12044         "update": true,
12045         /**
12046          * @event failure
12047          * Fired on update failure.
12048          * @param {Roo.Element} el
12049          * @param {Object} oResponseObject The response Object
12050          */
12051         "failure": true
12052     });
12053     var d = Roo.UpdateManager.defaults;
12054     /**
12055      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12056      * @type String
12057      */
12058     this.sslBlankUrl = d.sslBlankUrl;
12059     /**
12060      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12061      * @type Boolean
12062      */
12063     this.disableCaching = d.disableCaching;
12064     /**
12065      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12066      * @type String
12067      */
12068     this.indicatorText = d.indicatorText;
12069     /**
12070      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12071      * @type String
12072      */
12073     this.showLoadIndicator = d.showLoadIndicator;
12074     /**
12075      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12076      * @type Number
12077      */
12078     this.timeout = d.timeout;
12079
12080     /**
12081      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12082      * @type Boolean
12083      */
12084     this.loadScripts = d.loadScripts;
12085
12086     /**
12087      * Transaction object of current executing transaction
12088      */
12089     this.transaction = null;
12090
12091     /**
12092      * @private
12093      */
12094     this.autoRefreshProcId = null;
12095     /**
12096      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12097      * @type Function
12098      */
12099     this.refreshDelegate = this.refresh.createDelegate(this);
12100     /**
12101      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12102      * @type Function
12103      */
12104     this.updateDelegate = this.update.createDelegate(this);
12105     /**
12106      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12107      * @type Function
12108      */
12109     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12110     /**
12111      * @private
12112      */
12113     this.successDelegate = this.processSuccess.createDelegate(this);
12114     /**
12115      * @private
12116      */
12117     this.failureDelegate = this.processFailure.createDelegate(this);
12118
12119     if(!this.renderer){
12120      /**
12121       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12122       */
12123     this.renderer = new Roo.UpdateManager.BasicRenderer();
12124     }
12125     
12126     Roo.UpdateManager.superclass.constructor.call(this);
12127 };
12128
12129 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12130     /**
12131      * Get the Element this UpdateManager is bound to
12132      * @return {Roo.Element} The element
12133      */
12134     getEl : function(){
12135         return this.el;
12136     },
12137     /**
12138      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12139      * @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:
12140 <pre><code>
12141 um.update({<br/>
12142     url: "your-url.php",<br/>
12143     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12144     callback: yourFunction,<br/>
12145     scope: yourObject, //(optional scope)  <br/>
12146     discardUrl: false, <br/>
12147     nocache: false,<br/>
12148     text: "Loading...",<br/>
12149     timeout: 30,<br/>
12150     scripts: false<br/>
12151 });
12152 </code></pre>
12153      * The only required property is url. The optional properties nocache, text and scripts
12154      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12155      * @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}
12156      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12157      * @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.
12158      */
12159     update : function(url, params, callback, discardUrl){
12160         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12161             var method = this.method,
12162                 cfg;
12163             if(typeof url == "object"){ // must be config object
12164                 cfg = url;
12165                 url = cfg.url;
12166                 params = params || cfg.params;
12167                 callback = callback || cfg.callback;
12168                 discardUrl = discardUrl || cfg.discardUrl;
12169                 if(callback && cfg.scope){
12170                     callback = callback.createDelegate(cfg.scope);
12171                 }
12172                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12173                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12174                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12175                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12176                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12177             }
12178             this.showLoading();
12179             if(!discardUrl){
12180                 this.defaultUrl = url;
12181             }
12182             if(typeof url == "function"){
12183                 url = url.call(this);
12184             }
12185
12186             method = method || (params ? "POST" : "GET");
12187             if(method == "GET"){
12188                 url = this.prepareUrl(url);
12189             }
12190
12191             var o = Roo.apply(cfg ||{}, {
12192                 url : url,
12193                 params: params,
12194                 success: this.successDelegate,
12195                 failure: this.failureDelegate,
12196                 callback: undefined,
12197                 timeout: (this.timeout*1000),
12198                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12199             });
12200             Roo.log("updated manager called with timeout of " + o.timeout);
12201             this.transaction = Roo.Ajax.request(o);
12202         }
12203     },
12204
12205     /**
12206      * 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.
12207      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12208      * @param {String/HTMLElement} form The form Id or form element
12209      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12210      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12211      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12212      */
12213     formUpdate : function(form, url, reset, callback){
12214         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12215             if(typeof url == "function"){
12216                 url = url.call(this);
12217             }
12218             form = Roo.getDom(form);
12219             this.transaction = Roo.Ajax.request({
12220                 form: form,
12221                 url:url,
12222                 success: this.successDelegate,
12223                 failure: this.failureDelegate,
12224                 timeout: (this.timeout*1000),
12225                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12226             });
12227             this.showLoading.defer(1, this);
12228         }
12229     },
12230
12231     /**
12232      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12233      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12234      */
12235     refresh : function(callback){
12236         if(this.defaultUrl == null){
12237             return;
12238         }
12239         this.update(this.defaultUrl, null, callback, true);
12240     },
12241
12242     /**
12243      * Set this element to auto refresh.
12244      * @param {Number} interval How often to update (in seconds).
12245      * @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)
12246      * @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}
12247      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12248      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12249      */
12250     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12251         if(refreshNow){
12252             this.update(url || this.defaultUrl, params, callback, true);
12253         }
12254         if(this.autoRefreshProcId){
12255             clearInterval(this.autoRefreshProcId);
12256         }
12257         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12258     },
12259
12260     /**
12261      * Stop auto refresh on this element.
12262      */
12263      stopAutoRefresh : function(){
12264         if(this.autoRefreshProcId){
12265             clearInterval(this.autoRefreshProcId);
12266             delete this.autoRefreshProcId;
12267         }
12268     },
12269
12270     isAutoRefreshing : function(){
12271        return this.autoRefreshProcId ? true : false;
12272     },
12273     /**
12274      * Called to update the element to "Loading" state. Override to perform custom action.
12275      */
12276     showLoading : function(){
12277         if(this.showLoadIndicator){
12278             this.el.update(this.indicatorText);
12279         }
12280     },
12281
12282     /**
12283      * Adds unique parameter to query string if disableCaching = true
12284      * @private
12285      */
12286     prepareUrl : function(url){
12287         if(this.disableCaching){
12288             var append = "_dc=" + (new Date().getTime());
12289             if(url.indexOf("?") !== -1){
12290                 url += "&" + append;
12291             }else{
12292                 url += "?" + append;
12293             }
12294         }
12295         return url;
12296     },
12297
12298     /**
12299      * @private
12300      */
12301     processSuccess : function(response){
12302         this.transaction = null;
12303         if(response.argument.form && response.argument.reset){
12304             try{ // put in try/catch since some older FF releases had problems with this
12305                 response.argument.form.reset();
12306             }catch(e){}
12307         }
12308         if(this.loadScripts){
12309             this.renderer.render(this.el, response, this,
12310                 this.updateComplete.createDelegate(this, [response]));
12311         }else{
12312             this.renderer.render(this.el, response, this);
12313             this.updateComplete(response);
12314         }
12315     },
12316
12317     updateComplete : function(response){
12318         this.fireEvent("update", this.el, response);
12319         if(typeof response.argument.callback == "function"){
12320             response.argument.callback(this.el, true, response);
12321         }
12322     },
12323
12324     /**
12325      * @private
12326      */
12327     processFailure : function(response){
12328         this.transaction = null;
12329         this.fireEvent("failure", this.el, response);
12330         if(typeof response.argument.callback == "function"){
12331             response.argument.callback(this.el, false, response);
12332         }
12333     },
12334
12335     /**
12336      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12337      * @param {Object} renderer The object implementing the render() method
12338      */
12339     setRenderer : function(renderer){
12340         this.renderer = renderer;
12341     },
12342
12343     getRenderer : function(){
12344        return this.renderer;
12345     },
12346
12347     /**
12348      * Set the defaultUrl used for updates
12349      * @param {String/Function} defaultUrl The url or a function to call to get the url
12350      */
12351     setDefaultUrl : function(defaultUrl){
12352         this.defaultUrl = defaultUrl;
12353     },
12354
12355     /**
12356      * Aborts the executing transaction
12357      */
12358     abort : function(){
12359         if(this.transaction){
12360             Roo.Ajax.abort(this.transaction);
12361         }
12362     },
12363
12364     /**
12365      * Returns true if an update is in progress
12366      * @return {Boolean}
12367      */
12368     isUpdating : function(){
12369         if(this.transaction){
12370             return Roo.Ajax.isLoading(this.transaction);
12371         }
12372         return false;
12373     }
12374 });
12375
12376 /**
12377  * @class Roo.UpdateManager.defaults
12378  * @static (not really - but it helps the doc tool)
12379  * The defaults collection enables customizing the default properties of UpdateManager
12380  */
12381    Roo.UpdateManager.defaults = {
12382        /**
12383          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12384          * @type Number
12385          */
12386          timeout : 30,
12387
12388          /**
12389          * True to process scripts by default (Defaults to false).
12390          * @type Boolean
12391          */
12392         loadScripts : false,
12393
12394         /**
12395         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12396         * @type String
12397         */
12398         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12399         /**
12400          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12401          * @type Boolean
12402          */
12403         disableCaching : false,
12404         /**
12405          * Whether to show indicatorText when loading (Defaults to true).
12406          * @type Boolean
12407          */
12408         showLoadIndicator : true,
12409         /**
12410          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12411          * @type String
12412          */
12413         indicatorText : '<div class="loading-indicator">Loading...</div>'
12414    };
12415
12416 /**
12417  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12418  *Usage:
12419  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12420  * @param {String/HTMLElement/Roo.Element} el The element to update
12421  * @param {String} url The url
12422  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12423  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12424  * @static
12425  * @deprecated
12426  * @member Roo.UpdateManager
12427  */
12428 Roo.UpdateManager.updateElement = function(el, url, params, options){
12429     var um = Roo.get(el, true).getUpdateManager();
12430     Roo.apply(um, options);
12431     um.update(url, params, options ? options.callback : null);
12432 };
12433 // alias for backwards compat
12434 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12435 /**
12436  * @class Roo.UpdateManager.BasicRenderer
12437  * Default Content renderer. Updates the elements innerHTML with the responseText.
12438  */
12439 Roo.UpdateManager.BasicRenderer = function(){};
12440
12441 Roo.UpdateManager.BasicRenderer.prototype = {
12442     /**
12443      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12444      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12445      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12446      * @param {Roo.Element} el The element being rendered
12447      * @param {Object} response The YUI Connect response object
12448      * @param {UpdateManager} updateManager The calling update manager
12449      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12450      */
12451      render : function(el, response, updateManager, callback){
12452         el.update(response.responseText, updateManager.loadScripts, callback);
12453     }
12454 };
12455 /*
12456  * Based on:
12457  * Roo JS
12458  * (c)) Alan Knowles
12459  * Licence : LGPL
12460  */
12461
12462
12463 /**
12464  * @class Roo.DomTemplate
12465  * @extends Roo.Template
12466  * An effort at a dom based template engine..
12467  *
12468  * Similar to XTemplate, except it uses dom parsing to create the template..
12469  *
12470  * Supported features:
12471  *
12472  *  Tags:
12473
12474 <pre><code>
12475       {a_variable} - output encoded.
12476       {a_variable.format:("Y-m-d")} - call a method on the variable
12477       {a_variable:raw} - unencoded output
12478       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12479       {a_variable:this.method_on_template(...)} - call a method on the template object.
12480  
12481 </code></pre>
12482  *  The tpl tag:
12483 <pre><code>
12484         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12485         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12486         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12487         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12488   
12489 </code></pre>
12490  *      
12491  */
12492 Roo.DomTemplate = function()
12493 {
12494      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12495      if (this.html) {
12496         this.compile();
12497      }
12498 };
12499
12500
12501 Roo.extend(Roo.DomTemplate, Roo.Template, {
12502     /**
12503      * id counter for sub templates.
12504      */
12505     id : 0,
12506     /**
12507      * flag to indicate if dom parser is inside a pre,
12508      * it will strip whitespace if not.
12509      */
12510     inPre : false,
12511     
12512     /**
12513      * The various sub templates
12514      */
12515     tpls : false,
12516     
12517     
12518     
12519     /**
12520      *
12521      * basic tag replacing syntax
12522      * WORD:WORD()
12523      *
12524      * // you can fake an object call by doing this
12525      *  x.t:(test,tesT) 
12526      * 
12527      */
12528     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12529     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12530     
12531     iterChild : function (node, method) {
12532         
12533         var oldPre = this.inPre;
12534         if (node.tagName == 'PRE') {
12535             this.inPre = true;
12536         }
12537         for( var i = 0; i < node.childNodes.length; i++) {
12538             method.call(this, node.childNodes[i]);
12539         }
12540         this.inPre = oldPre;
12541     },
12542     
12543     
12544     
12545     /**
12546      * compile the template
12547      *
12548      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12549      *
12550      */
12551     compile: function()
12552     {
12553         var s = this.html;
12554         
12555         // covert the html into DOM...
12556         var doc = false;
12557         var div =false;
12558         try {
12559             doc = document.implementation.createHTMLDocument("");
12560             doc.documentElement.innerHTML =   this.html  ;
12561             div = doc.documentElement;
12562         } catch (e) {
12563             // old IE... - nasty -- it causes all sorts of issues.. with
12564             // images getting pulled from server..
12565             div = document.createElement('div');
12566             div.innerHTML = this.html;
12567         }
12568         //doc.documentElement.innerHTML = htmlBody
12569          
12570         
12571         
12572         this.tpls = [];
12573         var _t = this;
12574         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12575         
12576         var tpls = this.tpls;
12577         
12578         // create a top level template from the snippet..
12579         
12580         //Roo.log(div.innerHTML);
12581         
12582         var tpl = {
12583             uid : 'master',
12584             id : this.id++,
12585             attr : false,
12586             value : false,
12587             body : div.innerHTML,
12588             
12589             forCall : false,
12590             execCall : false,
12591             dom : div,
12592             isTop : true
12593             
12594         };
12595         tpls.unshift(tpl);
12596         
12597         
12598         // compile them...
12599         this.tpls = [];
12600         Roo.each(tpls, function(tp){
12601             this.compileTpl(tp);
12602             this.tpls[tp.id] = tp;
12603         }, this);
12604         
12605         this.master = tpls[0];
12606         return this;
12607         
12608         
12609     },
12610     
12611     compileNode : function(node, istop) {
12612         // test for
12613         //Roo.log(node);
12614         
12615         
12616         // skip anything not a tag..
12617         if (node.nodeType != 1) {
12618             if (node.nodeType == 3 && !this.inPre) {
12619                 // reduce white space..
12620                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12621                 
12622             }
12623             return;
12624         }
12625         
12626         var tpl = {
12627             uid : false,
12628             id : false,
12629             attr : false,
12630             value : false,
12631             body : '',
12632             
12633             forCall : false,
12634             execCall : false,
12635             dom : false,
12636             isTop : istop
12637             
12638             
12639         };
12640         
12641         
12642         switch(true) {
12643             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12644             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12645             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12646             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12647             // no default..
12648         }
12649         
12650         
12651         if (!tpl.attr) {
12652             // just itterate children..
12653             this.iterChild(node,this.compileNode);
12654             return;
12655         }
12656         tpl.uid = this.id++;
12657         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12658         node.removeAttribute('roo-'+ tpl.attr);
12659         if (tpl.attr != 'name') {
12660             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12661             node.parentNode.replaceChild(placeholder,  node);
12662         } else {
12663             
12664             var placeholder =  document.createElement('span');
12665             placeholder.className = 'roo-tpl-' + tpl.value;
12666             node.parentNode.replaceChild(placeholder,  node);
12667         }
12668         
12669         // parent now sees '{domtplXXXX}
12670         this.iterChild(node,this.compileNode);
12671         
12672         // we should now have node body...
12673         var div = document.createElement('div');
12674         div.appendChild(node);
12675         tpl.dom = node;
12676         // this has the unfortunate side effect of converting tagged attributes
12677         // eg. href="{...}" into %7C...%7D
12678         // this has been fixed by searching for those combo's although it's a bit hacky..
12679         
12680         
12681         tpl.body = div.innerHTML;
12682         
12683         
12684          
12685         tpl.id = tpl.uid;
12686         switch(tpl.attr) {
12687             case 'for' :
12688                 switch (tpl.value) {
12689                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12690                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12691                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12692                 }
12693                 break;
12694             
12695             case 'exec':
12696                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12697                 break;
12698             
12699             case 'if':     
12700                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12701                 break;
12702             
12703             case 'name':
12704                 tpl.id  = tpl.value; // replace non characters???
12705                 break;
12706             
12707         }
12708         
12709         
12710         this.tpls.push(tpl);
12711         
12712         
12713         
12714     },
12715     
12716     
12717     
12718     
12719     /**
12720      * Compile a segment of the template into a 'sub-template'
12721      *
12722      * 
12723      * 
12724      *
12725      */
12726     compileTpl : function(tpl)
12727     {
12728         var fm = Roo.util.Format;
12729         var useF = this.disableFormats !== true;
12730         
12731         var sep = Roo.isGecko ? "+\n" : ",\n";
12732         
12733         var undef = function(str) {
12734             Roo.debug && Roo.log("Property not found :"  + str);
12735             return '';
12736         };
12737           
12738         //Roo.log(tpl.body);
12739         
12740         
12741         
12742         var fn = function(m, lbrace, name, format, args)
12743         {
12744             //Roo.log("ARGS");
12745             //Roo.log(arguments);
12746             args = args ? args.replace(/\\'/g,"'") : args;
12747             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12748             if (typeof(format) == 'undefined') {
12749                 format =  'htmlEncode'; 
12750             }
12751             if (format == 'raw' ) {
12752                 format = false;
12753             }
12754             
12755             if(name.substr(0, 6) == 'domtpl'){
12756                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12757             }
12758             
12759             // build an array of options to determine if value is undefined..
12760             
12761             // basically get 'xxxx.yyyy' then do
12762             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12763             //    (function () { Roo.log("Property not found"); return ''; })() :
12764             //    ......
12765             
12766             var udef_ar = [];
12767             var lookfor = '';
12768             Roo.each(name.split('.'), function(st) {
12769                 lookfor += (lookfor.length ? '.': '') + st;
12770                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12771             });
12772             
12773             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12774             
12775             
12776             if(format && useF){
12777                 
12778                 args = args ? ',' + args : "";
12779                  
12780                 if(format.substr(0, 5) != "this."){
12781                     format = "fm." + format + '(';
12782                 }else{
12783                     format = 'this.call("'+ format.substr(5) + '", ';
12784                     args = ", values";
12785                 }
12786                 
12787                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12788             }
12789              
12790             if (args && args.length) {
12791                 // called with xxyx.yuu:(test,test)
12792                 // change to ()
12793                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12794             }
12795             // raw.. - :raw modifier..
12796             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12797             
12798         };
12799         var body;
12800         // branched to use + in gecko and [].join() in others
12801         if(Roo.isGecko){
12802             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12803                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12804                     "';};};";
12805         }else{
12806             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12807             body.push(tpl.body.replace(/(\r\n|\n)/g,
12808                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12809             body.push("'].join('');};};");
12810             body = body.join('');
12811         }
12812         
12813         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12814        
12815         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12816         eval(body);
12817         
12818         return this;
12819     },
12820      
12821     /**
12822      * same as applyTemplate, except it's done to one of the subTemplates
12823      * when using named templates, you can do:
12824      *
12825      * var str = pl.applySubTemplate('your-name', values);
12826      *
12827      * 
12828      * @param {Number} id of the template
12829      * @param {Object} values to apply to template
12830      * @param {Object} parent (normaly the instance of this object)
12831      */
12832     applySubTemplate : function(id, values, parent)
12833     {
12834         
12835         
12836         var t = this.tpls[id];
12837         
12838         
12839         try { 
12840             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12841                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12842                 return '';
12843             }
12844         } catch(e) {
12845             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12846             Roo.log(values);
12847           
12848             return '';
12849         }
12850         try { 
12851             
12852             if(t.execCall && t.execCall.call(this, values, parent)){
12853                 return '';
12854             }
12855         } catch(e) {
12856             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12857             Roo.log(values);
12858             return '';
12859         }
12860         
12861         try {
12862             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12863             parent = t.target ? values : parent;
12864             if(t.forCall && vs instanceof Array){
12865                 var buf = [];
12866                 for(var i = 0, len = vs.length; i < len; i++){
12867                     try {
12868                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12869                     } catch (e) {
12870                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12871                         Roo.log(e.body);
12872                         //Roo.log(t.compiled);
12873                         Roo.log(vs[i]);
12874                     }   
12875                 }
12876                 return buf.join('');
12877             }
12878         } catch (e) {
12879             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12880             Roo.log(values);
12881             return '';
12882         }
12883         try {
12884             return t.compiled.call(this, vs, parent);
12885         } catch (e) {
12886             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12887             Roo.log(e.body);
12888             //Roo.log(t.compiled);
12889             Roo.log(values);
12890             return '';
12891         }
12892     },
12893
12894    
12895
12896     applyTemplate : function(values){
12897         return this.master.compiled.call(this, values, {});
12898         //var s = this.subs;
12899     },
12900
12901     apply : function(){
12902         return this.applyTemplate.apply(this, arguments);
12903     }
12904
12905  });
12906
12907 Roo.DomTemplate.from = function(el){
12908     el = Roo.getDom(el);
12909     return new Roo.Domtemplate(el.value || el.innerHTML);
12910 };/*
12911  * Based on:
12912  * Ext JS Library 1.1.1
12913  * Copyright(c) 2006-2007, Ext JS, LLC.
12914  *
12915  * Originally Released Under LGPL - original licence link has changed is not relivant.
12916  *
12917  * Fork - LGPL
12918  * <script type="text/javascript">
12919  */
12920
12921 /**
12922  * @class Roo.util.DelayedTask
12923  * Provides a convenient method of performing setTimeout where a new
12924  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12925  * You can use this class to buffer
12926  * the keypress events for a certain number of milliseconds, and perform only if they stop
12927  * for that amount of time.
12928  * @constructor The parameters to this constructor serve as defaults and are not required.
12929  * @param {Function} fn (optional) The default function to timeout
12930  * @param {Object} scope (optional) The default scope of that timeout
12931  * @param {Array} args (optional) The default Array of arguments
12932  */
12933 Roo.util.DelayedTask = function(fn, scope, args){
12934     var id = null, d, t;
12935
12936     var call = function(){
12937         var now = new Date().getTime();
12938         if(now - t >= d){
12939             clearInterval(id);
12940             id = null;
12941             fn.apply(scope, args || []);
12942         }
12943     };
12944     /**
12945      * Cancels any pending timeout and queues a new one
12946      * @param {Number} delay The milliseconds to delay
12947      * @param {Function} newFn (optional) Overrides function passed to constructor
12948      * @param {Object} newScope (optional) Overrides scope passed to constructor
12949      * @param {Array} newArgs (optional) Overrides args passed to constructor
12950      */
12951     this.delay = function(delay, newFn, newScope, newArgs){
12952         if(id && delay != d){
12953             this.cancel();
12954         }
12955         d = delay;
12956         t = new Date().getTime();
12957         fn = newFn || fn;
12958         scope = newScope || scope;
12959         args = newArgs || args;
12960         if(!id){
12961             id = setInterval(call, d);
12962         }
12963     };
12964
12965     /**
12966      * Cancel the last queued timeout
12967      */
12968     this.cancel = function(){
12969         if(id){
12970             clearInterval(id);
12971             id = null;
12972         }
12973     };
12974 };/*
12975  * Based on:
12976  * Ext JS Library 1.1.1
12977  * Copyright(c) 2006-2007, Ext JS, LLC.
12978  *
12979  * Originally Released Under LGPL - original licence link has changed is not relivant.
12980  *
12981  * Fork - LGPL
12982  * <script type="text/javascript">
12983  */
12984  
12985  
12986 Roo.util.TaskRunner = function(interval){
12987     interval = interval || 10;
12988     var tasks = [], removeQueue = [];
12989     var id = 0;
12990     var running = false;
12991
12992     var stopThread = function(){
12993         running = false;
12994         clearInterval(id);
12995         id = 0;
12996     };
12997
12998     var startThread = function(){
12999         if(!running){
13000             running = true;
13001             id = setInterval(runTasks, interval);
13002         }
13003     };
13004
13005     var removeTask = function(task){
13006         removeQueue.push(task);
13007         if(task.onStop){
13008             task.onStop();
13009         }
13010     };
13011
13012     var runTasks = function(){
13013         if(removeQueue.length > 0){
13014             for(var i = 0, len = removeQueue.length; i < len; i++){
13015                 tasks.remove(removeQueue[i]);
13016             }
13017             removeQueue = [];
13018             if(tasks.length < 1){
13019                 stopThread();
13020                 return;
13021             }
13022         }
13023         var now = new Date().getTime();
13024         for(var i = 0, len = tasks.length; i < len; ++i){
13025             var t = tasks[i];
13026             var itime = now - t.taskRunTime;
13027             if(t.interval <= itime){
13028                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13029                 t.taskRunTime = now;
13030                 if(rt === false || t.taskRunCount === t.repeat){
13031                     removeTask(t);
13032                     return;
13033                 }
13034             }
13035             if(t.duration && t.duration <= (now - t.taskStartTime)){
13036                 removeTask(t);
13037             }
13038         }
13039     };
13040
13041     /**
13042      * Queues a new task.
13043      * @param {Object} task
13044      */
13045     this.start = function(task){
13046         tasks.push(task);
13047         task.taskStartTime = new Date().getTime();
13048         task.taskRunTime = 0;
13049         task.taskRunCount = 0;
13050         startThread();
13051         return task;
13052     };
13053
13054     this.stop = function(task){
13055         removeTask(task);
13056         return task;
13057     };
13058
13059     this.stopAll = function(){
13060         stopThread();
13061         for(var i = 0, len = tasks.length; i < len; i++){
13062             if(tasks[i].onStop){
13063                 tasks[i].onStop();
13064             }
13065         }
13066         tasks = [];
13067         removeQueue = [];
13068     };
13069 };
13070
13071 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13072  * Based on:
13073  * Ext JS Library 1.1.1
13074  * Copyright(c) 2006-2007, Ext JS, LLC.
13075  *
13076  * Originally Released Under LGPL - original licence link has changed is not relivant.
13077  *
13078  * Fork - LGPL
13079  * <script type="text/javascript">
13080  */
13081
13082  
13083 /**
13084  * @class Roo.util.MixedCollection
13085  * @extends Roo.util.Observable
13086  * A Collection class that maintains both numeric indexes and keys and exposes events.
13087  * @constructor
13088  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13089  * collection (defaults to false)
13090  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13091  * and return the key value for that item.  This is used when available to look up the key on items that
13092  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13093  * equivalent to providing an implementation for the {@link #getKey} method.
13094  */
13095 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13096     this.items = [];
13097     this.map = {};
13098     this.keys = [];
13099     this.length = 0;
13100     this.addEvents({
13101         /**
13102          * @event clear
13103          * Fires when the collection is cleared.
13104          */
13105         "clear" : true,
13106         /**
13107          * @event add
13108          * Fires when an item is added to the collection.
13109          * @param {Number} index The index at which the item was added.
13110          * @param {Object} o The item added.
13111          * @param {String} key The key associated with the added item.
13112          */
13113         "add" : true,
13114         /**
13115          * @event replace
13116          * Fires when an item is replaced in the collection.
13117          * @param {String} key he key associated with the new added.
13118          * @param {Object} old The item being replaced.
13119          * @param {Object} new The new item.
13120          */
13121         "replace" : true,
13122         /**
13123          * @event remove
13124          * Fires when an item is removed from the collection.
13125          * @param {Object} o The item being removed.
13126          * @param {String} key (optional) The key associated with the removed item.
13127          */
13128         "remove" : true,
13129         "sort" : true
13130     });
13131     this.allowFunctions = allowFunctions === true;
13132     if(keyFn){
13133         this.getKey = keyFn;
13134     }
13135     Roo.util.MixedCollection.superclass.constructor.call(this);
13136 };
13137
13138 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13139     allowFunctions : false,
13140     
13141 /**
13142  * Adds an item to the collection.
13143  * @param {String} key The key to associate with the item
13144  * @param {Object} o The item to add.
13145  * @return {Object} The item added.
13146  */
13147     add : function(key, o){
13148         if(arguments.length == 1){
13149             o = arguments[0];
13150             key = this.getKey(o);
13151         }
13152         if(typeof key == "undefined" || key === null){
13153             this.length++;
13154             this.items.push(o);
13155             this.keys.push(null);
13156         }else{
13157             var old = this.map[key];
13158             if(old){
13159                 return this.replace(key, o);
13160             }
13161             this.length++;
13162             this.items.push(o);
13163             this.map[key] = o;
13164             this.keys.push(key);
13165         }
13166         this.fireEvent("add", this.length-1, o, key);
13167         return o;
13168     },
13169        
13170 /**
13171   * MixedCollection has a generic way to fetch keys if you implement getKey.
13172 <pre><code>
13173 // normal way
13174 var mc = new Roo.util.MixedCollection();
13175 mc.add(someEl.dom.id, someEl);
13176 mc.add(otherEl.dom.id, otherEl);
13177 //and so on
13178
13179 // using getKey
13180 var mc = new Roo.util.MixedCollection();
13181 mc.getKey = function(el){
13182    return el.dom.id;
13183 };
13184 mc.add(someEl);
13185 mc.add(otherEl);
13186
13187 // or via the constructor
13188 var mc = new Roo.util.MixedCollection(false, function(el){
13189    return el.dom.id;
13190 });
13191 mc.add(someEl);
13192 mc.add(otherEl);
13193 </code></pre>
13194  * @param o {Object} The item for which to find the key.
13195  * @return {Object} The key for the passed item.
13196  */
13197     getKey : function(o){
13198          return o.id; 
13199     },
13200    
13201 /**
13202  * Replaces an item in the collection.
13203  * @param {String} key The key associated with the item to replace, or the item to replace.
13204  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13205  * @return {Object}  The new item.
13206  */
13207     replace : function(key, o){
13208         if(arguments.length == 1){
13209             o = arguments[0];
13210             key = this.getKey(o);
13211         }
13212         var old = this.item(key);
13213         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13214              return this.add(key, o);
13215         }
13216         var index = this.indexOfKey(key);
13217         this.items[index] = o;
13218         this.map[key] = o;
13219         this.fireEvent("replace", key, old, o);
13220         return o;
13221     },
13222    
13223 /**
13224  * Adds all elements of an Array or an Object to the collection.
13225  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13226  * an Array of values, each of which are added to the collection.
13227  */
13228     addAll : function(objs){
13229         if(arguments.length > 1 || objs instanceof Array){
13230             var args = arguments.length > 1 ? arguments : objs;
13231             for(var i = 0, len = args.length; i < len; i++){
13232                 this.add(args[i]);
13233             }
13234         }else{
13235             for(var key in objs){
13236                 if(this.allowFunctions || typeof objs[key] != "function"){
13237                     this.add(key, objs[key]);
13238                 }
13239             }
13240         }
13241     },
13242    
13243 /**
13244  * Executes the specified function once for every item in the collection, passing each
13245  * item as the first and only parameter. returning false from the function will stop the iteration.
13246  * @param {Function} fn The function to execute for each item.
13247  * @param {Object} scope (optional) The scope in which to execute the function.
13248  */
13249     each : function(fn, scope){
13250         var items = [].concat(this.items); // each safe for removal
13251         for(var i = 0, len = items.length; i < len; i++){
13252             if(fn.call(scope || items[i], items[i], i, len) === false){
13253                 break;
13254             }
13255         }
13256     },
13257    
13258 /**
13259  * Executes the specified function once for every key in the collection, passing each
13260  * key, and its associated item as the first two parameters.
13261  * @param {Function} fn The function to execute for each item.
13262  * @param {Object} scope (optional) The scope in which to execute the function.
13263  */
13264     eachKey : function(fn, scope){
13265         for(var i = 0, len = this.keys.length; i < len; i++){
13266             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13267         }
13268     },
13269    
13270 /**
13271  * Returns the first item in the collection which elicits a true return value from the
13272  * passed selection function.
13273  * @param {Function} fn The selection function to execute for each item.
13274  * @param {Object} scope (optional) The scope in which to execute the function.
13275  * @return {Object} The first item in the collection which returned true from the selection function.
13276  */
13277     find : function(fn, scope){
13278         for(var i = 0, len = this.items.length; i < len; i++){
13279             if(fn.call(scope || window, this.items[i], this.keys[i])){
13280                 return this.items[i];
13281             }
13282         }
13283         return null;
13284     },
13285    
13286 /**
13287  * Inserts an item at the specified index in the collection.
13288  * @param {Number} index The index to insert the item at.
13289  * @param {String} key The key to associate with the new item, or the item itself.
13290  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13291  * @return {Object} The item inserted.
13292  */
13293     insert : function(index, key, o){
13294         if(arguments.length == 2){
13295             o = arguments[1];
13296             key = this.getKey(o);
13297         }
13298         if(index >= this.length){
13299             return this.add(key, o);
13300         }
13301         this.length++;
13302         this.items.splice(index, 0, o);
13303         if(typeof key != "undefined" && key != null){
13304             this.map[key] = o;
13305         }
13306         this.keys.splice(index, 0, key);
13307         this.fireEvent("add", index, o, key);
13308         return o;
13309     },
13310    
13311 /**
13312  * Removed an item from the collection.
13313  * @param {Object} o The item to remove.
13314  * @return {Object} The item removed.
13315  */
13316     remove : function(o){
13317         return this.removeAt(this.indexOf(o));
13318     },
13319    
13320 /**
13321  * Remove an item from a specified index in the collection.
13322  * @param {Number} index The index within the collection of the item to remove.
13323  */
13324     removeAt : function(index){
13325         if(index < this.length && index >= 0){
13326             this.length--;
13327             var o = this.items[index];
13328             this.items.splice(index, 1);
13329             var key = this.keys[index];
13330             if(typeof key != "undefined"){
13331                 delete this.map[key];
13332             }
13333             this.keys.splice(index, 1);
13334             this.fireEvent("remove", o, key);
13335         }
13336     },
13337    
13338 /**
13339  * Removed an item associated with the passed key fom the collection.
13340  * @param {String} key The key of the item to remove.
13341  */
13342     removeKey : function(key){
13343         return this.removeAt(this.indexOfKey(key));
13344     },
13345    
13346 /**
13347  * Returns the number of items in the collection.
13348  * @return {Number} the number of items in the collection.
13349  */
13350     getCount : function(){
13351         return this.length; 
13352     },
13353    
13354 /**
13355  * Returns index within the collection of the passed Object.
13356  * @param {Object} o The item to find the index of.
13357  * @return {Number} index of the item.
13358  */
13359     indexOf : function(o){
13360         if(!this.items.indexOf){
13361             for(var i = 0, len = this.items.length; i < len; i++){
13362                 if(this.items[i] == o) {
13363                     return i;
13364                 }
13365             }
13366             return -1;
13367         }else{
13368             return this.items.indexOf(o);
13369         }
13370     },
13371    
13372 /**
13373  * Returns index within the collection of the passed key.
13374  * @param {String} key The key to find the index of.
13375  * @return {Number} index of the key.
13376  */
13377     indexOfKey : function(key){
13378         if(!this.keys.indexOf){
13379             for(var i = 0, len = this.keys.length; i < len; i++){
13380                 if(this.keys[i] == key) {
13381                     return i;
13382                 }
13383             }
13384             return -1;
13385         }else{
13386             return this.keys.indexOf(key);
13387         }
13388     },
13389    
13390 /**
13391  * Returns the item associated with the passed key OR index. Key has priority over index.
13392  * @param {String/Number} key The key or index of the item.
13393  * @return {Object} The item associated with the passed key.
13394  */
13395     item : function(key){
13396         if (key === 'length') {
13397             return null;
13398         }
13399         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13400         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13401     },
13402     
13403 /**
13404  * Returns the item at the specified index.
13405  * @param {Number} index The index of the item.
13406  * @return {Object}
13407  */
13408     itemAt : function(index){
13409         return this.items[index];
13410     },
13411     
13412 /**
13413  * Returns the item associated with the passed key.
13414  * @param {String/Number} key The key of the item.
13415  * @return {Object} The item associated with the passed key.
13416  */
13417     key : function(key){
13418         return this.map[key];
13419     },
13420    
13421 /**
13422  * Returns true if the collection contains the passed Object as an item.
13423  * @param {Object} o  The Object to look for in the collection.
13424  * @return {Boolean} True if the collection contains the Object as an item.
13425  */
13426     contains : function(o){
13427         return this.indexOf(o) != -1;
13428     },
13429    
13430 /**
13431  * Returns true if the collection contains the passed Object as a key.
13432  * @param {String} key The key to look for in the collection.
13433  * @return {Boolean} True if the collection contains the Object as a key.
13434  */
13435     containsKey : function(key){
13436         return typeof this.map[key] != "undefined";
13437     },
13438    
13439 /**
13440  * Removes all items from the collection.
13441  */
13442     clear : function(){
13443         this.length = 0;
13444         this.items = [];
13445         this.keys = [];
13446         this.map = {};
13447         this.fireEvent("clear");
13448     },
13449    
13450 /**
13451  * Returns the first item in the collection.
13452  * @return {Object} the first item in the collection..
13453  */
13454     first : function(){
13455         return this.items[0]; 
13456     },
13457    
13458 /**
13459  * Returns the last item in the collection.
13460  * @return {Object} the last item in the collection..
13461  */
13462     last : function(){
13463         return this.items[this.length-1];   
13464     },
13465     
13466     _sort : function(property, dir, fn){
13467         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13468         fn = fn || function(a, b){
13469             return a-b;
13470         };
13471         var c = [], k = this.keys, items = this.items;
13472         for(var i = 0, len = items.length; i < len; i++){
13473             c[c.length] = {key: k[i], value: items[i], index: i};
13474         }
13475         c.sort(function(a, b){
13476             var v = fn(a[property], b[property]) * dsc;
13477             if(v == 0){
13478                 v = (a.index < b.index ? -1 : 1);
13479             }
13480             return v;
13481         });
13482         for(var i = 0, len = c.length; i < len; i++){
13483             items[i] = c[i].value;
13484             k[i] = c[i].key;
13485         }
13486         this.fireEvent("sort", this);
13487     },
13488     
13489     /**
13490      * Sorts this collection with the passed comparison function
13491      * @param {String} direction (optional) "ASC" or "DESC"
13492      * @param {Function} fn (optional) comparison function
13493      */
13494     sort : function(dir, fn){
13495         this._sort("value", dir, fn);
13496     },
13497     
13498     /**
13499      * Sorts this collection by keys
13500      * @param {String} direction (optional) "ASC" or "DESC"
13501      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13502      */
13503     keySort : function(dir, fn){
13504         this._sort("key", dir, fn || function(a, b){
13505             return String(a).toUpperCase()-String(b).toUpperCase();
13506         });
13507     },
13508     
13509     /**
13510      * Returns a range of items in this collection
13511      * @param {Number} startIndex (optional) defaults to 0
13512      * @param {Number} endIndex (optional) default to the last item
13513      * @return {Array} An array of items
13514      */
13515     getRange : function(start, end){
13516         var items = this.items;
13517         if(items.length < 1){
13518             return [];
13519         }
13520         start = start || 0;
13521         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13522         var r = [];
13523         if(start <= end){
13524             for(var i = start; i <= end; i++) {
13525                     r[r.length] = items[i];
13526             }
13527         }else{
13528             for(var i = start; i >= end; i--) {
13529                     r[r.length] = items[i];
13530             }
13531         }
13532         return r;
13533     },
13534         
13535     /**
13536      * Filter the <i>objects</i> in this collection by a specific property. 
13537      * Returns a new collection that has been filtered.
13538      * @param {String} property A property on your objects
13539      * @param {String/RegExp} value Either string that the property values 
13540      * should start with or a RegExp to test against the property
13541      * @return {MixedCollection} The new filtered collection
13542      */
13543     filter : function(property, value){
13544         if(!value.exec){ // not a regex
13545             value = String(value);
13546             if(value.length == 0){
13547                 return this.clone();
13548             }
13549             value = new RegExp("^" + Roo.escapeRe(value), "i");
13550         }
13551         return this.filterBy(function(o){
13552             return o && value.test(o[property]);
13553         });
13554         },
13555     
13556     /**
13557      * Filter by a function. * Returns a new collection that has been filtered.
13558      * The passed function will be called with each 
13559      * object in the collection. If the function returns true, the value is included 
13560      * otherwise it is filtered.
13561      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13562      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13563      * @return {MixedCollection} The new filtered collection
13564      */
13565     filterBy : function(fn, scope){
13566         var r = new Roo.util.MixedCollection();
13567         r.getKey = this.getKey;
13568         var k = this.keys, it = this.items;
13569         for(var i = 0, len = it.length; i < len; i++){
13570             if(fn.call(scope||this, it[i], k[i])){
13571                                 r.add(k[i], it[i]);
13572                         }
13573         }
13574         return r;
13575     },
13576     
13577     /**
13578      * Creates a duplicate of this collection
13579      * @return {MixedCollection}
13580      */
13581     clone : function(){
13582         var r = new Roo.util.MixedCollection();
13583         var k = this.keys, it = this.items;
13584         for(var i = 0, len = it.length; i < len; i++){
13585             r.add(k[i], it[i]);
13586         }
13587         r.getKey = this.getKey;
13588         return r;
13589     }
13590 });
13591 /**
13592  * Returns the item associated with the passed key or index.
13593  * @method
13594  * @param {String/Number} key The key or index of the item.
13595  * @return {Object} The item associated with the passed key.
13596  */
13597 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13598  * Based on:
13599  * Ext JS Library 1.1.1
13600  * Copyright(c) 2006-2007, Ext JS, LLC.
13601  *
13602  * Originally Released Under LGPL - original licence link has changed is not relivant.
13603  *
13604  * Fork - LGPL
13605  * <script type="text/javascript">
13606  */
13607 /**
13608  * @class Roo.util.JSON
13609  * Modified version of Douglas Crockford"s json.js that doesn"t
13610  * mess with the Object prototype 
13611  * http://www.json.org/js.html
13612  * @singleton
13613  */
13614 Roo.util.JSON = new (function(){
13615     var useHasOwn = {}.hasOwnProperty ? true : false;
13616     
13617     // crashes Safari in some instances
13618     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13619     
13620     var pad = function(n) {
13621         return n < 10 ? "0" + n : n;
13622     };
13623     
13624     var m = {
13625         "\b": '\\b',
13626         "\t": '\\t',
13627         "\n": '\\n',
13628         "\f": '\\f',
13629         "\r": '\\r',
13630         '"' : '\\"',
13631         "\\": '\\\\'
13632     };
13633
13634     var encodeString = function(s){
13635         if (/["\\\x00-\x1f]/.test(s)) {
13636             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13637                 var c = m[b];
13638                 if(c){
13639                     return c;
13640                 }
13641                 c = b.charCodeAt();
13642                 return "\\u00" +
13643                     Math.floor(c / 16).toString(16) +
13644                     (c % 16).toString(16);
13645             }) + '"';
13646         }
13647         return '"' + s + '"';
13648     };
13649     
13650     var encodeArray = function(o){
13651         var a = ["["], b, i, l = o.length, v;
13652             for (i = 0; i < l; i += 1) {
13653                 v = o[i];
13654                 switch (typeof v) {
13655                     case "undefined":
13656                     case "function":
13657                     case "unknown":
13658                         break;
13659                     default:
13660                         if (b) {
13661                             a.push(',');
13662                         }
13663                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13664                         b = true;
13665                 }
13666             }
13667             a.push("]");
13668             return a.join("");
13669     };
13670     
13671     var encodeDate = function(o){
13672         return '"' + o.getFullYear() + "-" +
13673                 pad(o.getMonth() + 1) + "-" +
13674                 pad(o.getDate()) + "T" +
13675                 pad(o.getHours()) + ":" +
13676                 pad(o.getMinutes()) + ":" +
13677                 pad(o.getSeconds()) + '"';
13678     };
13679     
13680     /**
13681      * Encodes an Object, Array or other value
13682      * @param {Mixed} o The variable to encode
13683      * @return {String} The JSON string
13684      */
13685     this.encode = function(o)
13686     {
13687         // should this be extended to fully wrap stringify..
13688         
13689         if(typeof o == "undefined" || o === null){
13690             return "null";
13691         }else if(o instanceof Array){
13692             return encodeArray(o);
13693         }else if(o instanceof Date){
13694             return encodeDate(o);
13695         }else if(typeof o == "string"){
13696             return encodeString(o);
13697         }else if(typeof o == "number"){
13698             return isFinite(o) ? String(o) : "null";
13699         }else if(typeof o == "boolean"){
13700             return String(o);
13701         }else {
13702             var a = ["{"], b, i, v;
13703             for (i in o) {
13704                 if(!useHasOwn || o.hasOwnProperty(i)) {
13705                     v = o[i];
13706                     switch (typeof v) {
13707                     case "undefined":
13708                     case "function":
13709                     case "unknown":
13710                         break;
13711                     default:
13712                         if(b){
13713                             a.push(',');
13714                         }
13715                         a.push(this.encode(i), ":",
13716                                 v === null ? "null" : this.encode(v));
13717                         b = true;
13718                     }
13719                 }
13720             }
13721             a.push("}");
13722             return a.join("");
13723         }
13724     };
13725     
13726     /**
13727      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13728      * @param {String} json The JSON string
13729      * @return {Object} The resulting object
13730      */
13731     this.decode = function(json){
13732         
13733         return  /** eval:var:json */ eval("(" + json + ')');
13734     };
13735 })();
13736 /** 
13737  * Shorthand for {@link Roo.util.JSON#encode}
13738  * @member Roo encode 
13739  * @method */
13740 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13741 /** 
13742  * Shorthand for {@link Roo.util.JSON#decode}
13743  * @member Roo decode 
13744  * @method */
13745 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13746 /*
13747  * Based on:
13748  * Ext JS Library 1.1.1
13749  * Copyright(c) 2006-2007, Ext JS, LLC.
13750  *
13751  * Originally Released Under LGPL - original licence link has changed is not relivant.
13752  *
13753  * Fork - LGPL
13754  * <script type="text/javascript">
13755  */
13756  
13757 /**
13758  * @class Roo.util.Format
13759  * Reusable data formatting functions
13760  * @singleton
13761  */
13762 Roo.util.Format = function(){
13763     var trimRe = /^\s+|\s+$/g;
13764     return {
13765         /**
13766          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13767          * @param {String} value The string to truncate
13768          * @param {Number} length The maximum length to allow before truncating
13769          * @return {String} The converted text
13770          */
13771         ellipsis : function(value, len){
13772             if(value && value.length > len){
13773                 return value.substr(0, len-3)+"...";
13774             }
13775             return value;
13776         },
13777
13778         /**
13779          * Checks a reference and converts it to empty string if it is undefined
13780          * @param {Mixed} value Reference to check
13781          * @return {Mixed} Empty string if converted, otherwise the original value
13782          */
13783         undef : function(value){
13784             return typeof value != "undefined" ? value : "";
13785         },
13786
13787         /**
13788          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13789          * @param {String} value The string to encode
13790          * @return {String} The encoded text
13791          */
13792         htmlEncode : function(value){
13793             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13794         },
13795
13796         /**
13797          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13798          * @param {String} value The string to decode
13799          * @return {String} The decoded text
13800          */
13801         htmlDecode : function(value){
13802             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13803         },
13804
13805         /**
13806          * Trims any whitespace from either side of a string
13807          * @param {String} value The text to trim
13808          * @return {String} The trimmed text
13809          */
13810         trim : function(value){
13811             return String(value).replace(trimRe, "");
13812         },
13813
13814         /**
13815          * Returns a substring from within an original string
13816          * @param {String} value The original text
13817          * @param {Number} start The start index of the substring
13818          * @param {Number} length The length of the substring
13819          * @return {String} The substring
13820          */
13821         substr : function(value, start, length){
13822             return String(value).substr(start, length);
13823         },
13824
13825         /**
13826          * Converts a string to all lower case letters
13827          * @param {String} value The text to convert
13828          * @return {String} The converted text
13829          */
13830         lowercase : function(value){
13831             return String(value).toLowerCase();
13832         },
13833
13834         /**
13835          * Converts a string to all upper case letters
13836          * @param {String} value The text to convert
13837          * @return {String} The converted text
13838          */
13839         uppercase : function(value){
13840             return String(value).toUpperCase();
13841         },
13842
13843         /**
13844          * Converts the first character only of a string to upper case
13845          * @param {String} value The text to convert
13846          * @return {String} The converted text
13847          */
13848         capitalize : function(value){
13849             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13850         },
13851
13852         // private
13853         call : function(value, fn){
13854             if(arguments.length > 2){
13855                 var args = Array.prototype.slice.call(arguments, 2);
13856                 args.unshift(value);
13857                  
13858                 return /** eval:var:value */  eval(fn).apply(window, args);
13859             }else{
13860                 /** eval:var:value */
13861                 return /** eval:var:value */ eval(fn).call(window, value);
13862             }
13863         },
13864
13865        
13866         /**
13867          * safer version of Math.toFixed..??/
13868          * @param {Number/String} value The numeric value to format
13869          * @param {Number/String} value Decimal places 
13870          * @return {String} The formatted currency string
13871          */
13872         toFixed : function(v, n)
13873         {
13874             // why not use to fixed - precision is buggered???
13875             if (!n) {
13876                 return Math.round(v-0);
13877             }
13878             var fact = Math.pow(10,n+1);
13879             v = (Math.round((v-0)*fact))/fact;
13880             var z = (''+fact).substring(2);
13881             if (v == Math.floor(v)) {
13882                 return Math.floor(v) + '.' + z;
13883             }
13884             
13885             // now just padd decimals..
13886             var ps = String(v).split('.');
13887             var fd = (ps[1] + z);
13888             var r = fd.substring(0,n); 
13889             var rm = fd.substring(n); 
13890             if (rm < 5) {
13891                 return ps[0] + '.' + r;
13892             }
13893             r*=1; // turn it into a number;
13894             r++;
13895             if (String(r).length != n) {
13896                 ps[0]*=1;
13897                 ps[0]++;
13898                 r = String(r).substring(1); // chop the end off.
13899             }
13900             
13901             return ps[0] + '.' + r;
13902              
13903         },
13904         
13905         /**
13906          * Format a number as US currency
13907          * @param {Number/String} value The numeric value to format
13908          * @return {String} The formatted currency string
13909          */
13910         usMoney : function(v){
13911             return '$' + Roo.util.Format.number(v);
13912         },
13913         
13914         /**
13915          * Format a number
13916          * eventually this should probably emulate php's number_format
13917          * @param {Number/String} value The numeric value to format
13918          * @param {Number} decimals number of decimal places
13919          * @param {String} delimiter for thousands (default comma)
13920          * @return {String} The formatted currency string
13921          */
13922         number : function(v, decimals, thousandsDelimiter)
13923         {
13924             // multiply and round.
13925             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13926             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13927             
13928             var mul = Math.pow(10, decimals);
13929             var zero = String(mul).substring(1);
13930             v = (Math.round((v-0)*mul))/mul;
13931             
13932             // if it's '0' number.. then
13933             
13934             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13935             v = String(v);
13936             var ps = v.split('.');
13937             var whole = ps[0];
13938             
13939             var r = /(\d+)(\d{3})/;
13940             // add comma's
13941             
13942             if(thousandsDelimiter.length != 0) {
13943                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13944             } 
13945             
13946             var sub = ps[1] ?
13947                     // has decimals..
13948                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13949                     // does not have decimals
13950                     (decimals ? ('.' + zero) : '');
13951             
13952             
13953             return whole + sub ;
13954         },
13955         
13956         /**
13957          * Parse a value into a formatted date using the specified format pattern.
13958          * @param {Mixed} value The value to format
13959          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13960          * @return {String} The formatted date string
13961          */
13962         date : function(v, format){
13963             if(!v){
13964                 return "";
13965             }
13966             if(!(v instanceof Date)){
13967                 v = new Date(Date.parse(v));
13968             }
13969             return v.dateFormat(format || Roo.util.Format.defaults.date);
13970         },
13971
13972         /**
13973          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13974          * @param {String} format Any valid date format string
13975          * @return {Function} The date formatting function
13976          */
13977         dateRenderer : function(format){
13978             return function(v){
13979                 return Roo.util.Format.date(v, format);  
13980             };
13981         },
13982
13983         // private
13984         stripTagsRE : /<\/?[^>]+>/gi,
13985         
13986         /**
13987          * Strips all HTML tags
13988          * @param {Mixed} value The text from which to strip tags
13989          * @return {String} The stripped text
13990          */
13991         stripTags : function(v){
13992             return !v ? v : String(v).replace(this.stripTagsRE, "");
13993         },
13994         
13995         /**
13996          * Size in Mb,Gb etc.
13997          * @param {Number} value The number to be formated
13998          * @param {number} decimals how many decimal places
13999          * @return {String} the formated string
14000          */
14001         size : function(value, decimals)
14002         {
14003             var sizes = ['b', 'k', 'M', 'G', 'T'];
14004             if (value == 0) {
14005                 return 0;
14006             }
14007             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14008             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14009         }
14010         
14011         
14012         
14013     };
14014 }();
14015 Roo.util.Format.defaults = {
14016     date : 'd/M/Y'
14017 };/*
14018  * Based on:
14019  * Ext JS Library 1.1.1
14020  * Copyright(c) 2006-2007, Ext JS, LLC.
14021  *
14022  * Originally Released Under LGPL - original licence link has changed is not relivant.
14023  *
14024  * Fork - LGPL
14025  * <script type="text/javascript">
14026  */
14027
14028
14029  
14030
14031 /**
14032  * @class Roo.MasterTemplate
14033  * @extends Roo.Template
14034  * Provides a template that can have child templates. The syntax is:
14035 <pre><code>
14036 var t = new Roo.MasterTemplate(
14037         '&lt;select name="{name}"&gt;',
14038                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14039         '&lt;/select&gt;'
14040 );
14041 t.add('options', {value: 'foo', text: 'bar'});
14042 // or you can add multiple child elements in one shot
14043 t.addAll('options', [
14044     {value: 'foo', text: 'bar'},
14045     {value: 'foo2', text: 'bar2'},
14046     {value: 'foo3', text: 'bar3'}
14047 ]);
14048 // then append, applying the master template values
14049 t.append('my-form', {name: 'my-select'});
14050 </code></pre>
14051 * A name attribute for the child template is not required if you have only one child
14052 * template or you want to refer to them by index.
14053  */
14054 Roo.MasterTemplate = function(){
14055     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14056     this.originalHtml = this.html;
14057     var st = {};
14058     var m, re = this.subTemplateRe;
14059     re.lastIndex = 0;
14060     var subIndex = 0;
14061     while(m = re.exec(this.html)){
14062         var name = m[1], content = m[2];
14063         st[subIndex] = {
14064             name: name,
14065             index: subIndex,
14066             buffer: [],
14067             tpl : new Roo.Template(content)
14068         };
14069         if(name){
14070             st[name] = st[subIndex];
14071         }
14072         st[subIndex].tpl.compile();
14073         st[subIndex].tpl.call = this.call.createDelegate(this);
14074         subIndex++;
14075     }
14076     this.subCount = subIndex;
14077     this.subs = st;
14078 };
14079 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14080     /**
14081     * The regular expression used to match sub templates
14082     * @type RegExp
14083     * @property
14084     */
14085     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14086
14087     /**
14088      * Applies the passed values to a child template.
14089      * @param {String/Number} name (optional) The name or index of the child template
14090      * @param {Array/Object} values The values to be applied to the template
14091      * @return {MasterTemplate} this
14092      */
14093      add : function(name, values){
14094         if(arguments.length == 1){
14095             values = arguments[0];
14096             name = 0;
14097         }
14098         var s = this.subs[name];
14099         s.buffer[s.buffer.length] = s.tpl.apply(values);
14100         return this;
14101     },
14102
14103     /**
14104      * Applies all the passed values to a child template.
14105      * @param {String/Number} name (optional) The name or index of the child template
14106      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14107      * @param {Boolean} reset (optional) True to reset the template first
14108      * @return {MasterTemplate} this
14109      */
14110     fill : function(name, values, reset){
14111         var a = arguments;
14112         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14113             values = a[0];
14114             name = 0;
14115             reset = a[1];
14116         }
14117         if(reset){
14118             this.reset();
14119         }
14120         for(var i = 0, len = values.length; i < len; i++){
14121             this.add(name, values[i]);
14122         }
14123         return this;
14124     },
14125
14126     /**
14127      * Resets the template for reuse
14128      * @return {MasterTemplate} this
14129      */
14130      reset : function(){
14131         var s = this.subs;
14132         for(var i = 0; i < this.subCount; i++){
14133             s[i].buffer = [];
14134         }
14135         return this;
14136     },
14137
14138     applyTemplate : function(values){
14139         var s = this.subs;
14140         var replaceIndex = -1;
14141         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14142             return s[++replaceIndex].buffer.join("");
14143         });
14144         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14145     },
14146
14147     apply : function(){
14148         return this.applyTemplate.apply(this, arguments);
14149     },
14150
14151     compile : function(){return this;}
14152 });
14153
14154 /**
14155  * Alias for fill().
14156  * @method
14157  */
14158 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14159  /**
14160  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14161  * var tpl = Roo.MasterTemplate.from('element-id');
14162  * @param {String/HTMLElement} el
14163  * @param {Object} config
14164  * @static
14165  */
14166 Roo.MasterTemplate.from = function(el, config){
14167     el = Roo.getDom(el);
14168     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14169 };/*
14170  * Based on:
14171  * Ext JS Library 1.1.1
14172  * Copyright(c) 2006-2007, Ext JS, LLC.
14173  *
14174  * Originally Released Under LGPL - original licence link has changed is not relivant.
14175  *
14176  * Fork - LGPL
14177  * <script type="text/javascript">
14178  */
14179
14180  
14181 /**
14182  * @class Roo.util.CSS
14183  * Utility class for manipulating CSS rules
14184  * @singleton
14185  */
14186 Roo.util.CSS = function(){
14187         var rules = null;
14188         var doc = document;
14189
14190     var camelRe = /(-[a-z])/gi;
14191     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14192
14193    return {
14194    /**
14195     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14196     * tag and appended to the HEAD of the document.
14197     * @param {String|Object} cssText The text containing the css rules
14198     * @param {String} id An id to add to the stylesheet for later removal
14199     * @return {StyleSheet}
14200     */
14201     createStyleSheet : function(cssText, id){
14202         var ss;
14203         var head = doc.getElementsByTagName("head")[0];
14204         var nrules = doc.createElement("style");
14205         nrules.setAttribute("type", "text/css");
14206         if(id){
14207             nrules.setAttribute("id", id);
14208         }
14209         if (typeof(cssText) != 'string') {
14210             // support object maps..
14211             // not sure if this a good idea.. 
14212             // perhaps it should be merged with the general css handling
14213             // and handle js style props.
14214             var cssTextNew = [];
14215             for(var n in cssText) {
14216                 var citems = [];
14217                 for(var k in cssText[n]) {
14218                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14219                 }
14220                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14221                 
14222             }
14223             cssText = cssTextNew.join("\n");
14224             
14225         }
14226        
14227        
14228        if(Roo.isIE){
14229            head.appendChild(nrules);
14230            ss = nrules.styleSheet;
14231            ss.cssText = cssText;
14232        }else{
14233            try{
14234                 nrules.appendChild(doc.createTextNode(cssText));
14235            }catch(e){
14236                nrules.cssText = cssText; 
14237            }
14238            head.appendChild(nrules);
14239            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14240        }
14241        this.cacheStyleSheet(ss);
14242        return ss;
14243    },
14244
14245    /**
14246     * Removes a style or link tag by id
14247     * @param {String} id The id of the tag
14248     */
14249    removeStyleSheet : function(id){
14250        var existing = doc.getElementById(id);
14251        if(existing){
14252            existing.parentNode.removeChild(existing);
14253        }
14254    },
14255
14256    /**
14257     * Dynamically swaps an existing stylesheet reference for a new one
14258     * @param {String} id The id of an existing link tag to remove
14259     * @param {String} url The href of the new stylesheet to include
14260     */
14261    swapStyleSheet : function(id, url){
14262        this.removeStyleSheet(id);
14263        var ss = doc.createElement("link");
14264        ss.setAttribute("rel", "stylesheet");
14265        ss.setAttribute("type", "text/css");
14266        ss.setAttribute("id", id);
14267        ss.setAttribute("href", url);
14268        doc.getElementsByTagName("head")[0].appendChild(ss);
14269    },
14270    
14271    /**
14272     * Refresh the rule cache if you have dynamically added stylesheets
14273     * @return {Object} An object (hash) of rules indexed by selector
14274     */
14275    refreshCache : function(){
14276        return this.getRules(true);
14277    },
14278
14279    // private
14280    cacheStyleSheet : function(stylesheet){
14281        if(!rules){
14282            rules = {};
14283        }
14284        try{// try catch for cross domain access issue
14285            var ssRules = stylesheet.cssRules || stylesheet.rules;
14286            for(var j = ssRules.length-1; j >= 0; --j){
14287                rules[ssRules[j].selectorText] = ssRules[j];
14288            }
14289        }catch(e){}
14290    },
14291    
14292    /**
14293     * Gets all css rules for the document
14294     * @param {Boolean} refreshCache true to refresh the internal cache
14295     * @return {Object} An object (hash) of rules indexed by selector
14296     */
14297    getRules : function(refreshCache){
14298                 if(rules == null || refreshCache){
14299                         rules = {};
14300                         var ds = doc.styleSheets;
14301                         for(var i =0, len = ds.length; i < len; i++){
14302                             try{
14303                         this.cacheStyleSheet(ds[i]);
14304                     }catch(e){} 
14305                 }
14306                 }
14307                 return rules;
14308         },
14309         
14310         /**
14311     * Gets an an individual CSS rule by selector(s)
14312     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14313     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14314     * @return {CSSRule} The CSS rule or null if one is not found
14315     */
14316    getRule : function(selector, refreshCache){
14317                 var rs = this.getRules(refreshCache);
14318                 if(!(selector instanceof Array)){
14319                     return rs[selector];
14320                 }
14321                 for(var i = 0; i < selector.length; i++){
14322                         if(rs[selector[i]]){
14323                                 return rs[selector[i]];
14324                         }
14325                 }
14326                 return null;
14327         },
14328         
14329         
14330         /**
14331     * Updates a rule property
14332     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14333     * @param {String} property The css property
14334     * @param {String} value The new value for the property
14335     * @return {Boolean} true If a rule was found and updated
14336     */
14337    updateRule : function(selector, property, value){
14338                 if(!(selector instanceof Array)){
14339                         var rule = this.getRule(selector);
14340                         if(rule){
14341                                 rule.style[property.replace(camelRe, camelFn)] = value;
14342                                 return true;
14343                         }
14344                 }else{
14345                         for(var i = 0; i < selector.length; i++){
14346                                 if(this.updateRule(selector[i], property, value)){
14347                                         return true;
14348                                 }
14349                         }
14350                 }
14351                 return false;
14352         }
14353    };   
14354 }();/*
14355  * Based on:
14356  * Ext JS Library 1.1.1
14357  * Copyright(c) 2006-2007, Ext JS, LLC.
14358  *
14359  * Originally Released Under LGPL - original licence link has changed is not relivant.
14360  *
14361  * Fork - LGPL
14362  * <script type="text/javascript">
14363  */
14364
14365  
14366
14367 /**
14368  * @class Roo.util.ClickRepeater
14369  * @extends Roo.util.Observable
14370  * 
14371  * A wrapper class which can be applied to any element. Fires a "click" event while the
14372  * mouse is pressed. The interval between firings may be specified in the config but
14373  * defaults to 10 milliseconds.
14374  * 
14375  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14376  * 
14377  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14378  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14379  * Similar to an autorepeat key delay.
14380  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14381  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14382  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14383  *           "interval" and "delay" are ignored. "immediate" is honored.
14384  * @cfg {Boolean} preventDefault True to prevent the default click event
14385  * @cfg {Boolean} stopDefault True to stop the default click event
14386  * 
14387  * @history
14388  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14389  *     2007-02-02 jvs Renamed to ClickRepeater
14390  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14391  *
14392  *  @constructor
14393  * @param {String/HTMLElement/Element} el The element to listen on
14394  * @param {Object} config
14395  **/
14396 Roo.util.ClickRepeater = function(el, config)
14397 {
14398     this.el = Roo.get(el);
14399     this.el.unselectable();
14400
14401     Roo.apply(this, config);
14402
14403     this.addEvents({
14404     /**
14405      * @event mousedown
14406      * Fires when the mouse button is depressed.
14407      * @param {Roo.util.ClickRepeater} this
14408      */
14409         "mousedown" : true,
14410     /**
14411      * @event click
14412      * Fires on a specified interval during the time the element is pressed.
14413      * @param {Roo.util.ClickRepeater} this
14414      */
14415         "click" : true,
14416     /**
14417      * @event mouseup
14418      * Fires when the mouse key is released.
14419      * @param {Roo.util.ClickRepeater} this
14420      */
14421         "mouseup" : true
14422     });
14423
14424     this.el.on("mousedown", this.handleMouseDown, this);
14425     if(this.preventDefault || this.stopDefault){
14426         this.el.on("click", function(e){
14427             if(this.preventDefault){
14428                 e.preventDefault();
14429             }
14430             if(this.stopDefault){
14431                 e.stopEvent();
14432             }
14433         }, this);
14434     }
14435
14436     // allow inline handler
14437     if(this.handler){
14438         this.on("click", this.handler,  this.scope || this);
14439     }
14440
14441     Roo.util.ClickRepeater.superclass.constructor.call(this);
14442 };
14443
14444 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14445     interval : 20,
14446     delay: 250,
14447     preventDefault : true,
14448     stopDefault : false,
14449     timer : 0,
14450
14451     // private
14452     handleMouseDown : function(){
14453         clearTimeout(this.timer);
14454         this.el.blur();
14455         if(this.pressClass){
14456             this.el.addClass(this.pressClass);
14457         }
14458         this.mousedownTime = new Date();
14459
14460         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14461         this.el.on("mouseout", this.handleMouseOut, this);
14462
14463         this.fireEvent("mousedown", this);
14464         this.fireEvent("click", this);
14465         
14466         this.timer = this.click.defer(this.delay || this.interval, this);
14467     },
14468
14469     // private
14470     click : function(){
14471         this.fireEvent("click", this);
14472         this.timer = this.click.defer(this.getInterval(), this);
14473     },
14474
14475     // private
14476     getInterval: function(){
14477         if(!this.accelerate){
14478             return this.interval;
14479         }
14480         var pressTime = this.mousedownTime.getElapsed();
14481         if(pressTime < 500){
14482             return 400;
14483         }else if(pressTime < 1700){
14484             return 320;
14485         }else if(pressTime < 2600){
14486             return 250;
14487         }else if(pressTime < 3500){
14488             return 180;
14489         }else if(pressTime < 4400){
14490             return 140;
14491         }else if(pressTime < 5300){
14492             return 80;
14493         }else if(pressTime < 6200){
14494             return 50;
14495         }else{
14496             return 10;
14497         }
14498     },
14499
14500     // private
14501     handleMouseOut : function(){
14502         clearTimeout(this.timer);
14503         if(this.pressClass){
14504             this.el.removeClass(this.pressClass);
14505         }
14506         this.el.on("mouseover", this.handleMouseReturn, this);
14507     },
14508
14509     // private
14510     handleMouseReturn : function(){
14511         this.el.un("mouseover", this.handleMouseReturn);
14512         if(this.pressClass){
14513             this.el.addClass(this.pressClass);
14514         }
14515         this.click();
14516     },
14517
14518     // private
14519     handleMouseUp : function(){
14520         clearTimeout(this.timer);
14521         this.el.un("mouseover", this.handleMouseReturn);
14522         this.el.un("mouseout", this.handleMouseOut);
14523         Roo.get(document).un("mouseup", this.handleMouseUp);
14524         this.el.removeClass(this.pressClass);
14525         this.fireEvent("mouseup", this);
14526     }
14527 });/**
14528  * @class Roo.util.Clipboard
14529  * @static
14530  * 
14531  * Clipboard UTILS
14532  * 
14533  **/
14534 Roo.util.Clipboard = {
14535     /**
14536      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14537      * @param {String} text to copy to clipboard
14538      */
14539     write : function(text) {
14540         // navigator clipboard api needs a secure context (https)
14541         if (navigator.clipboard && window.isSecureContext) {
14542             // navigator clipboard api method'
14543             navigator.clipboard.writeText(text);
14544             return ;
14545         } 
14546         // text area method
14547         var ta = document.createElement("textarea");
14548         ta.value = text;
14549         // make the textarea out of viewport
14550         ta.style.position = "fixed";
14551         ta.style.left = "-999999px";
14552         ta.style.top = "-999999px";
14553         document.body.appendChild(ta);
14554         ta.focus();
14555         ta.select();
14556         document.execCommand('copy');
14557         (function() {
14558             ta.remove();
14559         }).defer(100);
14560         
14561     }
14562         
14563 }
14564     /*
14565  * Based on:
14566  * Ext JS Library 1.1.1
14567  * Copyright(c) 2006-2007, Ext JS, LLC.
14568  *
14569  * Originally Released Under LGPL - original licence link has changed is not relivant.
14570  *
14571  * Fork - LGPL
14572  * <script type="text/javascript">
14573  */
14574
14575  
14576 /**
14577  * @class Roo.KeyNav
14578  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14579  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14580  * way to implement custom navigation schemes for any UI component.</p>
14581  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14582  * pageUp, pageDown, del, home, end.  Usage:</p>
14583  <pre><code>
14584 var nav = new Roo.KeyNav("my-element", {
14585     "left" : function(e){
14586         this.moveLeft(e.ctrlKey);
14587     },
14588     "right" : function(e){
14589         this.moveRight(e.ctrlKey);
14590     },
14591     "enter" : function(e){
14592         this.save();
14593     },
14594     scope : this
14595 });
14596 </code></pre>
14597  * @constructor
14598  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14599  * @param {Object} config The config
14600  */
14601 Roo.KeyNav = function(el, config){
14602     this.el = Roo.get(el);
14603     Roo.apply(this, config);
14604     if(!this.disabled){
14605         this.disabled = true;
14606         this.enable();
14607     }
14608 };
14609
14610 Roo.KeyNav.prototype = {
14611     /**
14612      * @cfg {Boolean} disabled
14613      * True to disable this KeyNav instance (defaults to false)
14614      */
14615     disabled : false,
14616     /**
14617      * @cfg {String} defaultEventAction
14618      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14619      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14620      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14621      */
14622     defaultEventAction: "stopEvent",
14623     /**
14624      * @cfg {Boolean} forceKeyDown
14625      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14626      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14627      * handle keydown instead of keypress.
14628      */
14629     forceKeyDown : false,
14630
14631     // private
14632     prepareEvent : function(e){
14633         var k = e.getKey();
14634         var h = this.keyToHandler[k];
14635         //if(h && this[h]){
14636         //    e.stopPropagation();
14637         //}
14638         if(Roo.isSafari && h && k >= 37 && k <= 40){
14639             e.stopEvent();
14640         }
14641     },
14642
14643     // private
14644     relay : function(e){
14645         var k = e.getKey();
14646         var h = this.keyToHandler[k];
14647         if(h && this[h]){
14648             if(this.doRelay(e, this[h], h) !== true){
14649                 e[this.defaultEventAction]();
14650             }
14651         }
14652     },
14653
14654     // private
14655     doRelay : function(e, h, hname){
14656         return h.call(this.scope || this, e);
14657     },
14658
14659     // possible handlers
14660     enter : false,
14661     left : false,
14662     right : false,
14663     up : false,
14664     down : false,
14665     tab : false,
14666     esc : false,
14667     pageUp : false,
14668     pageDown : false,
14669     del : false,
14670     home : false,
14671     end : false,
14672
14673     // quick lookup hash
14674     keyToHandler : {
14675         37 : "left",
14676         39 : "right",
14677         38 : "up",
14678         40 : "down",
14679         33 : "pageUp",
14680         34 : "pageDown",
14681         46 : "del",
14682         36 : "home",
14683         35 : "end",
14684         13 : "enter",
14685         27 : "esc",
14686         9  : "tab"
14687     },
14688
14689         /**
14690          * Enable this KeyNav
14691          */
14692         enable: function(){
14693                 if(this.disabled){
14694             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14695             // the EventObject will normalize Safari automatically
14696             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14697                 this.el.on("keydown", this.relay,  this);
14698             }else{
14699                 this.el.on("keydown", this.prepareEvent,  this);
14700                 this.el.on("keypress", this.relay,  this);
14701             }
14702                     this.disabled = false;
14703                 }
14704         },
14705
14706         /**
14707          * Disable this KeyNav
14708          */
14709         disable: function(){
14710                 if(!this.disabled){
14711                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14712                 this.el.un("keydown", this.relay);
14713             }else{
14714                 this.el.un("keydown", this.prepareEvent);
14715                 this.el.un("keypress", this.relay);
14716             }
14717                     this.disabled = true;
14718                 }
14719         }
14720 };/*
14721  * Based on:
14722  * Ext JS Library 1.1.1
14723  * Copyright(c) 2006-2007, Ext JS, LLC.
14724  *
14725  * Originally Released Under LGPL - original licence link has changed is not relivant.
14726  *
14727  * Fork - LGPL
14728  * <script type="text/javascript">
14729  */
14730
14731  
14732 /**
14733  * @class Roo.KeyMap
14734  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14735  * The constructor accepts the same config object as defined by {@link #addBinding}.
14736  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14737  * combination it will call the function with this signature (if the match is a multi-key
14738  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14739  * A KeyMap can also handle a string representation of keys.<br />
14740  * Usage:
14741  <pre><code>
14742 // map one key by key code
14743 var map = new Roo.KeyMap("my-element", {
14744     key: 13, // or Roo.EventObject.ENTER
14745     fn: myHandler,
14746     scope: myObject
14747 });
14748
14749 // map multiple keys to one action by string
14750 var map = new Roo.KeyMap("my-element", {
14751     key: "a\r\n\t",
14752     fn: myHandler,
14753     scope: myObject
14754 });
14755
14756 // map multiple keys to multiple actions by strings and array of codes
14757 var map = new Roo.KeyMap("my-element", [
14758     {
14759         key: [10,13],
14760         fn: function(){ alert("Return was pressed"); }
14761     }, {
14762         key: "abc",
14763         fn: function(){ alert('a, b or c was pressed'); }
14764     }, {
14765         key: "\t",
14766         ctrl:true,
14767         shift:true,
14768         fn: function(){ alert('Control + shift + tab was pressed.'); }
14769     }
14770 ]);
14771 </code></pre>
14772  * <b>Note: A KeyMap starts enabled</b>
14773  * @constructor
14774  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14775  * @param {Object} config The config (see {@link #addBinding})
14776  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14777  */
14778 Roo.KeyMap = function(el, config, eventName){
14779     this.el  = Roo.get(el);
14780     this.eventName = eventName || "keydown";
14781     this.bindings = [];
14782     if(config){
14783         this.addBinding(config);
14784     }
14785     this.enable();
14786 };
14787
14788 Roo.KeyMap.prototype = {
14789     /**
14790      * True to stop the event from bubbling and prevent the default browser action if the
14791      * key was handled by the KeyMap (defaults to false)
14792      * @type Boolean
14793      */
14794     stopEvent : false,
14795
14796     /**
14797      * Add a new binding to this KeyMap. The following config object properties are supported:
14798      * <pre>
14799 Property    Type             Description
14800 ----------  ---------------  ----------------------------------------------------------------------
14801 key         String/Array     A single keycode or an array of keycodes to handle
14802 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14803 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14804 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14805 fn          Function         The function to call when KeyMap finds the expected key combination
14806 scope       Object           The scope of the callback function
14807 </pre>
14808      *
14809      * Usage:
14810      * <pre><code>
14811 // Create a KeyMap
14812 var map = new Roo.KeyMap(document, {
14813     key: Roo.EventObject.ENTER,
14814     fn: handleKey,
14815     scope: this
14816 });
14817
14818 //Add a new binding to the existing KeyMap later
14819 map.addBinding({
14820     key: 'abc',
14821     shift: true,
14822     fn: handleKey,
14823     scope: this
14824 });
14825 </code></pre>
14826      * @param {Object/Array} config A single KeyMap config or an array of configs
14827      */
14828         addBinding : function(config){
14829         if(config instanceof Array){
14830             for(var i = 0, len = config.length; i < len; i++){
14831                 this.addBinding(config[i]);
14832             }
14833             return;
14834         }
14835         var keyCode = config.key,
14836             shift = config.shift, 
14837             ctrl = config.ctrl, 
14838             alt = config.alt,
14839             fn = config.fn,
14840             scope = config.scope;
14841         if(typeof keyCode == "string"){
14842             var ks = [];
14843             var keyString = keyCode.toUpperCase();
14844             for(var j = 0, len = keyString.length; j < len; j++){
14845                 ks.push(keyString.charCodeAt(j));
14846             }
14847             keyCode = ks;
14848         }
14849         var keyArray = keyCode instanceof Array;
14850         var handler = function(e){
14851             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14852                 var k = e.getKey();
14853                 if(keyArray){
14854                     for(var i = 0, len = keyCode.length; i < len; i++){
14855                         if(keyCode[i] == k){
14856                           if(this.stopEvent){
14857                               e.stopEvent();
14858                           }
14859                           fn.call(scope || window, k, e);
14860                           return;
14861                         }
14862                     }
14863                 }else{
14864                     if(k == keyCode){
14865                         if(this.stopEvent){
14866                            e.stopEvent();
14867                         }
14868                         fn.call(scope || window, k, e);
14869                     }
14870                 }
14871             }
14872         };
14873         this.bindings.push(handler);  
14874         },
14875
14876     /**
14877      * Shorthand for adding a single key listener
14878      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14879      * following options:
14880      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14881      * @param {Function} fn The function to call
14882      * @param {Object} scope (optional) The scope of the function
14883      */
14884     on : function(key, fn, scope){
14885         var keyCode, shift, ctrl, alt;
14886         if(typeof key == "object" && !(key instanceof Array)){
14887             keyCode = key.key;
14888             shift = key.shift;
14889             ctrl = key.ctrl;
14890             alt = key.alt;
14891         }else{
14892             keyCode = key;
14893         }
14894         this.addBinding({
14895             key: keyCode,
14896             shift: shift,
14897             ctrl: ctrl,
14898             alt: alt,
14899             fn: fn,
14900             scope: scope
14901         })
14902     },
14903
14904     // private
14905     handleKeyDown : function(e){
14906             if(this.enabled){ //just in case
14907             var b = this.bindings;
14908             for(var i = 0, len = b.length; i < len; i++){
14909                 b[i].call(this, e);
14910             }
14911             }
14912         },
14913         
14914         /**
14915          * Returns true if this KeyMap is enabled
14916          * @return {Boolean} 
14917          */
14918         isEnabled : function(){
14919             return this.enabled;  
14920         },
14921         
14922         /**
14923          * Enables this KeyMap
14924          */
14925         enable: function(){
14926                 if(!this.enabled){
14927                     this.el.on(this.eventName, this.handleKeyDown, this);
14928                     this.enabled = true;
14929                 }
14930         },
14931
14932         /**
14933          * Disable this KeyMap
14934          */
14935         disable: function(){
14936                 if(this.enabled){
14937                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14938                     this.enabled = false;
14939                 }
14940         }
14941 };/*
14942  * Based on:
14943  * Ext JS Library 1.1.1
14944  * Copyright(c) 2006-2007, Ext JS, LLC.
14945  *
14946  * Originally Released Under LGPL - original licence link has changed is not relivant.
14947  *
14948  * Fork - LGPL
14949  * <script type="text/javascript">
14950  */
14951
14952  
14953 /**
14954  * @class Roo.util.TextMetrics
14955  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14956  * wide, in pixels, a given block of text will be.
14957  * @singleton
14958  */
14959 Roo.util.TextMetrics = function(){
14960     var shared;
14961     return {
14962         /**
14963          * Measures the size of the specified text
14964          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14965          * that can affect the size of the rendered text
14966          * @param {String} text The text to measure
14967          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14968          * in order to accurately measure the text height
14969          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14970          */
14971         measure : function(el, text, fixedWidth){
14972             if(!shared){
14973                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14974             }
14975             shared.bind(el);
14976             shared.setFixedWidth(fixedWidth || 'auto');
14977             return shared.getSize(text);
14978         },
14979
14980         /**
14981          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14982          * the overhead of multiple calls to initialize the style properties on each measurement.
14983          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14984          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14985          * in order to accurately measure the text height
14986          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14987          */
14988         createInstance : function(el, fixedWidth){
14989             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14990         }
14991     };
14992 }();
14993
14994  
14995
14996 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14997     var ml = new Roo.Element(document.createElement('div'));
14998     document.body.appendChild(ml.dom);
14999     ml.position('absolute');
15000     ml.setLeftTop(-1000, -1000);
15001     ml.hide();
15002
15003     if(fixedWidth){
15004         ml.setWidth(fixedWidth);
15005     }
15006      
15007     var instance = {
15008         /**
15009          * Returns the size of the specified text based on the internal element's style and width properties
15010          * @memberOf Roo.util.TextMetrics.Instance#
15011          * @param {String} text The text to measure
15012          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15013          */
15014         getSize : function(text){
15015             ml.update(text);
15016             var s = ml.getSize();
15017             ml.update('');
15018             return s;
15019         },
15020
15021         /**
15022          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15023          * that can affect the size of the rendered text
15024          * @memberOf Roo.util.TextMetrics.Instance#
15025          * @param {String/HTMLElement} el The element, dom node or id
15026          */
15027         bind : function(el){
15028             ml.setStyle(
15029                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15030             );
15031         },
15032
15033         /**
15034          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15035          * to set a fixed width in order to accurately measure the text height.
15036          * @memberOf Roo.util.TextMetrics.Instance#
15037          * @param {Number} width The width to set on the element
15038          */
15039         setFixedWidth : function(width){
15040             ml.setWidth(width);
15041         },
15042
15043         /**
15044          * Returns the measured width of the specified text
15045          * @memberOf Roo.util.TextMetrics.Instance#
15046          * @param {String} text The text to measure
15047          * @return {Number} width The width in pixels
15048          */
15049         getWidth : function(text){
15050             ml.dom.style.width = 'auto';
15051             return this.getSize(text).width;
15052         },
15053
15054         /**
15055          * Returns the measured height of the specified text.  For multiline text, be sure to call
15056          * {@link #setFixedWidth} if necessary.
15057          * @memberOf Roo.util.TextMetrics.Instance#
15058          * @param {String} text The text to measure
15059          * @return {Number} height The height in pixels
15060          */
15061         getHeight : function(text){
15062             return this.getSize(text).height;
15063         }
15064     };
15065
15066     instance.bind(bindTo);
15067
15068     return instance;
15069 };
15070
15071 // backwards compat
15072 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15073  * Based on:
15074  * Ext JS Library 1.1.1
15075  * Copyright(c) 2006-2007, Ext JS, LLC.
15076  *
15077  * Originally Released Under LGPL - original licence link has changed is not relivant.
15078  *
15079  * Fork - LGPL
15080  * <script type="text/javascript">
15081  */
15082
15083 /**
15084  * @class Roo.state.Provider
15085  * Abstract base class for state provider implementations. This class provides methods
15086  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15087  * Provider interface.
15088  */
15089 Roo.state.Provider = function(){
15090     /**
15091      * @event statechange
15092      * Fires when a state change occurs.
15093      * @param {Provider} this This state provider
15094      * @param {String} key The state key which was changed
15095      * @param {String} value The encoded value for the state
15096      */
15097     this.addEvents({
15098         "statechange": true
15099     });
15100     this.state = {};
15101     Roo.state.Provider.superclass.constructor.call(this);
15102 };
15103 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15104     /**
15105      * Returns the current value for a key
15106      * @param {String} name The key name
15107      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15108      * @return {Mixed} The state data
15109      */
15110     get : function(name, defaultValue){
15111         return typeof this.state[name] == "undefined" ?
15112             defaultValue : this.state[name];
15113     },
15114     
15115     /**
15116      * Clears a value from the state
15117      * @param {String} name The key name
15118      */
15119     clear : function(name){
15120         delete this.state[name];
15121         this.fireEvent("statechange", this, name, null);
15122     },
15123     
15124     /**
15125      * Sets the value for a key
15126      * @param {String} name The key name
15127      * @param {Mixed} value The value to set
15128      */
15129     set : function(name, value){
15130         this.state[name] = value;
15131         this.fireEvent("statechange", this, name, value);
15132     },
15133     
15134     /**
15135      * Decodes a string previously encoded with {@link #encodeValue}.
15136      * @param {String} value The value to decode
15137      * @return {Mixed} The decoded value
15138      */
15139     decodeValue : function(cookie){
15140         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15141         var matches = re.exec(unescape(cookie));
15142         if(!matches || !matches[1]) {
15143             return; // non state cookie
15144         }
15145         var type = matches[1];
15146         var v = matches[2];
15147         switch(type){
15148             case "n":
15149                 return parseFloat(v);
15150             case "d":
15151                 return new Date(Date.parse(v));
15152             case "b":
15153                 return (v == "1");
15154             case "a":
15155                 var all = [];
15156                 var values = v.split("^");
15157                 for(var i = 0, len = values.length; i < len; i++){
15158                     all.push(this.decodeValue(values[i]));
15159                 }
15160                 return all;
15161            case "o":
15162                 var all = {};
15163                 var values = v.split("^");
15164                 for(var i = 0, len = values.length; i < len; i++){
15165                     var kv = values[i].split("=");
15166                     all[kv[0]] = this.decodeValue(kv[1]);
15167                 }
15168                 return all;
15169            default:
15170                 return v;
15171         }
15172     },
15173     
15174     /**
15175      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15176      * @param {Mixed} value The value to encode
15177      * @return {String} The encoded value
15178      */
15179     encodeValue : function(v){
15180         var enc;
15181         if(typeof v == "number"){
15182             enc = "n:" + v;
15183         }else if(typeof v == "boolean"){
15184             enc = "b:" + (v ? "1" : "0");
15185         }else if(v instanceof Date){
15186             enc = "d:" + v.toGMTString();
15187         }else if(v instanceof Array){
15188             var flat = "";
15189             for(var i = 0, len = v.length; i < len; i++){
15190                 flat += this.encodeValue(v[i]);
15191                 if(i != len-1) {
15192                     flat += "^";
15193                 }
15194             }
15195             enc = "a:" + flat;
15196         }else if(typeof v == "object"){
15197             var flat = "";
15198             for(var key in v){
15199                 if(typeof v[key] != "function"){
15200                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15201                 }
15202             }
15203             enc = "o:" + flat.substring(0, flat.length-1);
15204         }else{
15205             enc = "s:" + v;
15206         }
15207         return escape(enc);        
15208     }
15209 });
15210
15211 /*
15212  * Based on:
15213  * Ext JS Library 1.1.1
15214  * Copyright(c) 2006-2007, Ext JS, LLC.
15215  *
15216  * Originally Released Under LGPL - original licence link has changed is not relivant.
15217  *
15218  * Fork - LGPL
15219  * <script type="text/javascript">
15220  */
15221 /**
15222  * @class Roo.state.Manager
15223  * This is the global state manager. By default all components that are "state aware" check this class
15224  * for state information if you don't pass them a custom state provider. In order for this class
15225  * to be useful, it must be initialized with a provider when your application initializes.
15226  <pre><code>
15227 // in your initialization function
15228 init : function(){
15229    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15230    ...
15231    // supposed you have a {@link Roo.BorderLayout}
15232    var layout = new Roo.BorderLayout(...);
15233    layout.restoreState();
15234    // or a {Roo.BasicDialog}
15235    var dialog = new Roo.BasicDialog(...);
15236    dialog.restoreState();
15237  </code></pre>
15238  * @singleton
15239  */
15240 Roo.state.Manager = function(){
15241     var provider = new Roo.state.Provider();
15242     
15243     return {
15244         /**
15245          * Configures the default state provider for your application
15246          * @param {Provider} stateProvider The state provider to set
15247          */
15248         setProvider : function(stateProvider){
15249             provider = stateProvider;
15250         },
15251         
15252         /**
15253          * Returns the current value for a key
15254          * @param {String} name The key name
15255          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15256          * @return {Mixed} The state data
15257          */
15258         get : function(key, defaultValue){
15259             return provider.get(key, defaultValue);
15260         },
15261         
15262         /**
15263          * Sets the value for a key
15264          * @param {String} name The key name
15265          * @param {Mixed} value The state data
15266          */
15267          set : function(key, value){
15268             provider.set(key, value);
15269         },
15270         
15271         /**
15272          * Clears a value from the state
15273          * @param {String} name The key name
15274          */
15275         clear : function(key){
15276             provider.clear(key);
15277         },
15278         
15279         /**
15280          * Gets the currently configured state provider
15281          * @return {Provider} The state provider
15282          */
15283         getProvider : function(){
15284             return provider;
15285         }
15286     };
15287 }();
15288 /*
15289  * Based on:
15290  * Ext JS Library 1.1.1
15291  * Copyright(c) 2006-2007, Ext JS, LLC.
15292  *
15293  * Originally Released Under LGPL - original licence link has changed is not relivant.
15294  *
15295  * Fork - LGPL
15296  * <script type="text/javascript">
15297  */
15298 /**
15299  * @class Roo.state.CookieProvider
15300  * @extends Roo.state.Provider
15301  * The default Provider implementation which saves state via cookies.
15302  * <br />Usage:
15303  <pre><code>
15304    var cp = new Roo.state.CookieProvider({
15305        path: "/cgi-bin/",
15306        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15307        domain: "roojs.com"
15308    })
15309    Roo.state.Manager.setProvider(cp);
15310  </code></pre>
15311  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15312  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15313  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15314  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15315  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15316  * domain the page is running on including the 'www' like 'www.roojs.com')
15317  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15318  * @constructor
15319  * Create a new CookieProvider
15320  * @param {Object} config The configuration object
15321  */
15322 Roo.state.CookieProvider = function(config){
15323     Roo.state.CookieProvider.superclass.constructor.call(this);
15324     this.path = "/";
15325     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15326     this.domain = null;
15327     this.secure = false;
15328     Roo.apply(this, config);
15329     this.state = this.readCookies();
15330 };
15331
15332 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15333     // private
15334     set : function(name, value){
15335         if(typeof value == "undefined" || value === null){
15336             this.clear(name);
15337             return;
15338         }
15339         this.setCookie(name, value);
15340         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15341     },
15342
15343     // private
15344     clear : function(name){
15345         this.clearCookie(name);
15346         Roo.state.CookieProvider.superclass.clear.call(this, name);
15347     },
15348
15349     // private
15350     readCookies : function(){
15351         var cookies = {};
15352         var c = document.cookie + ";";
15353         var re = /\s?(.*?)=(.*?);/g;
15354         var matches;
15355         while((matches = re.exec(c)) != null){
15356             var name = matches[1];
15357             var value = matches[2];
15358             if(name && name.substring(0,3) == "ys-"){
15359                 cookies[name.substr(3)] = this.decodeValue(value);
15360             }
15361         }
15362         return cookies;
15363     },
15364
15365     // private
15366     setCookie : function(name, value){
15367         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15368            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15369            ((this.path == null) ? "" : ("; path=" + this.path)) +
15370            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15371            ((this.secure == true) ? "; secure" : "");
15372     },
15373
15374     // private
15375     clearCookie : function(name){
15376         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15377            ((this.path == null) ? "" : ("; path=" + this.path)) +
15378            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15379            ((this.secure == true) ? "; secure" : "");
15380     }
15381 });/*
15382  * Based on:
15383  * Ext JS Library 1.1.1
15384  * Copyright(c) 2006-2007, Ext JS, LLC.
15385  *
15386  * Originally Released Under LGPL - original licence link has changed is not relivant.
15387  *
15388  * Fork - LGPL
15389  * <script type="text/javascript">
15390  */
15391  
15392
15393 /**
15394  * @class Roo.ComponentMgr
15395  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15396  * @singleton
15397  */
15398 Roo.ComponentMgr = function(){
15399     var all = new Roo.util.MixedCollection();
15400
15401     return {
15402         /**
15403          * Registers a component.
15404          * @param {Roo.Component} c The component
15405          */
15406         register : function(c){
15407             all.add(c);
15408         },
15409
15410         /**
15411          * Unregisters a component.
15412          * @param {Roo.Component} c The component
15413          */
15414         unregister : function(c){
15415             all.remove(c);
15416         },
15417
15418         /**
15419          * Returns a component by id
15420          * @param {String} id The component id
15421          */
15422         get : function(id){
15423             return all.get(id);
15424         },
15425
15426         /**
15427          * Registers a function that will be called when a specified component is added to ComponentMgr
15428          * @param {String} id The component id
15429          * @param {Funtction} fn The callback function
15430          * @param {Object} scope The scope of the callback
15431          */
15432         onAvailable : function(id, fn, scope){
15433             all.on("add", function(index, o){
15434                 if(o.id == id){
15435                     fn.call(scope || o, o);
15436                     all.un("add", fn, scope);
15437                 }
15438             });
15439         }
15440     };
15441 }();/*
15442  * Based on:
15443  * Ext JS Library 1.1.1
15444  * Copyright(c) 2006-2007, Ext JS, LLC.
15445  *
15446  * Originally Released Under LGPL - original licence link has changed is not relivant.
15447  *
15448  * Fork - LGPL
15449  * <script type="text/javascript">
15450  */
15451  
15452 /**
15453  * @class Roo.Component
15454  * @extends Roo.util.Observable
15455  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15456  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15457  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15458  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15459  * All visual components (widgets) that require rendering into a layout should subclass Component.
15460  * @constructor
15461  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15462  * 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
15463  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15464  */
15465 Roo.Component = function(config){
15466     config = config || {};
15467     if(config.tagName || config.dom || typeof config == "string"){ // element object
15468         config = {el: config, id: config.id || config};
15469     }
15470     this.initialConfig = config;
15471
15472     Roo.apply(this, config);
15473     this.addEvents({
15474         /**
15475          * @event disable
15476          * Fires after the component is disabled.
15477              * @param {Roo.Component} this
15478              */
15479         disable : true,
15480         /**
15481          * @event enable
15482          * Fires after the component is enabled.
15483              * @param {Roo.Component} this
15484              */
15485         enable : true,
15486         /**
15487          * @event beforeshow
15488          * Fires before the component is shown.  Return false to stop the show.
15489              * @param {Roo.Component} this
15490              */
15491         beforeshow : true,
15492         /**
15493          * @event show
15494          * Fires after the component is shown.
15495              * @param {Roo.Component} this
15496              */
15497         show : true,
15498         /**
15499          * @event beforehide
15500          * Fires before the component is hidden. Return false to stop the hide.
15501              * @param {Roo.Component} this
15502              */
15503         beforehide : true,
15504         /**
15505          * @event hide
15506          * Fires after the component is hidden.
15507              * @param {Roo.Component} this
15508              */
15509         hide : true,
15510         /**
15511          * @event beforerender
15512          * Fires before the component is rendered. Return false to stop the render.
15513              * @param {Roo.Component} this
15514              */
15515         beforerender : true,
15516         /**
15517          * @event render
15518          * Fires after the component is rendered.
15519              * @param {Roo.Component} this
15520              */
15521         render : true,
15522         /**
15523          * @event beforedestroy
15524          * Fires before the component is destroyed. Return false to stop the destroy.
15525              * @param {Roo.Component} this
15526              */
15527         beforedestroy : true,
15528         /**
15529          * @event destroy
15530          * Fires after the component is destroyed.
15531              * @param {Roo.Component} this
15532              */
15533         destroy : true
15534     });
15535     if(!this.id){
15536         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15537     }
15538     Roo.ComponentMgr.register(this);
15539     Roo.Component.superclass.constructor.call(this);
15540     this.initComponent();
15541     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15542         this.render(this.renderTo);
15543         delete this.renderTo;
15544     }
15545 };
15546
15547 /** @private */
15548 Roo.Component.AUTO_ID = 1000;
15549
15550 Roo.extend(Roo.Component, Roo.util.Observable, {
15551     /**
15552      * @scope Roo.Component.prototype
15553      * @type {Boolean}
15554      * true if this component is hidden. Read-only.
15555      */
15556     hidden : false,
15557     /**
15558      * @type {Boolean}
15559      * true if this component is disabled. Read-only.
15560      */
15561     disabled : false,
15562     /**
15563      * @type {Boolean}
15564      * true if this component has been rendered. Read-only.
15565      */
15566     rendered : false,
15567     
15568     /** @cfg {String} disableClass
15569      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15570      */
15571     disabledClass : "x-item-disabled",
15572         /** @cfg {Boolean} allowDomMove
15573          * Whether the component can move the Dom node when rendering (defaults to true).
15574          */
15575     allowDomMove : true,
15576     /** @cfg {String} hideMode (display|visibility)
15577      * How this component should hidden. Supported values are
15578      * "visibility" (css visibility), "offsets" (negative offset position) and
15579      * "display" (css display) - defaults to "display".
15580      */
15581     hideMode: 'display',
15582
15583     /** @private */
15584     ctype : "Roo.Component",
15585
15586     /**
15587      * @cfg {String} actionMode 
15588      * which property holds the element that used for  hide() / show() / disable() / enable()
15589      * default is 'el' for forms you probably want to set this to fieldEl 
15590      */
15591     actionMode : "el",
15592
15593     /** @private */
15594     getActionEl : function(){
15595         return this[this.actionMode];
15596     },
15597
15598     initComponent : Roo.emptyFn,
15599     /**
15600      * If this is a lazy rendering component, render it to its container element.
15601      * @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.
15602      */
15603     render : function(container, position){
15604         
15605         if(this.rendered){
15606             return this;
15607         }
15608         
15609         if(this.fireEvent("beforerender", this) === false){
15610             return false;
15611         }
15612         
15613         if(!container && this.el){
15614             this.el = Roo.get(this.el);
15615             container = this.el.dom.parentNode;
15616             this.allowDomMove = false;
15617         }
15618         this.container = Roo.get(container);
15619         this.rendered = true;
15620         if(position !== undefined){
15621             if(typeof position == 'number'){
15622                 position = this.container.dom.childNodes[position];
15623             }else{
15624                 position = Roo.getDom(position);
15625             }
15626         }
15627         this.onRender(this.container, position || null);
15628         if(this.cls){
15629             this.el.addClass(this.cls);
15630             delete this.cls;
15631         }
15632         if(this.style){
15633             this.el.applyStyles(this.style);
15634             delete this.style;
15635         }
15636         this.fireEvent("render", this);
15637         this.afterRender(this.container);
15638         if(this.hidden){
15639             this.hide();
15640         }
15641         if(this.disabled){
15642             this.disable();
15643         }
15644
15645         return this;
15646         
15647     },
15648
15649     /** @private */
15650     // default function is not really useful
15651     onRender : function(ct, position){
15652         if(this.el){
15653             this.el = Roo.get(this.el);
15654             if(this.allowDomMove !== false){
15655                 ct.dom.insertBefore(this.el.dom, position);
15656             }
15657         }
15658     },
15659
15660     /** @private */
15661     getAutoCreate : function(){
15662         var cfg = typeof this.autoCreate == "object" ?
15663                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15664         if(this.id && !cfg.id){
15665             cfg.id = this.id;
15666         }
15667         return cfg;
15668     },
15669
15670     /** @private */
15671     afterRender : Roo.emptyFn,
15672
15673     /**
15674      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15675      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15676      */
15677     destroy : function(){
15678         if(this.fireEvent("beforedestroy", this) !== false){
15679             this.purgeListeners();
15680             this.beforeDestroy();
15681             if(this.rendered){
15682                 this.el.removeAllListeners();
15683                 this.el.remove();
15684                 if(this.actionMode == "container"){
15685                     this.container.remove();
15686                 }
15687             }
15688             this.onDestroy();
15689             Roo.ComponentMgr.unregister(this);
15690             this.fireEvent("destroy", this);
15691         }
15692     },
15693
15694         /** @private */
15695     beforeDestroy : function(){
15696
15697     },
15698
15699         /** @private */
15700         onDestroy : function(){
15701
15702     },
15703
15704     /**
15705      * Returns the underlying {@link Roo.Element}.
15706      * @return {Roo.Element} The element
15707      */
15708     getEl : function(){
15709         return this.el;
15710     },
15711
15712     /**
15713      * Returns the id of this component.
15714      * @return {String}
15715      */
15716     getId : function(){
15717         return this.id;
15718     },
15719
15720     /**
15721      * Try to focus this component.
15722      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15723      * @return {Roo.Component} this
15724      */
15725     focus : function(selectText){
15726         if(this.rendered){
15727             this.el.focus();
15728             if(selectText === true){
15729                 this.el.dom.select();
15730             }
15731         }
15732         return this;
15733     },
15734
15735     /** @private */
15736     blur : function(){
15737         if(this.rendered){
15738             this.el.blur();
15739         }
15740         return this;
15741     },
15742
15743     /**
15744      * Disable this component.
15745      * @return {Roo.Component} this
15746      */
15747     disable : function(){
15748         if(this.rendered){
15749             this.onDisable();
15750         }
15751         this.disabled = true;
15752         this.fireEvent("disable", this);
15753         return this;
15754     },
15755
15756         // private
15757     onDisable : function(){
15758         this.getActionEl().addClass(this.disabledClass);
15759         this.el.dom.disabled = true;
15760     },
15761
15762     /**
15763      * Enable this component.
15764      * @return {Roo.Component} this
15765      */
15766     enable : function(){
15767         if(this.rendered){
15768             this.onEnable();
15769         }
15770         this.disabled = false;
15771         this.fireEvent("enable", this);
15772         return this;
15773     },
15774
15775         // private
15776     onEnable : function(){
15777         this.getActionEl().removeClass(this.disabledClass);
15778         this.el.dom.disabled = false;
15779     },
15780
15781     /**
15782      * Convenience function for setting disabled/enabled by boolean.
15783      * @param {Boolean} disabled
15784      */
15785     setDisabled : function(disabled){
15786         this[disabled ? "disable" : "enable"]();
15787     },
15788
15789     /**
15790      * Show this component.
15791      * @return {Roo.Component} this
15792      */
15793     show: function(){
15794         if(this.fireEvent("beforeshow", this) !== false){
15795             this.hidden = false;
15796             if(this.rendered){
15797                 this.onShow();
15798             }
15799             this.fireEvent("show", this);
15800         }
15801         return this;
15802     },
15803
15804     // private
15805     onShow : function(){
15806         var ae = this.getActionEl();
15807         if(this.hideMode == 'visibility'){
15808             ae.dom.style.visibility = "visible";
15809         }else if(this.hideMode == 'offsets'){
15810             ae.removeClass('x-hidden');
15811         }else{
15812             ae.dom.style.display = "";
15813         }
15814     },
15815
15816     /**
15817      * Hide this component.
15818      * @return {Roo.Component} this
15819      */
15820     hide: function(){
15821         if(this.fireEvent("beforehide", this) !== false){
15822             this.hidden = true;
15823             if(this.rendered){
15824                 this.onHide();
15825             }
15826             this.fireEvent("hide", this);
15827         }
15828         return this;
15829     },
15830
15831     // private
15832     onHide : function(){
15833         var ae = this.getActionEl();
15834         if(this.hideMode == 'visibility'){
15835             ae.dom.style.visibility = "hidden";
15836         }else if(this.hideMode == 'offsets'){
15837             ae.addClass('x-hidden');
15838         }else{
15839             ae.dom.style.display = "none";
15840         }
15841     },
15842
15843     /**
15844      * Convenience function to hide or show this component by boolean.
15845      * @param {Boolean} visible True to show, false to hide
15846      * @return {Roo.Component} this
15847      */
15848     setVisible: function(visible){
15849         if(visible) {
15850             this.show();
15851         }else{
15852             this.hide();
15853         }
15854         return this;
15855     },
15856
15857     /**
15858      * Returns true if this component is visible.
15859      */
15860     isVisible : function(){
15861         return this.getActionEl().isVisible();
15862     },
15863
15864     cloneConfig : function(overrides){
15865         overrides = overrides || {};
15866         var id = overrides.id || Roo.id();
15867         var cfg = Roo.applyIf(overrides, this.initialConfig);
15868         cfg.id = id; // prevent dup id
15869         return new this.constructor(cfg);
15870     }
15871 });/*
15872  * Based on:
15873  * Ext JS Library 1.1.1
15874  * Copyright(c) 2006-2007, Ext JS, LLC.
15875  *
15876  * Originally Released Under LGPL - original licence link has changed is not relivant.
15877  *
15878  * Fork - LGPL
15879  * <script type="text/javascript">
15880  */
15881
15882 /**
15883  * @class Roo.BoxComponent
15884  * @extends Roo.Component
15885  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15886  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15887  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15888  * layout containers.
15889  * @constructor
15890  * @param {Roo.Element/String/Object} config The configuration options.
15891  */
15892 Roo.BoxComponent = function(config){
15893     Roo.Component.call(this, config);
15894     this.addEvents({
15895         /**
15896          * @event resize
15897          * Fires after the component is resized.
15898              * @param {Roo.Component} this
15899              * @param {Number} adjWidth The box-adjusted width that was set
15900              * @param {Number} adjHeight The box-adjusted height that was set
15901              * @param {Number} rawWidth The width that was originally specified
15902              * @param {Number} rawHeight The height that was originally specified
15903              */
15904         resize : true,
15905         /**
15906          * @event move
15907          * Fires after the component is moved.
15908              * @param {Roo.Component} this
15909              * @param {Number} x The new x position
15910              * @param {Number} y The new y position
15911              */
15912         move : true
15913     });
15914 };
15915
15916 Roo.extend(Roo.BoxComponent, Roo.Component, {
15917     // private, set in afterRender to signify that the component has been rendered
15918     boxReady : false,
15919     // private, used to defer height settings to subclasses
15920     deferHeight: false,
15921     /** @cfg {Number} width
15922      * width (optional) size of component
15923      */
15924      /** @cfg {Number} height
15925      * height (optional) size of component
15926      */
15927      
15928     /**
15929      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15930      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15931      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15932      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15933      * @return {Roo.BoxComponent} this
15934      */
15935     setSize : function(w, h){
15936         // support for standard size objects
15937         if(typeof w == 'object'){
15938             h = w.height;
15939             w = w.width;
15940         }
15941         // not rendered
15942         if(!this.boxReady){
15943             this.width = w;
15944             this.height = h;
15945             return this;
15946         }
15947
15948         // prevent recalcs when not needed
15949         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15950             return this;
15951         }
15952         this.lastSize = {width: w, height: h};
15953
15954         var adj = this.adjustSize(w, h);
15955         var aw = adj.width, ah = adj.height;
15956         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15957             var rz = this.getResizeEl();
15958             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15959                 rz.setSize(aw, ah);
15960             }else if(!this.deferHeight && ah !== undefined){
15961                 rz.setHeight(ah);
15962             }else if(aw !== undefined){
15963                 rz.setWidth(aw);
15964             }
15965             this.onResize(aw, ah, w, h);
15966             this.fireEvent('resize', this, aw, ah, w, h);
15967         }
15968         return this;
15969     },
15970
15971     /**
15972      * Gets the current size of the component's underlying element.
15973      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15974      */
15975     getSize : function(){
15976         return this.el.getSize();
15977     },
15978
15979     /**
15980      * Gets the current XY position of the component's underlying element.
15981      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15982      * @return {Array} The XY position of the element (e.g., [100, 200])
15983      */
15984     getPosition : function(local){
15985         if(local === true){
15986             return [this.el.getLeft(true), this.el.getTop(true)];
15987         }
15988         return this.xy || this.el.getXY();
15989     },
15990
15991     /**
15992      * Gets the current box measurements of the component's underlying element.
15993      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15994      * @returns {Object} box An object in the format {x, y, width, height}
15995      */
15996     getBox : function(local){
15997         var s = this.el.getSize();
15998         if(local){
15999             s.x = this.el.getLeft(true);
16000             s.y = this.el.getTop(true);
16001         }else{
16002             var xy = this.xy || this.el.getXY();
16003             s.x = xy[0];
16004             s.y = xy[1];
16005         }
16006         return s;
16007     },
16008
16009     /**
16010      * Sets the current box measurements of the component's underlying element.
16011      * @param {Object} box An object in the format {x, y, width, height}
16012      * @returns {Roo.BoxComponent} this
16013      */
16014     updateBox : function(box){
16015         this.setSize(box.width, box.height);
16016         this.setPagePosition(box.x, box.y);
16017         return this;
16018     },
16019
16020     // protected
16021     getResizeEl : function(){
16022         return this.resizeEl || this.el;
16023     },
16024
16025     // protected
16026     getPositionEl : function(){
16027         return this.positionEl || this.el;
16028     },
16029
16030     /**
16031      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16032      * This method fires the move event.
16033      * @param {Number} left The new left
16034      * @param {Number} top The new top
16035      * @returns {Roo.BoxComponent} this
16036      */
16037     setPosition : function(x, y){
16038         this.x = x;
16039         this.y = y;
16040         if(!this.boxReady){
16041             return this;
16042         }
16043         var adj = this.adjustPosition(x, y);
16044         var ax = adj.x, ay = adj.y;
16045
16046         var el = this.getPositionEl();
16047         if(ax !== undefined || ay !== undefined){
16048             if(ax !== undefined && ay !== undefined){
16049                 el.setLeftTop(ax, ay);
16050             }else if(ax !== undefined){
16051                 el.setLeft(ax);
16052             }else if(ay !== undefined){
16053                 el.setTop(ay);
16054             }
16055             this.onPosition(ax, ay);
16056             this.fireEvent('move', this, ax, ay);
16057         }
16058         return this;
16059     },
16060
16061     /**
16062      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16063      * This method fires the move event.
16064      * @param {Number} x The new x position
16065      * @param {Number} y The new y position
16066      * @returns {Roo.BoxComponent} this
16067      */
16068     setPagePosition : function(x, y){
16069         this.pageX = x;
16070         this.pageY = y;
16071         if(!this.boxReady){
16072             return;
16073         }
16074         if(x === undefined || y === undefined){ // cannot translate undefined points
16075             return;
16076         }
16077         var p = this.el.translatePoints(x, y);
16078         this.setPosition(p.left, p.top);
16079         return this;
16080     },
16081
16082     // private
16083     onRender : function(ct, position){
16084         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16085         if(this.resizeEl){
16086             this.resizeEl = Roo.get(this.resizeEl);
16087         }
16088         if(this.positionEl){
16089             this.positionEl = Roo.get(this.positionEl);
16090         }
16091     },
16092
16093     // private
16094     afterRender : function(){
16095         Roo.BoxComponent.superclass.afterRender.call(this);
16096         this.boxReady = true;
16097         this.setSize(this.width, this.height);
16098         if(this.x || this.y){
16099             this.setPosition(this.x, this.y);
16100         }
16101         if(this.pageX || this.pageY){
16102             this.setPagePosition(this.pageX, this.pageY);
16103         }
16104     },
16105
16106     /**
16107      * Force the component's size to recalculate based on the underlying element's current height and width.
16108      * @returns {Roo.BoxComponent} this
16109      */
16110     syncSize : function(){
16111         delete this.lastSize;
16112         this.setSize(this.el.getWidth(), this.el.getHeight());
16113         return this;
16114     },
16115
16116     /**
16117      * Called after the component is resized, this method is empty by default but can be implemented by any
16118      * subclass that needs to perform custom logic after a resize occurs.
16119      * @param {Number} adjWidth The box-adjusted width that was set
16120      * @param {Number} adjHeight The box-adjusted height that was set
16121      * @param {Number} rawWidth The width that was originally specified
16122      * @param {Number} rawHeight The height that was originally specified
16123      */
16124     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16125
16126     },
16127
16128     /**
16129      * Called after the component is moved, this method is empty by default but can be implemented by any
16130      * subclass that needs to perform custom logic after a move occurs.
16131      * @param {Number} x The new x position
16132      * @param {Number} y The new y position
16133      */
16134     onPosition : function(x, y){
16135
16136     },
16137
16138     // private
16139     adjustSize : function(w, h){
16140         if(this.autoWidth){
16141             w = 'auto';
16142         }
16143         if(this.autoHeight){
16144             h = 'auto';
16145         }
16146         return {width : w, height: h};
16147     },
16148
16149     // private
16150     adjustPosition : function(x, y){
16151         return {x : x, y: y};
16152     }
16153 });/*
16154  * Based on:
16155  * Ext JS Library 1.1.1
16156  * Copyright(c) 2006-2007, Ext JS, LLC.
16157  *
16158  * Originally Released Under LGPL - original licence link has changed is not relivant.
16159  *
16160  * Fork - LGPL
16161  * <script type="text/javascript">
16162  */
16163  (function(){ 
16164 /**
16165  * @class Roo.Layer
16166  * @extends Roo.Element
16167  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16168  * automatic maintaining of shadow/shim positions.
16169  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16170  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16171  * you can pass a string with a CSS class name. False turns off the shadow.
16172  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16173  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16174  * @cfg {String} cls CSS class to add to the element
16175  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16176  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16177  * @constructor
16178  * @param {Object} config An object with config options.
16179  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16180  */
16181
16182 Roo.Layer = function(config, existingEl){
16183     config = config || {};
16184     var dh = Roo.DomHelper;
16185     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16186     if(existingEl){
16187         this.dom = Roo.getDom(existingEl);
16188     }
16189     if(!this.dom){
16190         var o = config.dh || {tag: "div", cls: "x-layer"};
16191         this.dom = dh.append(pel, o);
16192     }
16193     if(config.cls){
16194         this.addClass(config.cls);
16195     }
16196     this.constrain = config.constrain !== false;
16197     this.visibilityMode = Roo.Element.VISIBILITY;
16198     if(config.id){
16199         this.id = this.dom.id = config.id;
16200     }else{
16201         this.id = Roo.id(this.dom);
16202     }
16203     this.zindex = config.zindex || this.getZIndex();
16204     this.position("absolute", this.zindex);
16205     if(config.shadow){
16206         this.shadowOffset = config.shadowOffset || 4;
16207         this.shadow = new Roo.Shadow({
16208             offset : this.shadowOffset,
16209             mode : config.shadow
16210         });
16211     }else{
16212         this.shadowOffset = 0;
16213     }
16214     this.useShim = config.shim !== false && Roo.useShims;
16215     this.useDisplay = config.useDisplay;
16216     this.hide();
16217 };
16218
16219 var supr = Roo.Element.prototype;
16220
16221 // shims are shared among layer to keep from having 100 iframes
16222 var shims = [];
16223
16224 Roo.extend(Roo.Layer, Roo.Element, {
16225
16226     getZIndex : function(){
16227         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16228     },
16229
16230     getShim : function(){
16231         if(!this.useShim){
16232             return null;
16233         }
16234         if(this.shim){
16235             return this.shim;
16236         }
16237         var shim = shims.shift();
16238         if(!shim){
16239             shim = this.createShim();
16240             shim.enableDisplayMode('block');
16241             shim.dom.style.display = 'none';
16242             shim.dom.style.visibility = 'visible';
16243         }
16244         var pn = this.dom.parentNode;
16245         if(shim.dom.parentNode != pn){
16246             pn.insertBefore(shim.dom, this.dom);
16247         }
16248         shim.setStyle('z-index', this.getZIndex()-2);
16249         this.shim = shim;
16250         return shim;
16251     },
16252
16253     hideShim : function(){
16254         if(this.shim){
16255             this.shim.setDisplayed(false);
16256             shims.push(this.shim);
16257             delete this.shim;
16258         }
16259     },
16260
16261     disableShadow : function(){
16262         if(this.shadow){
16263             this.shadowDisabled = true;
16264             this.shadow.hide();
16265             this.lastShadowOffset = this.shadowOffset;
16266             this.shadowOffset = 0;
16267         }
16268     },
16269
16270     enableShadow : function(show){
16271         if(this.shadow){
16272             this.shadowDisabled = false;
16273             this.shadowOffset = this.lastShadowOffset;
16274             delete this.lastShadowOffset;
16275             if(show){
16276                 this.sync(true);
16277             }
16278         }
16279     },
16280
16281     // private
16282     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16283     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16284     sync : function(doShow){
16285         var sw = this.shadow;
16286         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16287             var sh = this.getShim();
16288
16289             var w = this.getWidth(),
16290                 h = this.getHeight();
16291
16292             var l = this.getLeft(true),
16293                 t = this.getTop(true);
16294
16295             if(sw && !this.shadowDisabled){
16296                 if(doShow && !sw.isVisible()){
16297                     sw.show(this);
16298                 }else{
16299                     sw.realign(l, t, w, h);
16300                 }
16301                 if(sh){
16302                     if(doShow){
16303                        sh.show();
16304                     }
16305                     // fit the shim behind the shadow, so it is shimmed too
16306                     var a = sw.adjusts, s = sh.dom.style;
16307                     s.left = (Math.min(l, l+a.l))+"px";
16308                     s.top = (Math.min(t, t+a.t))+"px";
16309                     s.width = (w+a.w)+"px";
16310                     s.height = (h+a.h)+"px";
16311                 }
16312             }else if(sh){
16313                 if(doShow){
16314                    sh.show();
16315                 }
16316                 sh.setSize(w, h);
16317                 sh.setLeftTop(l, t);
16318             }
16319             
16320         }
16321     },
16322
16323     // private
16324     destroy : function(){
16325         this.hideShim();
16326         if(this.shadow){
16327             this.shadow.hide();
16328         }
16329         this.removeAllListeners();
16330         var pn = this.dom.parentNode;
16331         if(pn){
16332             pn.removeChild(this.dom);
16333         }
16334         Roo.Element.uncache(this.id);
16335     },
16336
16337     remove : function(){
16338         this.destroy();
16339     },
16340
16341     // private
16342     beginUpdate : function(){
16343         this.updating = true;
16344     },
16345
16346     // private
16347     endUpdate : function(){
16348         this.updating = false;
16349         this.sync(true);
16350     },
16351
16352     // private
16353     hideUnders : function(negOffset){
16354         if(this.shadow){
16355             this.shadow.hide();
16356         }
16357         this.hideShim();
16358     },
16359
16360     // private
16361     constrainXY : function(){
16362         if(this.constrain){
16363             var vw = Roo.lib.Dom.getViewWidth(),
16364                 vh = Roo.lib.Dom.getViewHeight();
16365             var s = Roo.get(document).getScroll();
16366
16367             var xy = this.getXY();
16368             var x = xy[0], y = xy[1];   
16369             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16370             // only move it if it needs it
16371             var moved = false;
16372             // first validate right/bottom
16373             if((x + w) > vw+s.left){
16374                 x = vw - w - this.shadowOffset;
16375                 moved = true;
16376             }
16377             if((y + h) > vh+s.top){
16378                 y = vh - h - this.shadowOffset;
16379                 moved = true;
16380             }
16381             // then make sure top/left isn't negative
16382             if(x < s.left){
16383                 x = s.left;
16384                 moved = true;
16385             }
16386             if(y < s.top){
16387                 y = s.top;
16388                 moved = true;
16389             }
16390             if(moved){
16391                 if(this.avoidY){
16392                     var ay = this.avoidY;
16393                     if(y <= ay && (y+h) >= ay){
16394                         y = ay-h-5;   
16395                     }
16396                 }
16397                 xy = [x, y];
16398                 this.storeXY(xy);
16399                 supr.setXY.call(this, xy);
16400                 this.sync();
16401             }
16402         }
16403     },
16404
16405     isVisible : function(){
16406         return this.visible;    
16407     },
16408
16409     // private
16410     showAction : function(){
16411         this.visible = true; // track visibility to prevent getStyle calls
16412         if(this.useDisplay === true){
16413             this.setDisplayed("");
16414         }else if(this.lastXY){
16415             supr.setXY.call(this, this.lastXY);
16416         }else if(this.lastLT){
16417             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16418         }
16419     },
16420
16421     // private
16422     hideAction : function(){
16423         this.visible = false;
16424         if(this.useDisplay === true){
16425             this.setDisplayed(false);
16426         }else{
16427             this.setLeftTop(-10000,-10000);
16428         }
16429     },
16430
16431     // overridden Element method
16432     setVisible : function(v, a, d, c, e){
16433         if(v){
16434             this.showAction();
16435         }
16436         if(a && v){
16437             var cb = function(){
16438                 this.sync(true);
16439                 if(c){
16440                     c();
16441                 }
16442             }.createDelegate(this);
16443             supr.setVisible.call(this, true, true, d, cb, e);
16444         }else{
16445             if(!v){
16446                 this.hideUnders(true);
16447             }
16448             var cb = c;
16449             if(a){
16450                 cb = function(){
16451                     this.hideAction();
16452                     if(c){
16453                         c();
16454                     }
16455                 }.createDelegate(this);
16456             }
16457             supr.setVisible.call(this, v, a, d, cb, e);
16458             if(v){
16459                 this.sync(true);
16460             }else if(!a){
16461                 this.hideAction();
16462             }
16463         }
16464     },
16465
16466     storeXY : function(xy){
16467         delete this.lastLT;
16468         this.lastXY = xy;
16469     },
16470
16471     storeLeftTop : function(left, top){
16472         delete this.lastXY;
16473         this.lastLT = [left, top];
16474     },
16475
16476     // private
16477     beforeFx : function(){
16478         this.beforeAction();
16479         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16480     },
16481
16482     // private
16483     afterFx : function(){
16484         Roo.Layer.superclass.afterFx.apply(this, arguments);
16485         this.sync(this.isVisible());
16486     },
16487
16488     // private
16489     beforeAction : function(){
16490         if(!this.updating && this.shadow){
16491             this.shadow.hide();
16492         }
16493     },
16494
16495     // overridden Element method
16496     setLeft : function(left){
16497         this.storeLeftTop(left, this.getTop(true));
16498         supr.setLeft.apply(this, arguments);
16499         this.sync();
16500     },
16501
16502     setTop : function(top){
16503         this.storeLeftTop(this.getLeft(true), top);
16504         supr.setTop.apply(this, arguments);
16505         this.sync();
16506     },
16507
16508     setLeftTop : function(left, top){
16509         this.storeLeftTop(left, top);
16510         supr.setLeftTop.apply(this, arguments);
16511         this.sync();
16512     },
16513
16514     setXY : function(xy, a, d, c, e){
16515         this.fixDisplay();
16516         this.beforeAction();
16517         this.storeXY(xy);
16518         var cb = this.createCB(c);
16519         supr.setXY.call(this, xy, a, d, cb, e);
16520         if(!a){
16521             cb();
16522         }
16523     },
16524
16525     // private
16526     createCB : function(c){
16527         var el = this;
16528         return function(){
16529             el.constrainXY();
16530             el.sync(true);
16531             if(c){
16532                 c();
16533             }
16534         };
16535     },
16536
16537     // overridden Element method
16538     setX : function(x, a, d, c, e){
16539         this.setXY([x, this.getY()], a, d, c, e);
16540     },
16541
16542     // overridden Element method
16543     setY : function(y, a, d, c, e){
16544         this.setXY([this.getX(), y], a, d, c, e);
16545     },
16546
16547     // overridden Element method
16548     setSize : function(w, h, a, d, c, e){
16549         this.beforeAction();
16550         var cb = this.createCB(c);
16551         supr.setSize.call(this, w, h, a, d, cb, e);
16552         if(!a){
16553             cb();
16554         }
16555     },
16556
16557     // overridden Element method
16558     setWidth : function(w, a, d, c, e){
16559         this.beforeAction();
16560         var cb = this.createCB(c);
16561         supr.setWidth.call(this, w, a, d, cb, e);
16562         if(!a){
16563             cb();
16564         }
16565     },
16566
16567     // overridden Element method
16568     setHeight : function(h, a, d, c, e){
16569         this.beforeAction();
16570         var cb = this.createCB(c);
16571         supr.setHeight.call(this, h, a, d, cb, e);
16572         if(!a){
16573             cb();
16574         }
16575     },
16576
16577     // overridden Element method
16578     setBounds : function(x, y, w, h, a, d, c, e){
16579         this.beforeAction();
16580         var cb = this.createCB(c);
16581         if(!a){
16582             this.storeXY([x, y]);
16583             supr.setXY.call(this, [x, y]);
16584             supr.setSize.call(this, w, h, a, d, cb, e);
16585             cb();
16586         }else{
16587             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16588         }
16589         return this;
16590     },
16591     
16592     /**
16593      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16594      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16595      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16596      * @param {Number} zindex The new z-index to set
16597      * @return {this} The Layer
16598      */
16599     setZIndex : function(zindex){
16600         this.zindex = zindex;
16601         this.setStyle("z-index", zindex + 2);
16602         if(this.shadow){
16603             this.shadow.setZIndex(zindex + 1);
16604         }
16605         if(this.shim){
16606             this.shim.setStyle("z-index", zindex);
16607         }
16608     }
16609 });
16610 })();/*
16611  * Original code for Roojs - LGPL
16612  * <script type="text/javascript">
16613  */
16614  
16615 /**
16616  * @class Roo.XComponent
16617  * A delayed Element creator...
16618  * Or a way to group chunks of interface together.
16619  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16620  *  used in conjunction with XComponent.build() it will create an instance of each element,
16621  *  then call addxtype() to build the User interface.
16622  * 
16623  * Mypart.xyx = new Roo.XComponent({
16624
16625     parent : 'Mypart.xyz', // empty == document.element.!!
16626     order : '001',
16627     name : 'xxxx'
16628     region : 'xxxx'
16629     disabled : function() {} 
16630      
16631     tree : function() { // return an tree of xtype declared components
16632         var MODULE = this;
16633         return 
16634         {
16635             xtype : 'NestedLayoutPanel',
16636             // technicall
16637         }
16638      ]
16639  *})
16640  *
16641  *
16642  * It can be used to build a big heiracy, with parent etc.
16643  * or you can just use this to render a single compoent to a dom element
16644  * MYPART.render(Roo.Element | String(id) | dom_element )
16645  *
16646  *
16647  * Usage patterns.
16648  *
16649  * Classic Roo
16650  *
16651  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16652  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16653  *
16654  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16655  *
16656  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16657  * - if mulitple topModules exist, the last one is defined as the top module.
16658  *
16659  * Embeded Roo
16660  * 
16661  * When the top level or multiple modules are to embedded into a existing HTML page,
16662  * the parent element can container '#id' of the element where the module will be drawn.
16663  *
16664  * Bootstrap Roo
16665  *
16666  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16667  * it relies more on a include mechanism, where sub modules are included into an outer page.
16668  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16669  * 
16670  * Bootstrap Roo Included elements
16671  *
16672  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16673  * hence confusing the component builder as it thinks there are multiple top level elements. 
16674  *
16675  * String Over-ride & Translations
16676  *
16677  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16678  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16679  * are needed. @see Roo.XComponent.overlayString  
16680  * 
16681  * 
16682  * 
16683  * @extends Roo.util.Observable
16684  * @constructor
16685  * @param cfg {Object} configuration of component
16686  * 
16687  */
16688 Roo.XComponent = function(cfg) {
16689     Roo.apply(this, cfg);
16690     this.addEvents({ 
16691         /**
16692              * @event built
16693              * Fires when this the componnt is built
16694              * @param {Roo.XComponent} c the component
16695              */
16696         'built' : true
16697         
16698     });
16699     this.region = this.region || 'center'; // default..
16700     Roo.XComponent.register(this);
16701     this.modules = false;
16702     this.el = false; // where the layout goes..
16703     
16704     
16705 }
16706 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16707     /**
16708      * @property el
16709      * The created element (with Roo.factory())
16710      * @type {Roo.Layout}
16711      */
16712     el  : false,
16713     
16714     /**
16715      * @property el
16716      * for BC  - use el in new code
16717      * @type {Roo.Layout}
16718      */
16719     panel : false,
16720     
16721     /**
16722      * @property layout
16723      * for BC  - use el in new code
16724      * @type {Roo.Layout}
16725      */
16726     layout : false,
16727     
16728      /**
16729      * @cfg {Function|boolean} disabled
16730      * If this module is disabled by some rule, return true from the funtion
16731      */
16732     disabled : false,
16733     
16734     /**
16735      * @cfg {String} parent 
16736      * Name of parent element which it get xtype added to..
16737      */
16738     parent: false,
16739     
16740     /**
16741      * @cfg {String} order
16742      * Used to set the order in which elements are created (usefull for multiple tabs)
16743      */
16744     
16745     order : false,
16746     /**
16747      * @cfg {String} name
16748      * String to display while loading.
16749      */
16750     name : false,
16751     /**
16752      * @cfg {String} region
16753      * Region to render component to (defaults to center)
16754      */
16755     region : 'center',
16756     
16757     /**
16758      * @cfg {Array} items
16759      * A single item array - the first element is the root of the tree..
16760      * It's done this way to stay compatible with the Xtype system...
16761      */
16762     items : false,
16763     
16764     /**
16765      * @property _tree
16766      * The method that retuns the tree of parts that make up this compoennt 
16767      * @type {function}
16768      */
16769     _tree  : false,
16770     
16771      /**
16772      * render
16773      * render element to dom or tree
16774      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16775      */
16776     
16777     render : function(el)
16778     {
16779         
16780         el = el || false;
16781         var hp = this.parent ? 1 : 0;
16782         Roo.debug &&  Roo.log(this);
16783         
16784         var tree = this._tree ? this._tree() : this.tree();
16785
16786         
16787         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16788             // if parent is a '#.....' string, then let's use that..
16789             var ename = this.parent.substr(1);
16790             this.parent = false;
16791             Roo.debug && Roo.log(ename);
16792             switch (ename) {
16793                 case 'bootstrap-body':
16794                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16795                         // this is the BorderLayout standard?
16796                        this.parent = { el : true };
16797                        break;
16798                     }
16799                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16800                         // need to insert stuff...
16801                         this.parent =  {
16802                              el : new Roo.bootstrap.layout.Border({
16803                                  el : document.body, 
16804                      
16805                                  center: {
16806                                     titlebar: false,
16807                                     autoScroll:false,
16808                                     closeOnTab: true,
16809                                     tabPosition: 'top',
16810                                       //resizeTabs: true,
16811                                     alwaysShowTabs: true,
16812                                     hideTabs: false
16813                                      //minTabWidth: 140
16814                                  }
16815                              })
16816                         
16817                          };
16818                          break;
16819                     }
16820                          
16821                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16822                         this.parent = { el :  new  Roo.bootstrap.Body() };
16823                         Roo.debug && Roo.log("setting el to doc body");
16824                          
16825                     } else {
16826                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16827                     }
16828                     break;
16829                 case 'bootstrap':
16830                     this.parent = { el : true};
16831                     // fall through
16832                 default:
16833                     el = Roo.get(ename);
16834                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16835                         this.parent = { el : true};
16836                     }
16837                     
16838                     break;
16839             }
16840                 
16841             
16842             if (!el && !this.parent) {
16843                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16844                 return;
16845             }
16846         }
16847         
16848         Roo.debug && Roo.log("EL:");
16849         Roo.debug && Roo.log(el);
16850         Roo.debug && Roo.log("this.parent.el:");
16851         Roo.debug && Roo.log(this.parent.el);
16852         
16853
16854         // altertive root elements ??? - we need a better way to indicate these.
16855         var is_alt = Roo.XComponent.is_alt ||
16856                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16857                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16858                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16859         
16860         
16861         
16862         if (!this.parent && is_alt) {
16863             //el = Roo.get(document.body);
16864             this.parent = { el : true };
16865         }
16866             
16867             
16868         
16869         if (!this.parent) {
16870             
16871             Roo.debug && Roo.log("no parent - creating one");
16872             
16873             el = el ? Roo.get(el) : false;      
16874             
16875             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16876                 
16877                 this.parent =  {
16878                     el : new Roo.bootstrap.layout.Border({
16879                         el: el || document.body,
16880                     
16881                         center: {
16882                             titlebar: false,
16883                             autoScroll:false,
16884                             closeOnTab: true,
16885                             tabPosition: 'top',
16886                              //resizeTabs: true,
16887                             alwaysShowTabs: false,
16888                             hideTabs: true,
16889                             minTabWidth: 140,
16890                             overflow: 'visible'
16891                          }
16892                      })
16893                 };
16894             } else {
16895             
16896                 // it's a top level one..
16897                 this.parent =  {
16898                     el : new Roo.BorderLayout(el || document.body, {
16899                         center: {
16900                             titlebar: false,
16901                             autoScroll:false,
16902                             closeOnTab: true,
16903                             tabPosition: 'top',
16904                              //resizeTabs: true,
16905                             alwaysShowTabs: el && hp? false :  true,
16906                             hideTabs: el || !hp ? true :  false,
16907                             minTabWidth: 140
16908                          }
16909                     })
16910                 };
16911             }
16912         }
16913         
16914         if (!this.parent.el) {
16915                 // probably an old style ctor, which has been disabled.
16916                 return;
16917
16918         }
16919                 // The 'tree' method is  '_tree now' 
16920             
16921         tree.region = tree.region || this.region;
16922         var is_body = false;
16923         if (this.parent.el === true) {
16924             // bootstrap... - body..
16925             if (el) {
16926                 tree.el = el;
16927             }
16928             this.parent.el = Roo.factory(tree);
16929             is_body = true;
16930         }
16931         
16932         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16933         this.fireEvent('built', this);
16934         
16935         this.panel = this.el;
16936         this.layout = this.panel.layout;
16937         this.parentLayout = this.parent.layout  || false;  
16938          
16939     }
16940     
16941 });
16942
16943 Roo.apply(Roo.XComponent, {
16944     /**
16945      * @property  hideProgress
16946      * true to disable the building progress bar.. usefull on single page renders.
16947      * @type Boolean
16948      */
16949     hideProgress : false,
16950     /**
16951      * @property  buildCompleted
16952      * True when the builder has completed building the interface.
16953      * @type Boolean
16954      */
16955     buildCompleted : false,
16956      
16957     /**
16958      * @property  topModule
16959      * the upper most module - uses document.element as it's constructor.
16960      * @type Object
16961      */
16962      
16963     topModule  : false,
16964       
16965     /**
16966      * @property  modules
16967      * array of modules to be created by registration system.
16968      * @type {Array} of Roo.XComponent
16969      */
16970     
16971     modules : [],
16972     /**
16973      * @property  elmodules
16974      * array of modules to be created by which use #ID 
16975      * @type {Array} of Roo.XComponent
16976      */
16977      
16978     elmodules : [],
16979
16980      /**
16981      * @property  is_alt
16982      * Is an alternative Root - normally used by bootstrap or other systems,
16983      *    where the top element in the tree can wrap 'body' 
16984      * @type {boolean}  (default false)
16985      */
16986      
16987     is_alt : false,
16988     /**
16989      * @property  build_from_html
16990      * Build elements from html - used by bootstrap HTML stuff 
16991      *    - this is cleared after build is completed
16992      * @type {boolean}    (default false)
16993      */
16994      
16995     build_from_html : false,
16996     /**
16997      * Register components to be built later.
16998      *
16999      * This solves the following issues
17000      * - Building is not done on page load, but after an authentication process has occured.
17001      * - Interface elements are registered on page load
17002      * - Parent Interface elements may not be loaded before child, so this handles that..
17003      * 
17004      *
17005      * example:
17006      * 
17007      * MyApp.register({
17008           order : '000001',
17009           module : 'Pman.Tab.projectMgr',
17010           region : 'center',
17011           parent : 'Pman.layout',
17012           disabled : false,  // or use a function..
17013         })
17014      
17015      * * @param {Object} details about module
17016      */
17017     register : function(obj) {
17018                 
17019         Roo.XComponent.event.fireEvent('register', obj);
17020         switch(typeof(obj.disabled) ) {
17021                 
17022             case 'undefined':
17023                 break;
17024             
17025             case 'function':
17026                 if ( obj.disabled() ) {
17027                         return;
17028                 }
17029                 break;
17030             
17031             default:
17032                 if (obj.disabled || obj.region == '#disabled') {
17033                         return;
17034                 }
17035                 break;
17036         }
17037                 
17038         this.modules.push(obj);
17039          
17040     },
17041     /**
17042      * convert a string to an object..
17043      * eg. 'AAA.BBB' -> finds AAA.BBB
17044
17045      */
17046     
17047     toObject : function(str)
17048     {
17049         if (!str || typeof(str) == 'object') {
17050             return str;
17051         }
17052         if (str.substring(0,1) == '#') {
17053             return str;
17054         }
17055
17056         var ar = str.split('.');
17057         var rt, o;
17058         rt = ar.shift();
17059             /** eval:var:o */
17060         try {
17061             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17062         } catch (e) {
17063             throw "Module not found : " + str;
17064         }
17065         
17066         if (o === false) {
17067             throw "Module not found : " + str;
17068         }
17069         Roo.each(ar, function(e) {
17070             if (typeof(o[e]) == 'undefined') {
17071                 throw "Module not found : " + str;
17072             }
17073             o = o[e];
17074         });
17075         
17076         return o;
17077         
17078     },
17079     
17080     
17081     /**
17082      * move modules into their correct place in the tree..
17083      * 
17084      */
17085     preBuild : function ()
17086     {
17087         var _t = this;
17088         Roo.each(this.modules , function (obj)
17089         {
17090             Roo.XComponent.event.fireEvent('beforebuild', obj);
17091             
17092             var opar = obj.parent;
17093             try { 
17094                 obj.parent = this.toObject(opar);
17095             } catch(e) {
17096                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17097                 return;
17098             }
17099             
17100             if (!obj.parent) {
17101                 Roo.debug && Roo.log("GOT top level module");
17102                 Roo.debug && Roo.log(obj);
17103                 obj.modules = new Roo.util.MixedCollection(false, 
17104                     function(o) { return o.order + '' }
17105                 );
17106                 this.topModule = obj;
17107                 return;
17108             }
17109                         // parent is a string (usually a dom element name..)
17110             if (typeof(obj.parent) == 'string') {
17111                 this.elmodules.push(obj);
17112                 return;
17113             }
17114             if (obj.parent.constructor != Roo.XComponent) {
17115                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17116             }
17117             if (!obj.parent.modules) {
17118                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17119                     function(o) { return o.order + '' }
17120                 );
17121             }
17122             if (obj.parent.disabled) {
17123                 obj.disabled = true;
17124             }
17125             obj.parent.modules.add(obj);
17126         }, this);
17127     },
17128     
17129      /**
17130      * make a list of modules to build.
17131      * @return {Array} list of modules. 
17132      */ 
17133     
17134     buildOrder : function()
17135     {
17136         var _this = this;
17137         var cmp = function(a,b) {   
17138             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17139         };
17140         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17141             throw "No top level modules to build";
17142         }
17143         
17144         // make a flat list in order of modules to build.
17145         var mods = this.topModule ? [ this.topModule ] : [];
17146                 
17147         
17148         // elmodules (is a list of DOM based modules )
17149         Roo.each(this.elmodules, function(e) {
17150             mods.push(e);
17151             if (!this.topModule &&
17152                 typeof(e.parent) == 'string' &&
17153                 e.parent.substring(0,1) == '#' &&
17154                 Roo.get(e.parent.substr(1))
17155                ) {
17156                 
17157                 _this.topModule = e;
17158             }
17159             
17160         });
17161
17162         
17163         // add modules to their parents..
17164         var addMod = function(m) {
17165             Roo.debug && Roo.log("build Order: add: " + m.name);
17166                 
17167             mods.push(m);
17168             if (m.modules && !m.disabled) {
17169                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17170                 m.modules.keySort('ASC',  cmp );
17171                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17172     
17173                 m.modules.each(addMod);
17174             } else {
17175                 Roo.debug && Roo.log("build Order: no child modules");
17176             }
17177             // not sure if this is used any more..
17178             if (m.finalize) {
17179                 m.finalize.name = m.name + " (clean up) ";
17180                 mods.push(m.finalize);
17181             }
17182             
17183         }
17184         if (this.topModule && this.topModule.modules) { 
17185             this.topModule.modules.keySort('ASC',  cmp );
17186             this.topModule.modules.each(addMod);
17187         } 
17188         return mods;
17189     },
17190     
17191      /**
17192      * Build the registered modules.
17193      * @param {Object} parent element.
17194      * @param {Function} optional method to call after module has been added.
17195      * 
17196      */ 
17197    
17198     build : function(opts) 
17199     {
17200         
17201         if (typeof(opts) != 'undefined') {
17202             Roo.apply(this,opts);
17203         }
17204         
17205         this.preBuild();
17206         var mods = this.buildOrder();
17207       
17208         //this.allmods = mods;
17209         //Roo.debug && Roo.log(mods);
17210         //return;
17211         if (!mods.length) { // should not happen
17212             throw "NO modules!!!";
17213         }
17214         
17215         
17216         var msg = "Building Interface...";
17217         // flash it up as modal - so we store the mask!?
17218         if (!this.hideProgress && Roo.MessageBox) {
17219             Roo.MessageBox.show({ title: 'loading' });
17220             Roo.MessageBox.show({
17221                title: "Please wait...",
17222                msg: msg,
17223                width:450,
17224                progress:true,
17225                buttons : false,
17226                closable:false,
17227                modal: false
17228               
17229             });
17230         }
17231         var total = mods.length;
17232         
17233         var _this = this;
17234         var progressRun = function() {
17235             if (!mods.length) {
17236                 Roo.debug && Roo.log('hide?');
17237                 if (!this.hideProgress && Roo.MessageBox) {
17238                     Roo.MessageBox.hide();
17239                 }
17240                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17241                 
17242                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17243                 
17244                 // THE END...
17245                 return false;   
17246             }
17247             
17248             var m = mods.shift();
17249             
17250             
17251             Roo.debug && Roo.log(m);
17252             // not sure if this is supported any more.. - modules that are are just function
17253             if (typeof(m) == 'function') { 
17254                 m.call(this);
17255                 return progressRun.defer(10, _this);
17256             } 
17257             
17258             
17259             msg = "Building Interface " + (total  - mods.length) + 
17260                     " of " + total + 
17261                     (m.name ? (' - ' + m.name) : '');
17262                         Roo.debug && Roo.log(msg);
17263             if (!_this.hideProgress &&  Roo.MessageBox) { 
17264                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17265             }
17266             
17267          
17268             // is the module disabled?
17269             var disabled = (typeof(m.disabled) == 'function') ?
17270                 m.disabled.call(m.module.disabled) : m.disabled;    
17271             
17272             
17273             if (disabled) {
17274                 return progressRun(); // we do not update the display!
17275             }
17276             
17277             // now build 
17278             
17279                         
17280                         
17281             m.render();
17282             // it's 10 on top level, and 1 on others??? why...
17283             return progressRun.defer(10, _this);
17284              
17285         }
17286         progressRun.defer(1, _this);
17287      
17288         
17289         
17290     },
17291     /**
17292      * Overlay a set of modified strings onto a component
17293      * This is dependant on our builder exporting the strings and 'named strings' elements.
17294      * 
17295      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17296      * @param {Object} associative array of 'named' string and it's new value.
17297      * 
17298      */
17299         overlayStrings : function( component, strings )
17300     {
17301         if (typeof(component['_named_strings']) == 'undefined') {
17302             throw "ERROR: component does not have _named_strings";
17303         }
17304         for ( var k in strings ) {
17305             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17306             if (md !== false) {
17307                 component['_strings'][md] = strings[k];
17308             } else {
17309                 Roo.log('could not find named string: ' + k + ' in');
17310                 Roo.log(component);
17311             }
17312             
17313         }
17314         
17315     },
17316     
17317         
17318         /**
17319          * Event Object.
17320          *
17321          *
17322          */
17323         event: false, 
17324     /**
17325          * wrapper for event.on - aliased later..  
17326          * Typically use to register a event handler for register:
17327          *
17328          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17329          *
17330          */
17331     on : false
17332    
17333     
17334     
17335 });
17336
17337 Roo.XComponent.event = new Roo.util.Observable({
17338                 events : { 
17339                         /**
17340                          * @event register
17341                          * Fires when an Component is registered,
17342                          * set the disable property on the Component to stop registration.
17343                          * @param {Roo.XComponent} c the component being registerd.
17344                          * 
17345                          */
17346                         'register' : true,
17347             /**
17348                          * @event beforebuild
17349                          * Fires before each Component is built
17350                          * can be used to apply permissions.
17351                          * @param {Roo.XComponent} c the component being registerd.
17352                          * 
17353                          */
17354                         'beforebuild' : true,
17355                         /**
17356                          * @event buildcomplete
17357                          * Fires on the top level element when all elements have been built
17358                          * @param {Roo.XComponent} the top level component.
17359                          */
17360                         'buildcomplete' : true
17361                         
17362                 }
17363 });
17364
17365 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17366  //
17367  /**
17368  * marked - a markdown parser
17369  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17370  * https://github.com/chjj/marked
17371  */
17372
17373
17374 /**
17375  *
17376  * Roo.Markdown - is a very crude wrapper around marked..
17377  *
17378  * usage:
17379  * 
17380  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17381  * 
17382  * Note: move the sample code to the bottom of this
17383  * file before uncommenting it.
17384  *
17385  */
17386
17387 Roo.Markdown = {};
17388 Roo.Markdown.toHtml = function(text) {
17389     
17390     var c = new Roo.Markdown.marked.setOptions({
17391             renderer: new Roo.Markdown.marked.Renderer(),
17392             gfm: true,
17393             tables: true,
17394             breaks: false,
17395             pedantic: false,
17396             sanitize: false,
17397             smartLists: true,
17398             smartypants: false
17399           });
17400     // A FEW HACKS!!?
17401     
17402     text = text.replace(/\\\n/g,' ');
17403     return Roo.Markdown.marked(text);
17404 };
17405 //
17406 // converter
17407 //
17408 // Wraps all "globals" so that the only thing
17409 // exposed is makeHtml().
17410 //
17411 (function() {
17412     
17413      /**
17414          * eval:var:escape
17415          * eval:var:unescape
17416          * eval:var:replace
17417          */
17418       
17419     /**
17420      * Helpers
17421      */
17422     
17423     var escape = function (html, encode) {
17424       return html
17425         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17426         .replace(/</g, '&lt;')
17427         .replace(/>/g, '&gt;')
17428         .replace(/"/g, '&quot;')
17429         .replace(/'/g, '&#39;');
17430     }
17431     
17432     var unescape = function (html) {
17433         // explicitly match decimal, hex, and named HTML entities 
17434       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17435         n = n.toLowerCase();
17436         if (n === 'colon') { return ':'; }
17437         if (n.charAt(0) === '#') {
17438           return n.charAt(1) === 'x'
17439             ? String.fromCharCode(parseInt(n.substring(2), 16))
17440             : String.fromCharCode(+n.substring(1));
17441         }
17442         return '';
17443       });
17444     }
17445     
17446     var replace = function (regex, opt) {
17447       regex = regex.source;
17448       opt = opt || '';
17449       return function self(name, val) {
17450         if (!name) { return new RegExp(regex, opt); }
17451         val = val.source || val;
17452         val = val.replace(/(^|[^\[])\^/g, '$1');
17453         regex = regex.replace(name, val);
17454         return self;
17455       };
17456     }
17457
17458
17459          /**
17460          * eval:var:noop
17461     */
17462     var noop = function () {}
17463     noop.exec = noop;
17464     
17465          /**
17466          * eval:var:merge
17467     */
17468     var merge = function (obj) {
17469       var i = 1
17470         , target
17471         , key;
17472     
17473       for (; i < arguments.length; i++) {
17474         target = arguments[i];
17475         for (key in target) {
17476           if (Object.prototype.hasOwnProperty.call(target, key)) {
17477             obj[key] = target[key];
17478           }
17479         }
17480       }
17481     
17482       return obj;
17483     }
17484     
17485     
17486     /**
17487      * Block-Level Grammar
17488      */
17489     
17490     
17491     
17492     
17493     var block = {
17494       newline: /^\n+/,
17495       code: /^( {4}[^\n]+\n*)+/,
17496       fences: noop,
17497       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17498       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17499       nptable: noop,
17500       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17501       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17502       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17503       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17504       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17505       table: noop,
17506       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17507       text: /^[^\n]+/
17508     };
17509     
17510     block.bullet = /(?:[*+-]|\d+\.)/;
17511     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17512     block.item = replace(block.item, 'gm')
17513       (/bull/g, block.bullet)
17514       ();
17515     
17516     block.list = replace(block.list)
17517       (/bull/g, block.bullet)
17518       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17519       ('def', '\\n+(?=' + block.def.source + ')')
17520       ();
17521     
17522     block.blockquote = replace(block.blockquote)
17523       ('def', block.def)
17524       ();
17525     
17526     block._tag = '(?!(?:'
17527       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17528       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17529       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17530     
17531     block.html = replace(block.html)
17532       ('comment', /<!--[\s\S]*?-->/)
17533       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17534       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17535       (/tag/g, block._tag)
17536       ();
17537     
17538     block.paragraph = replace(block.paragraph)
17539       ('hr', block.hr)
17540       ('heading', block.heading)
17541       ('lheading', block.lheading)
17542       ('blockquote', block.blockquote)
17543       ('tag', '<' + block._tag)
17544       ('def', block.def)
17545       ();
17546     
17547     /**
17548      * Normal Block Grammar
17549      */
17550     
17551     block.normal = merge({}, block);
17552     
17553     /**
17554      * GFM Block Grammar
17555      */
17556     
17557     block.gfm = merge({}, block.normal, {
17558       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17559       paragraph: /^/,
17560       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17561     });
17562     
17563     block.gfm.paragraph = replace(block.paragraph)
17564       ('(?!', '(?!'
17565         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17566         + block.list.source.replace('\\1', '\\3') + '|')
17567       ();
17568     
17569     /**
17570      * GFM + Tables Block Grammar
17571      */
17572     
17573     block.tables = merge({}, block.gfm, {
17574       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17575       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17576     });
17577     
17578     /**
17579      * Block Lexer
17580      */
17581     
17582     var Lexer = function (options) {
17583       this.tokens = [];
17584       this.tokens.links = {};
17585       this.options = options || marked.defaults;
17586       this.rules = block.normal;
17587     
17588       if (this.options.gfm) {
17589         if (this.options.tables) {
17590           this.rules = block.tables;
17591         } else {
17592           this.rules = block.gfm;
17593         }
17594       }
17595     }
17596     
17597     /**
17598      * Expose Block Rules
17599      */
17600     
17601     Lexer.rules = block;
17602     
17603     /**
17604      * Static Lex Method
17605      */
17606     
17607     Lexer.lex = function(src, options) {
17608       var lexer = new Lexer(options);
17609       return lexer.lex(src);
17610     };
17611     
17612     /**
17613      * Preprocessing
17614      */
17615     
17616     Lexer.prototype.lex = function(src) {
17617       src = src
17618         .replace(/\r\n|\r/g, '\n')
17619         .replace(/\t/g, '    ')
17620         .replace(/\u00a0/g, ' ')
17621         .replace(/\u2424/g, '\n');
17622     
17623       return this.token(src, true);
17624     };
17625     
17626     /**
17627      * Lexing
17628      */
17629     
17630     Lexer.prototype.token = function(src, top, bq) {
17631       var src = src.replace(/^ +$/gm, '')
17632         , next
17633         , loose
17634         , cap
17635         , bull
17636         , b
17637         , item
17638         , space
17639         , i
17640         , l;
17641     
17642       while (src) {
17643         // newline
17644         if (cap = this.rules.newline.exec(src)) {
17645           src = src.substring(cap[0].length);
17646           if (cap[0].length > 1) {
17647             this.tokens.push({
17648               type: 'space'
17649             });
17650           }
17651         }
17652     
17653         // code
17654         if (cap = this.rules.code.exec(src)) {
17655           src = src.substring(cap[0].length);
17656           cap = cap[0].replace(/^ {4}/gm, '');
17657           this.tokens.push({
17658             type: 'code',
17659             text: !this.options.pedantic
17660               ? cap.replace(/\n+$/, '')
17661               : cap
17662           });
17663           continue;
17664         }
17665     
17666         // fences (gfm)
17667         if (cap = this.rules.fences.exec(src)) {
17668           src = src.substring(cap[0].length);
17669           this.tokens.push({
17670             type: 'code',
17671             lang: cap[2],
17672             text: cap[3] || ''
17673           });
17674           continue;
17675         }
17676     
17677         // heading
17678         if (cap = this.rules.heading.exec(src)) {
17679           src = src.substring(cap[0].length);
17680           this.tokens.push({
17681             type: 'heading',
17682             depth: cap[1].length,
17683             text: cap[2]
17684           });
17685           continue;
17686         }
17687     
17688         // table no leading pipe (gfm)
17689         if (top && (cap = this.rules.nptable.exec(src))) {
17690           src = src.substring(cap[0].length);
17691     
17692           item = {
17693             type: 'table',
17694             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17695             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17696             cells: cap[3].replace(/\n$/, '').split('\n')
17697           };
17698     
17699           for (i = 0; i < item.align.length; i++) {
17700             if (/^ *-+: *$/.test(item.align[i])) {
17701               item.align[i] = 'right';
17702             } else if (/^ *:-+: *$/.test(item.align[i])) {
17703               item.align[i] = 'center';
17704             } else if (/^ *:-+ *$/.test(item.align[i])) {
17705               item.align[i] = 'left';
17706             } else {
17707               item.align[i] = null;
17708             }
17709           }
17710     
17711           for (i = 0; i < item.cells.length; i++) {
17712             item.cells[i] = item.cells[i].split(/ *\| */);
17713           }
17714     
17715           this.tokens.push(item);
17716     
17717           continue;
17718         }
17719     
17720         // lheading
17721         if (cap = this.rules.lheading.exec(src)) {
17722           src = src.substring(cap[0].length);
17723           this.tokens.push({
17724             type: 'heading',
17725             depth: cap[2] === '=' ? 1 : 2,
17726             text: cap[1]
17727           });
17728           continue;
17729         }
17730     
17731         // hr
17732         if (cap = this.rules.hr.exec(src)) {
17733           src = src.substring(cap[0].length);
17734           this.tokens.push({
17735             type: 'hr'
17736           });
17737           continue;
17738         }
17739     
17740         // blockquote
17741         if (cap = this.rules.blockquote.exec(src)) {
17742           src = src.substring(cap[0].length);
17743     
17744           this.tokens.push({
17745             type: 'blockquote_start'
17746           });
17747     
17748           cap = cap[0].replace(/^ *> ?/gm, '');
17749     
17750           // Pass `top` to keep the current
17751           // "toplevel" state. This is exactly
17752           // how markdown.pl works.
17753           this.token(cap, top, true);
17754     
17755           this.tokens.push({
17756             type: 'blockquote_end'
17757           });
17758     
17759           continue;
17760         }
17761     
17762         // list
17763         if (cap = this.rules.list.exec(src)) {
17764           src = src.substring(cap[0].length);
17765           bull = cap[2];
17766     
17767           this.tokens.push({
17768             type: 'list_start',
17769             ordered: bull.length > 1
17770           });
17771     
17772           // Get each top-level item.
17773           cap = cap[0].match(this.rules.item);
17774     
17775           next = false;
17776           l = cap.length;
17777           i = 0;
17778     
17779           for (; i < l; i++) {
17780             item = cap[i];
17781     
17782             // Remove the list item's bullet
17783             // so it is seen as the next token.
17784             space = item.length;
17785             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17786     
17787             // Outdent whatever the
17788             // list item contains. Hacky.
17789             if (~item.indexOf('\n ')) {
17790               space -= item.length;
17791               item = !this.options.pedantic
17792                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17793                 : item.replace(/^ {1,4}/gm, '');
17794             }
17795     
17796             // Determine whether the next list item belongs here.
17797             // Backpedal if it does not belong in this list.
17798             if (this.options.smartLists && i !== l - 1) {
17799               b = block.bullet.exec(cap[i + 1])[0];
17800               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17801                 src = cap.slice(i + 1).join('\n') + src;
17802                 i = l - 1;
17803               }
17804             }
17805     
17806             // Determine whether item is loose or not.
17807             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17808             // for discount behavior.
17809             loose = next || /\n\n(?!\s*$)/.test(item);
17810             if (i !== l - 1) {
17811               next = item.charAt(item.length - 1) === '\n';
17812               if (!loose) { loose = next; }
17813             }
17814     
17815             this.tokens.push({
17816               type: loose
17817                 ? 'loose_item_start'
17818                 : 'list_item_start'
17819             });
17820     
17821             // Recurse.
17822             this.token(item, false, bq);
17823     
17824             this.tokens.push({
17825               type: 'list_item_end'
17826             });
17827           }
17828     
17829           this.tokens.push({
17830             type: 'list_end'
17831           });
17832     
17833           continue;
17834         }
17835     
17836         // html
17837         if (cap = this.rules.html.exec(src)) {
17838           src = src.substring(cap[0].length);
17839           this.tokens.push({
17840             type: this.options.sanitize
17841               ? 'paragraph'
17842               : 'html',
17843             pre: !this.options.sanitizer
17844               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17845             text: cap[0]
17846           });
17847           continue;
17848         }
17849     
17850         // def
17851         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17852           src = src.substring(cap[0].length);
17853           this.tokens.links[cap[1].toLowerCase()] = {
17854             href: cap[2],
17855             title: cap[3]
17856           };
17857           continue;
17858         }
17859     
17860         // table (gfm)
17861         if (top && (cap = this.rules.table.exec(src))) {
17862           src = src.substring(cap[0].length);
17863     
17864           item = {
17865             type: 'table',
17866             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17867             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17868             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17869           };
17870     
17871           for (i = 0; i < item.align.length; i++) {
17872             if (/^ *-+: *$/.test(item.align[i])) {
17873               item.align[i] = 'right';
17874             } else if (/^ *:-+: *$/.test(item.align[i])) {
17875               item.align[i] = 'center';
17876             } else if (/^ *:-+ *$/.test(item.align[i])) {
17877               item.align[i] = 'left';
17878             } else {
17879               item.align[i] = null;
17880             }
17881           }
17882     
17883           for (i = 0; i < item.cells.length; i++) {
17884             item.cells[i] = item.cells[i]
17885               .replace(/^ *\| *| *\| *$/g, '')
17886               .split(/ *\| */);
17887           }
17888     
17889           this.tokens.push(item);
17890     
17891           continue;
17892         }
17893     
17894         // top-level paragraph
17895         if (top && (cap = this.rules.paragraph.exec(src))) {
17896           src = src.substring(cap[0].length);
17897           this.tokens.push({
17898             type: 'paragraph',
17899             text: cap[1].charAt(cap[1].length - 1) === '\n'
17900               ? cap[1].slice(0, -1)
17901               : cap[1]
17902           });
17903           continue;
17904         }
17905     
17906         // text
17907         if (cap = this.rules.text.exec(src)) {
17908           // Top-level should never reach here.
17909           src = src.substring(cap[0].length);
17910           this.tokens.push({
17911             type: 'text',
17912             text: cap[0]
17913           });
17914           continue;
17915         }
17916     
17917         if (src) {
17918           throw new
17919             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17920         }
17921       }
17922     
17923       return this.tokens;
17924     };
17925     
17926     /**
17927      * Inline-Level Grammar
17928      */
17929     
17930     var inline = {
17931       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17932       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17933       url: noop,
17934       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17935       link: /^!?\[(inside)\]\(href\)/,
17936       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17937       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17938       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17939       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17940       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17941       br: /^ {2,}\n(?!\s*$)/,
17942       del: noop,
17943       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17944     };
17945     
17946     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17947     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17948     
17949     inline.link = replace(inline.link)
17950       ('inside', inline._inside)
17951       ('href', inline._href)
17952       ();
17953     
17954     inline.reflink = replace(inline.reflink)
17955       ('inside', inline._inside)
17956       ();
17957     
17958     /**
17959      * Normal Inline Grammar
17960      */
17961     
17962     inline.normal = merge({}, inline);
17963     
17964     /**
17965      * Pedantic Inline Grammar
17966      */
17967     
17968     inline.pedantic = merge({}, inline.normal, {
17969       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17970       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17971     });
17972     
17973     /**
17974      * GFM Inline Grammar
17975      */
17976     
17977     inline.gfm = merge({}, inline.normal, {
17978       escape: replace(inline.escape)('])', '~|])')(),
17979       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17980       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17981       text: replace(inline.text)
17982         (']|', '~]|')
17983         ('|', '|https?://|')
17984         ()
17985     });
17986     
17987     /**
17988      * GFM + Line Breaks Inline Grammar
17989      */
17990     
17991     inline.breaks = merge({}, inline.gfm, {
17992       br: replace(inline.br)('{2,}', '*')(),
17993       text: replace(inline.gfm.text)('{2,}', '*')()
17994     });
17995     
17996     /**
17997      * Inline Lexer & Compiler
17998      */
17999     
18000     var InlineLexer  = function (links, options) {
18001       this.options = options || marked.defaults;
18002       this.links = links;
18003       this.rules = inline.normal;
18004       this.renderer = this.options.renderer || new Renderer;
18005       this.renderer.options = this.options;
18006     
18007       if (!this.links) {
18008         throw new
18009           Error('Tokens array requires a `links` property.');
18010       }
18011     
18012       if (this.options.gfm) {
18013         if (this.options.breaks) {
18014           this.rules = inline.breaks;
18015         } else {
18016           this.rules = inline.gfm;
18017         }
18018       } else if (this.options.pedantic) {
18019         this.rules = inline.pedantic;
18020       }
18021     }
18022     
18023     /**
18024      * Expose Inline Rules
18025      */
18026     
18027     InlineLexer.rules = inline;
18028     
18029     /**
18030      * Static Lexing/Compiling Method
18031      */
18032     
18033     InlineLexer.output = function(src, links, options) {
18034       var inline = new InlineLexer(links, options);
18035       return inline.output(src);
18036     };
18037     
18038     /**
18039      * Lexing/Compiling
18040      */
18041     
18042     InlineLexer.prototype.output = function(src) {
18043       var out = ''
18044         , link
18045         , text
18046         , href
18047         , cap;
18048     
18049       while (src) {
18050         // escape
18051         if (cap = this.rules.escape.exec(src)) {
18052           src = src.substring(cap[0].length);
18053           out += cap[1];
18054           continue;
18055         }
18056     
18057         // autolink
18058         if (cap = this.rules.autolink.exec(src)) {
18059           src = src.substring(cap[0].length);
18060           if (cap[2] === '@') {
18061             text = cap[1].charAt(6) === ':'
18062               ? this.mangle(cap[1].substring(7))
18063               : this.mangle(cap[1]);
18064             href = this.mangle('mailto:') + text;
18065           } else {
18066             text = escape(cap[1]);
18067             href = text;
18068           }
18069           out += this.renderer.link(href, null, text);
18070           continue;
18071         }
18072     
18073         // url (gfm)
18074         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18075           src = src.substring(cap[0].length);
18076           text = escape(cap[1]);
18077           href = text;
18078           out += this.renderer.link(href, null, text);
18079           continue;
18080         }
18081     
18082         // tag
18083         if (cap = this.rules.tag.exec(src)) {
18084           if (!this.inLink && /^<a /i.test(cap[0])) {
18085             this.inLink = true;
18086           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18087             this.inLink = false;
18088           }
18089           src = src.substring(cap[0].length);
18090           out += this.options.sanitize
18091             ? this.options.sanitizer
18092               ? this.options.sanitizer(cap[0])
18093               : escape(cap[0])
18094             : cap[0];
18095           continue;
18096         }
18097     
18098         // link
18099         if (cap = this.rules.link.exec(src)) {
18100           src = src.substring(cap[0].length);
18101           this.inLink = true;
18102           out += this.outputLink(cap, {
18103             href: cap[2],
18104             title: cap[3]
18105           });
18106           this.inLink = false;
18107           continue;
18108         }
18109     
18110         // reflink, nolink
18111         if ((cap = this.rules.reflink.exec(src))
18112             || (cap = this.rules.nolink.exec(src))) {
18113           src = src.substring(cap[0].length);
18114           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18115           link = this.links[link.toLowerCase()];
18116           if (!link || !link.href) {
18117             out += cap[0].charAt(0);
18118             src = cap[0].substring(1) + src;
18119             continue;
18120           }
18121           this.inLink = true;
18122           out += this.outputLink(cap, link);
18123           this.inLink = false;
18124           continue;
18125         }
18126     
18127         // strong
18128         if (cap = this.rules.strong.exec(src)) {
18129           src = src.substring(cap[0].length);
18130           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18131           continue;
18132         }
18133     
18134         // em
18135         if (cap = this.rules.em.exec(src)) {
18136           src = src.substring(cap[0].length);
18137           out += this.renderer.em(this.output(cap[2] || cap[1]));
18138           continue;
18139         }
18140     
18141         // code
18142         if (cap = this.rules.code.exec(src)) {
18143           src = src.substring(cap[0].length);
18144           out += this.renderer.codespan(escape(cap[2], true));
18145           continue;
18146         }
18147     
18148         // br
18149         if (cap = this.rules.br.exec(src)) {
18150           src = src.substring(cap[0].length);
18151           out += this.renderer.br();
18152           continue;
18153         }
18154     
18155         // del (gfm)
18156         if (cap = this.rules.del.exec(src)) {
18157           src = src.substring(cap[0].length);
18158           out += this.renderer.del(this.output(cap[1]));
18159           continue;
18160         }
18161     
18162         // text
18163         if (cap = this.rules.text.exec(src)) {
18164           src = src.substring(cap[0].length);
18165           out += this.renderer.text(escape(this.smartypants(cap[0])));
18166           continue;
18167         }
18168     
18169         if (src) {
18170           throw new
18171             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18172         }
18173       }
18174     
18175       return out;
18176     };
18177     
18178     /**
18179      * Compile Link
18180      */
18181     
18182     InlineLexer.prototype.outputLink = function(cap, link) {
18183       var href = escape(link.href)
18184         , title = link.title ? escape(link.title) : null;
18185     
18186       return cap[0].charAt(0) !== '!'
18187         ? this.renderer.link(href, title, this.output(cap[1]))
18188         : this.renderer.image(href, title, escape(cap[1]));
18189     };
18190     
18191     /**
18192      * Smartypants Transformations
18193      */
18194     
18195     InlineLexer.prototype.smartypants = function(text) {
18196       if (!this.options.smartypants)  { return text; }
18197       return text
18198         // em-dashes
18199         .replace(/---/g, '\u2014')
18200         // en-dashes
18201         .replace(/--/g, '\u2013')
18202         // opening singles
18203         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18204         // closing singles & apostrophes
18205         .replace(/'/g, '\u2019')
18206         // opening doubles
18207         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18208         // closing doubles
18209         .replace(/"/g, '\u201d')
18210         // ellipses
18211         .replace(/\.{3}/g, '\u2026');
18212     };
18213     
18214     /**
18215      * Mangle Links
18216      */
18217     
18218     InlineLexer.prototype.mangle = function(text) {
18219       if (!this.options.mangle) { return text; }
18220       var out = ''
18221         , l = text.length
18222         , i = 0
18223         , ch;
18224     
18225       for (; i < l; i++) {
18226         ch = text.charCodeAt(i);
18227         if (Math.random() > 0.5) {
18228           ch = 'x' + ch.toString(16);
18229         }
18230         out += '&#' + ch + ';';
18231       }
18232     
18233       return out;
18234     };
18235     
18236     /**
18237      * Renderer
18238      */
18239     
18240      /**
18241          * eval:var:Renderer
18242     */
18243     
18244     var Renderer   = function (options) {
18245       this.options = options || {};
18246     }
18247     
18248     Renderer.prototype.code = function(code, lang, escaped) {
18249       if (this.options.highlight) {
18250         var out = this.options.highlight(code, lang);
18251         if (out != null && out !== code) {
18252           escaped = true;
18253           code = out;
18254         }
18255       } else {
18256             // hack!!! - it's already escapeD?
18257             escaped = true;
18258       }
18259     
18260       if (!lang) {
18261         return '<pre><code>'
18262           + (escaped ? code : escape(code, true))
18263           + '\n</code></pre>';
18264       }
18265     
18266       return '<pre><code class="'
18267         + this.options.langPrefix
18268         + escape(lang, true)
18269         + '">'
18270         + (escaped ? code : escape(code, true))
18271         + '\n</code></pre>\n';
18272     };
18273     
18274     Renderer.prototype.blockquote = function(quote) {
18275       return '<blockquote>\n' + quote + '</blockquote>\n';
18276     };
18277     
18278     Renderer.prototype.html = function(html) {
18279       return html;
18280     };
18281     
18282     Renderer.prototype.heading = function(text, level, raw) {
18283       return '<h'
18284         + level
18285         + ' id="'
18286         + this.options.headerPrefix
18287         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18288         + '">'
18289         + text
18290         + '</h'
18291         + level
18292         + '>\n';
18293     };
18294     
18295     Renderer.prototype.hr = function() {
18296       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18297     };
18298     
18299     Renderer.prototype.list = function(body, ordered) {
18300       var type = ordered ? 'ol' : 'ul';
18301       return '<' + type + '>\n' + body + '</' + type + '>\n';
18302     };
18303     
18304     Renderer.prototype.listitem = function(text) {
18305       return '<li>' + text + '</li>\n';
18306     };
18307     
18308     Renderer.prototype.paragraph = function(text) {
18309       return '<p>' + text + '</p>\n';
18310     };
18311     
18312     Renderer.prototype.table = function(header, body) {
18313       return '<table class="table table-striped">\n'
18314         + '<thead>\n'
18315         + header
18316         + '</thead>\n'
18317         + '<tbody>\n'
18318         + body
18319         + '</tbody>\n'
18320         + '</table>\n';
18321     };
18322     
18323     Renderer.prototype.tablerow = function(content) {
18324       return '<tr>\n' + content + '</tr>\n';
18325     };
18326     
18327     Renderer.prototype.tablecell = function(content, flags) {
18328       var type = flags.header ? 'th' : 'td';
18329       var tag = flags.align
18330         ? '<' + type + ' style="text-align:' + flags.align + '">'
18331         : '<' + type + '>';
18332       return tag + content + '</' + type + '>\n';
18333     };
18334     
18335     // span level renderer
18336     Renderer.prototype.strong = function(text) {
18337       return '<strong>' + text + '</strong>';
18338     };
18339     
18340     Renderer.prototype.em = function(text) {
18341       return '<em>' + text + '</em>';
18342     };
18343     
18344     Renderer.prototype.codespan = function(text) {
18345       return '<code>' + text + '</code>';
18346     };
18347     
18348     Renderer.prototype.br = function() {
18349       return this.options.xhtml ? '<br/>' : '<br>';
18350     };
18351     
18352     Renderer.prototype.del = function(text) {
18353       return '<del>' + text + '</del>';
18354     };
18355     
18356     Renderer.prototype.link = function(href, title, text) {
18357       if (this.options.sanitize) {
18358         try {
18359           var prot = decodeURIComponent(unescape(href))
18360             .replace(/[^\w:]/g, '')
18361             .toLowerCase();
18362         } catch (e) {
18363           return '';
18364         }
18365         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18366           return '';
18367         }
18368       }
18369       var out = '<a href="' + href + '"';
18370       if (title) {
18371         out += ' title="' + title + '"';
18372       }
18373       out += '>' + text + '</a>';
18374       return out;
18375     };
18376     
18377     Renderer.prototype.image = function(href, title, text) {
18378       var out = '<img src="' + href + '" alt="' + text + '"';
18379       if (title) {
18380         out += ' title="' + title + '"';
18381       }
18382       out += this.options.xhtml ? '/>' : '>';
18383       return out;
18384     };
18385     
18386     Renderer.prototype.text = function(text) {
18387       return text;
18388     };
18389     
18390     /**
18391      * Parsing & Compiling
18392      */
18393          /**
18394          * eval:var:Parser
18395     */
18396     
18397     var Parser= function (options) {
18398       this.tokens = [];
18399       this.token = null;
18400       this.options = options || marked.defaults;
18401       this.options.renderer = this.options.renderer || new Renderer;
18402       this.renderer = this.options.renderer;
18403       this.renderer.options = this.options;
18404     }
18405     
18406     /**
18407      * Static Parse Method
18408      */
18409     
18410     Parser.parse = function(src, options, renderer) {
18411       var parser = new Parser(options, renderer);
18412       return parser.parse(src);
18413     };
18414     
18415     /**
18416      * Parse Loop
18417      */
18418     
18419     Parser.prototype.parse = function(src) {
18420       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18421       this.tokens = src.reverse();
18422     
18423       var out = '';
18424       while (this.next()) {
18425         out += this.tok();
18426       }
18427     
18428       return out;
18429     };
18430     
18431     /**
18432      * Next Token
18433      */
18434     
18435     Parser.prototype.next = function() {
18436       return this.token = this.tokens.pop();
18437     };
18438     
18439     /**
18440      * Preview Next Token
18441      */
18442     
18443     Parser.prototype.peek = function() {
18444       return this.tokens[this.tokens.length - 1] || 0;
18445     };
18446     
18447     /**
18448      * Parse Text Tokens
18449      */
18450     
18451     Parser.prototype.parseText = function() {
18452       var body = this.token.text;
18453     
18454       while (this.peek().type === 'text') {
18455         body += '\n' + this.next().text;
18456       }
18457     
18458       return this.inline.output(body);
18459     };
18460     
18461     /**
18462      * Parse Current Token
18463      */
18464     
18465     Parser.prototype.tok = function() {
18466       switch (this.token.type) {
18467         case 'space': {
18468           return '';
18469         }
18470         case 'hr': {
18471           return this.renderer.hr();
18472         }
18473         case 'heading': {
18474           return this.renderer.heading(
18475             this.inline.output(this.token.text),
18476             this.token.depth,
18477             this.token.text);
18478         }
18479         case 'code': {
18480           return this.renderer.code(this.token.text,
18481             this.token.lang,
18482             this.token.escaped);
18483         }
18484         case 'table': {
18485           var header = ''
18486             , body = ''
18487             , i
18488             , row
18489             , cell
18490             , flags
18491             , j;
18492     
18493           // header
18494           cell = '';
18495           for (i = 0; i < this.token.header.length; i++) {
18496             flags = { header: true, align: this.token.align[i] };
18497             cell += this.renderer.tablecell(
18498               this.inline.output(this.token.header[i]),
18499               { header: true, align: this.token.align[i] }
18500             );
18501           }
18502           header += this.renderer.tablerow(cell);
18503     
18504           for (i = 0; i < this.token.cells.length; i++) {
18505             row = this.token.cells[i];
18506     
18507             cell = '';
18508             for (j = 0; j < row.length; j++) {
18509               cell += this.renderer.tablecell(
18510                 this.inline.output(row[j]),
18511                 { header: false, align: this.token.align[j] }
18512               );
18513             }
18514     
18515             body += this.renderer.tablerow(cell);
18516           }
18517           return this.renderer.table(header, body);
18518         }
18519         case 'blockquote_start': {
18520           var body = '';
18521     
18522           while (this.next().type !== 'blockquote_end') {
18523             body += this.tok();
18524           }
18525     
18526           return this.renderer.blockquote(body);
18527         }
18528         case 'list_start': {
18529           var body = ''
18530             , ordered = this.token.ordered;
18531     
18532           while (this.next().type !== 'list_end') {
18533             body += this.tok();
18534           }
18535     
18536           return this.renderer.list(body, ordered);
18537         }
18538         case 'list_item_start': {
18539           var body = '';
18540     
18541           while (this.next().type !== 'list_item_end') {
18542             body += this.token.type === 'text'
18543               ? this.parseText()
18544               : this.tok();
18545           }
18546     
18547           return this.renderer.listitem(body);
18548         }
18549         case 'loose_item_start': {
18550           var body = '';
18551     
18552           while (this.next().type !== 'list_item_end') {
18553             body += this.tok();
18554           }
18555     
18556           return this.renderer.listitem(body);
18557         }
18558         case 'html': {
18559           var html = !this.token.pre && !this.options.pedantic
18560             ? this.inline.output(this.token.text)
18561             : this.token.text;
18562           return this.renderer.html(html);
18563         }
18564         case 'paragraph': {
18565           return this.renderer.paragraph(this.inline.output(this.token.text));
18566         }
18567         case 'text': {
18568           return this.renderer.paragraph(this.parseText());
18569         }
18570       }
18571     };
18572   
18573     
18574     /**
18575      * Marked
18576      */
18577          /**
18578          * eval:var:marked
18579     */
18580     var marked = function (src, opt, callback) {
18581       if (callback || typeof opt === 'function') {
18582         if (!callback) {
18583           callback = opt;
18584           opt = null;
18585         }
18586     
18587         opt = merge({}, marked.defaults, opt || {});
18588     
18589         var highlight = opt.highlight
18590           , tokens
18591           , pending
18592           , i = 0;
18593     
18594         try {
18595           tokens = Lexer.lex(src, opt)
18596         } catch (e) {
18597           return callback(e);
18598         }
18599     
18600         pending = tokens.length;
18601          /**
18602          * eval:var:done
18603     */
18604         var done = function(err) {
18605           if (err) {
18606             opt.highlight = highlight;
18607             return callback(err);
18608           }
18609     
18610           var out;
18611     
18612           try {
18613             out = Parser.parse(tokens, opt);
18614           } catch (e) {
18615             err = e;
18616           }
18617     
18618           opt.highlight = highlight;
18619     
18620           return err
18621             ? callback(err)
18622             : callback(null, out);
18623         };
18624     
18625         if (!highlight || highlight.length < 3) {
18626           return done();
18627         }
18628     
18629         delete opt.highlight;
18630     
18631         if (!pending) { return done(); }
18632     
18633         for (; i < tokens.length; i++) {
18634           (function(token) {
18635             if (token.type !== 'code') {
18636               return --pending || done();
18637             }
18638             return highlight(token.text, token.lang, function(err, code) {
18639               if (err) { return done(err); }
18640               if (code == null || code === token.text) {
18641                 return --pending || done();
18642               }
18643               token.text = code;
18644               token.escaped = true;
18645               --pending || done();
18646             });
18647           })(tokens[i]);
18648         }
18649     
18650         return;
18651       }
18652       try {
18653         if (opt) { opt = merge({}, marked.defaults, opt); }
18654         return Parser.parse(Lexer.lex(src, opt), opt);
18655       } catch (e) {
18656         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18657         if ((opt || marked.defaults).silent) {
18658           return '<p>An error occured:</p><pre>'
18659             + escape(e.message + '', true)
18660             + '</pre>';
18661         }
18662         throw e;
18663       }
18664     }
18665     
18666     /**
18667      * Options
18668      */
18669     
18670     marked.options =
18671     marked.setOptions = function(opt) {
18672       merge(marked.defaults, opt);
18673       return marked;
18674     };
18675     
18676     marked.defaults = {
18677       gfm: true,
18678       tables: true,
18679       breaks: false,
18680       pedantic: false,
18681       sanitize: false,
18682       sanitizer: null,
18683       mangle: true,
18684       smartLists: false,
18685       silent: false,
18686       highlight: null,
18687       langPrefix: 'lang-',
18688       smartypants: false,
18689       headerPrefix: '',
18690       renderer: new Renderer,
18691       xhtml: false
18692     };
18693     
18694     /**
18695      * Expose
18696      */
18697     
18698     marked.Parser = Parser;
18699     marked.parser = Parser.parse;
18700     
18701     marked.Renderer = Renderer;
18702     
18703     marked.Lexer = Lexer;
18704     marked.lexer = Lexer.lex;
18705     
18706     marked.InlineLexer = InlineLexer;
18707     marked.inlineLexer = InlineLexer.output;
18708     
18709     marked.parse = marked;
18710     
18711     Roo.Markdown.marked = marked;
18712
18713 })();/*
18714  * Based on:
18715  * Ext JS Library 1.1.1
18716  * Copyright(c) 2006-2007, Ext JS, LLC.
18717  *
18718  * Originally Released Under LGPL - original licence link has changed is not relivant.
18719  *
18720  * Fork - LGPL
18721  * <script type="text/javascript">
18722  */
18723
18724
18725
18726 /*
18727  * These classes are derivatives of the similarly named classes in the YUI Library.
18728  * The original license:
18729  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18730  * Code licensed under the BSD License:
18731  * http://developer.yahoo.net/yui/license.txt
18732  */
18733
18734 (function() {
18735
18736 var Event=Roo.EventManager;
18737 var Dom=Roo.lib.Dom;
18738
18739 /**
18740  * @class Roo.dd.DragDrop
18741  * @extends Roo.util.Observable
18742  * Defines the interface and base operation of items that that can be
18743  * dragged or can be drop targets.  It was designed to be extended, overriding
18744  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18745  * Up to three html elements can be associated with a DragDrop instance:
18746  * <ul>
18747  * <li>linked element: the element that is passed into the constructor.
18748  * This is the element which defines the boundaries for interaction with
18749  * other DragDrop objects.</li>
18750  * <li>handle element(s): The drag operation only occurs if the element that
18751  * was clicked matches a handle element.  By default this is the linked
18752  * element, but there are times that you will want only a portion of the
18753  * linked element to initiate the drag operation, and the setHandleElId()
18754  * method provides a way to define this.</li>
18755  * <li>drag element: this represents the element that would be moved along
18756  * with the cursor during a drag operation.  By default, this is the linked
18757  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18758  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18759  * </li>
18760  * </ul>
18761  * This class should not be instantiated until the onload event to ensure that
18762  * the associated elements are available.
18763  * The following would define a DragDrop obj that would interact with any
18764  * other DragDrop obj in the "group1" group:
18765  * <pre>
18766  *  dd = new Roo.dd.DragDrop("div1", "group1");
18767  * </pre>
18768  * Since none of the event handlers have been implemented, nothing would
18769  * actually happen if you were to run the code above.  Normally you would
18770  * override this class or one of the default implementations, but you can
18771  * also override the methods you want on an instance of the class...
18772  * <pre>
18773  *  dd.onDragDrop = function(e, id) {
18774  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18775  *  }
18776  * </pre>
18777  * @constructor
18778  * @param {String} id of the element that is linked to this instance
18779  * @param {String} sGroup the group of related DragDrop objects
18780  * @param {object} config an object containing configurable attributes
18781  *                Valid properties for DragDrop:
18782  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18783  */
18784 Roo.dd.DragDrop = function(id, sGroup, config) {
18785     if (id) {
18786         this.init(id, sGroup, config);
18787     }
18788     
18789 };
18790
18791 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18792
18793     /**
18794      * The id of the element associated with this object.  This is what we
18795      * refer to as the "linked element" because the size and position of
18796      * this element is used to determine when the drag and drop objects have
18797      * interacted.
18798      * @property id
18799      * @type String
18800      */
18801     id: null,
18802
18803     /**
18804      * Configuration attributes passed into the constructor
18805      * @property config
18806      * @type object
18807      */
18808     config: null,
18809
18810     /**
18811      * The id of the element that will be dragged.  By default this is same
18812      * as the linked element , but could be changed to another element. Ex:
18813      * Roo.dd.DDProxy
18814      * @property dragElId
18815      * @type String
18816      * @private
18817      */
18818     dragElId: null,
18819
18820     /**
18821      * the id of the element that initiates the drag operation.  By default
18822      * this is the linked element, but could be changed to be a child of this
18823      * element.  This lets us do things like only starting the drag when the
18824      * header element within the linked html element is clicked.
18825      * @property handleElId
18826      * @type String
18827      * @private
18828      */
18829     handleElId: null,
18830
18831     /**
18832      * An associative array of HTML tags that will be ignored if clicked.
18833      * @property invalidHandleTypes
18834      * @type {string: string}
18835      */
18836     invalidHandleTypes: null,
18837
18838     /**
18839      * An associative array of ids for elements that will be ignored if clicked
18840      * @property invalidHandleIds
18841      * @type {string: string}
18842      */
18843     invalidHandleIds: null,
18844
18845     /**
18846      * An indexted array of css class names for elements that will be ignored
18847      * if clicked.
18848      * @property invalidHandleClasses
18849      * @type string[]
18850      */
18851     invalidHandleClasses: null,
18852
18853     /**
18854      * The linked element's absolute X position at the time the drag was
18855      * started
18856      * @property startPageX
18857      * @type int
18858      * @private
18859      */
18860     startPageX: 0,
18861
18862     /**
18863      * The linked element's absolute X position at the time the drag was
18864      * started
18865      * @property startPageY
18866      * @type int
18867      * @private
18868      */
18869     startPageY: 0,
18870
18871     /**
18872      * The group defines a logical collection of DragDrop objects that are
18873      * related.  Instances only get events when interacting with other
18874      * DragDrop object in the same group.  This lets us define multiple
18875      * groups using a single DragDrop subclass if we want.
18876      * @property groups
18877      * @type {string: string}
18878      */
18879     groups: null,
18880
18881     /**
18882      * Individual drag/drop instances can be locked.  This will prevent
18883      * onmousedown start drag.
18884      * @property locked
18885      * @type boolean
18886      * @private
18887      */
18888     locked: false,
18889
18890     /**
18891      * Lock this instance
18892      * @method lock
18893      */
18894     lock: function() { this.locked = true; },
18895
18896     /**
18897      * Unlock this instace
18898      * @method unlock
18899      */
18900     unlock: function() { this.locked = false; },
18901
18902     /**
18903      * By default, all insances can be a drop target.  This can be disabled by
18904      * setting isTarget to false.
18905      * @method isTarget
18906      * @type boolean
18907      */
18908     isTarget: true,
18909
18910     /**
18911      * The padding configured for this drag and drop object for calculating
18912      * the drop zone intersection with this object.
18913      * @method padding
18914      * @type int[]
18915      */
18916     padding: null,
18917
18918     /**
18919      * Cached reference to the linked element
18920      * @property _domRef
18921      * @private
18922      */
18923     _domRef: null,
18924
18925     /**
18926      * Internal typeof flag
18927      * @property __ygDragDrop
18928      * @private
18929      */
18930     __ygDragDrop: true,
18931
18932     /**
18933      * Set to true when horizontal contraints are applied
18934      * @property constrainX
18935      * @type boolean
18936      * @private
18937      */
18938     constrainX: false,
18939
18940     /**
18941      * Set to true when vertical contraints are applied
18942      * @property constrainY
18943      * @type boolean
18944      * @private
18945      */
18946     constrainY: false,
18947
18948     /**
18949      * The left constraint
18950      * @property minX
18951      * @type int
18952      * @private
18953      */
18954     minX: 0,
18955
18956     /**
18957      * The right constraint
18958      * @property maxX
18959      * @type int
18960      * @private
18961      */
18962     maxX: 0,
18963
18964     /**
18965      * The up constraint
18966      * @property minY
18967      * @type int
18968      * @type int
18969      * @private
18970      */
18971     minY: 0,
18972
18973     /**
18974      * The down constraint
18975      * @property maxY
18976      * @type int
18977      * @private
18978      */
18979     maxY: 0,
18980
18981     /**
18982      * Maintain offsets when we resetconstraints.  Set to true when you want
18983      * the position of the element relative to its parent to stay the same
18984      * when the page changes
18985      *
18986      * @property maintainOffset
18987      * @type boolean
18988      */
18989     maintainOffset: false,
18990
18991     /**
18992      * Array of pixel locations the element will snap to if we specified a
18993      * horizontal graduation/interval.  This array is generated automatically
18994      * when you define a tick interval.
18995      * @property xTicks
18996      * @type int[]
18997      */
18998     xTicks: null,
18999
19000     /**
19001      * Array of pixel locations the element will snap to if we specified a
19002      * vertical graduation/interval.  This array is generated automatically
19003      * when you define a tick interval.
19004      * @property yTicks
19005      * @type int[]
19006      */
19007     yTicks: null,
19008
19009     /**
19010      * By default the drag and drop instance will only respond to the primary
19011      * button click (left button for a right-handed mouse).  Set to true to
19012      * allow drag and drop to start with any mouse click that is propogated
19013      * by the browser
19014      * @property primaryButtonOnly
19015      * @type boolean
19016      */
19017     primaryButtonOnly: true,
19018
19019     /**
19020      * The availabe property is false until the linked dom element is accessible.
19021      * @property available
19022      * @type boolean
19023      */
19024     available: false,
19025
19026     /**
19027      * By default, drags can only be initiated if the mousedown occurs in the
19028      * region the linked element is.  This is done in part to work around a
19029      * bug in some browsers that mis-report the mousedown if the previous
19030      * mouseup happened outside of the window.  This property is set to true
19031      * if outer handles are defined.
19032      *
19033      * @property hasOuterHandles
19034      * @type boolean
19035      * @default false
19036      */
19037     hasOuterHandles: false,
19038
19039     /**
19040      * Code that executes immediately before the startDrag event
19041      * @method b4StartDrag
19042      * @private
19043      */
19044     b4StartDrag: function(x, y) { },
19045
19046     /**
19047      * Abstract method called after a drag/drop object is clicked
19048      * and the drag or mousedown time thresholds have beeen met.
19049      * @method startDrag
19050      * @param {int} X click location
19051      * @param {int} Y click location
19052      */
19053     startDrag: function(x, y) { /* override this */ },
19054
19055     /**
19056      * Code that executes immediately before the onDrag event
19057      * @method b4Drag
19058      * @private
19059      */
19060     b4Drag: function(e) { },
19061
19062     /**
19063      * Abstract method called during the onMouseMove event while dragging an
19064      * object.
19065      * @method onDrag
19066      * @param {Event} e the mousemove event
19067      */
19068     onDrag: function(e) { /* override this */ },
19069
19070     /**
19071      * Abstract method called when this element fist begins hovering over
19072      * another DragDrop obj
19073      * @method onDragEnter
19074      * @param {Event} e the mousemove event
19075      * @param {String|DragDrop[]} id In POINT mode, the element
19076      * id this is hovering over.  In INTERSECT mode, an array of one or more
19077      * dragdrop items being hovered over.
19078      */
19079     onDragEnter: function(e, id) { /* override this */ },
19080
19081     /**
19082      * Code that executes immediately before the onDragOver event
19083      * @method b4DragOver
19084      * @private
19085      */
19086     b4DragOver: function(e) { },
19087
19088     /**
19089      * Abstract method called when this element is hovering over another
19090      * DragDrop obj
19091      * @method onDragOver
19092      * @param {Event} e the mousemove event
19093      * @param {String|DragDrop[]} id In POINT mode, the element
19094      * id this is hovering over.  In INTERSECT mode, an array of dd items
19095      * being hovered over.
19096      */
19097     onDragOver: function(e, id) { /* override this */ },
19098
19099     /**
19100      * Code that executes immediately before the onDragOut event
19101      * @method b4DragOut
19102      * @private
19103      */
19104     b4DragOut: function(e) { },
19105
19106     /**
19107      * Abstract method called when we are no longer hovering over an element
19108      * @method onDragOut
19109      * @param {Event} e the mousemove event
19110      * @param {String|DragDrop[]} id In POINT mode, the element
19111      * id this was hovering over.  In INTERSECT mode, an array of dd items
19112      * that the mouse is no longer over.
19113      */
19114     onDragOut: function(e, id) { /* override this */ },
19115
19116     /**
19117      * Code that executes immediately before the onDragDrop event
19118      * @method b4DragDrop
19119      * @private
19120      */
19121     b4DragDrop: function(e) { },
19122
19123     /**
19124      * Abstract method called when this item is dropped on another DragDrop
19125      * obj
19126      * @method onDragDrop
19127      * @param {Event} e the mouseup event
19128      * @param {String|DragDrop[]} id In POINT mode, the element
19129      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19130      * was dropped on.
19131      */
19132     onDragDrop: function(e, id) { /* override this */ },
19133
19134     /**
19135      * Abstract method called when this item is dropped on an area with no
19136      * drop target
19137      * @method onInvalidDrop
19138      * @param {Event} e the mouseup event
19139      */
19140     onInvalidDrop: function(e) { /* override this */ },
19141
19142     /**
19143      * Code that executes immediately before the endDrag event
19144      * @method b4EndDrag
19145      * @private
19146      */
19147     b4EndDrag: function(e) { },
19148
19149     /**
19150      * Fired when we are done dragging the object
19151      * @method endDrag
19152      * @param {Event} e the mouseup event
19153      */
19154     endDrag: function(e) { /* override this */ },
19155
19156     /**
19157      * Code executed immediately before the onMouseDown event
19158      * @method b4MouseDown
19159      * @param {Event} e the mousedown event
19160      * @private
19161      */
19162     b4MouseDown: function(e) {  },
19163
19164     /**
19165      * Event handler that fires when a drag/drop obj gets a mousedown
19166      * @method onMouseDown
19167      * @param {Event} e the mousedown event
19168      */
19169     onMouseDown: function(e) { /* override this */ },
19170
19171     /**
19172      * Event handler that fires when a drag/drop obj gets a mouseup
19173      * @method onMouseUp
19174      * @param {Event} e the mouseup event
19175      */
19176     onMouseUp: function(e) { /* override this */ },
19177
19178     /**
19179      * Override the onAvailable method to do what is needed after the initial
19180      * position was determined.
19181      * @method onAvailable
19182      */
19183     onAvailable: function () {
19184     },
19185
19186     /*
19187      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19188      * @type Object
19189      */
19190     defaultPadding : {left:0, right:0, top:0, bottom:0},
19191
19192     /*
19193      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19194  *
19195  * Usage:
19196  <pre><code>
19197  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19198                 { dragElId: "existingProxyDiv" });
19199  dd.startDrag = function(){
19200      this.constrainTo("parent-id");
19201  };
19202  </code></pre>
19203  * Or you can initalize it using the {@link Roo.Element} object:
19204  <pre><code>
19205  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19206      startDrag : function(){
19207          this.constrainTo("parent-id");
19208      }
19209  });
19210  </code></pre>
19211      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19212      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19213      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19214      * an object containing the sides to pad. For example: {right:10, bottom:10}
19215      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19216      */
19217     constrainTo : function(constrainTo, pad, inContent){
19218         if(typeof pad == "number"){
19219             pad = {left: pad, right:pad, top:pad, bottom:pad};
19220         }
19221         pad = pad || this.defaultPadding;
19222         var b = Roo.get(this.getEl()).getBox();
19223         var ce = Roo.get(constrainTo);
19224         var s = ce.getScroll();
19225         var c, cd = ce.dom;
19226         if(cd == document.body){
19227             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19228         }else{
19229             xy = ce.getXY();
19230             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19231         }
19232
19233
19234         var topSpace = b.y - c.y;
19235         var leftSpace = b.x - c.x;
19236
19237         this.resetConstraints();
19238         this.setXConstraint(leftSpace - (pad.left||0), // left
19239                 c.width - leftSpace - b.width - (pad.right||0) //right
19240         );
19241         this.setYConstraint(topSpace - (pad.top||0), //top
19242                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19243         );
19244     },
19245
19246     /**
19247      * Returns a reference to the linked element
19248      * @method getEl
19249      * @return {HTMLElement} the html element
19250      */
19251     getEl: function() {
19252         if (!this._domRef) {
19253             this._domRef = Roo.getDom(this.id);
19254         }
19255
19256         return this._domRef;
19257     },
19258
19259     /**
19260      * Returns a reference to the actual element to drag.  By default this is
19261      * the same as the html element, but it can be assigned to another
19262      * element. An example of this can be found in Roo.dd.DDProxy
19263      * @method getDragEl
19264      * @return {HTMLElement} the html element
19265      */
19266     getDragEl: function() {
19267         return Roo.getDom(this.dragElId);
19268     },
19269
19270     /**
19271      * Sets up the DragDrop object.  Must be called in the constructor of any
19272      * Roo.dd.DragDrop subclass
19273      * @method init
19274      * @param id the id of the linked element
19275      * @param {String} sGroup the group of related items
19276      * @param {object} config configuration attributes
19277      */
19278     init: function(id, sGroup, config) {
19279         this.initTarget(id, sGroup, config);
19280         if (!Roo.isTouch) {
19281             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19282         }
19283         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19284         // Event.on(this.id, "selectstart", Event.preventDefault);
19285     },
19286
19287     /**
19288      * Initializes Targeting functionality only... the object does not
19289      * get a mousedown handler.
19290      * @method initTarget
19291      * @param id the id of the linked element
19292      * @param {String} sGroup the group of related items
19293      * @param {object} config configuration attributes
19294      */
19295     initTarget: function(id, sGroup, config) {
19296
19297         // configuration attributes
19298         this.config = config || {};
19299
19300         // create a local reference to the drag and drop manager
19301         this.DDM = Roo.dd.DDM;
19302         // initialize the groups array
19303         this.groups = {};
19304
19305         // assume that we have an element reference instead of an id if the
19306         // parameter is not a string
19307         if (typeof id !== "string") {
19308             id = Roo.id(id);
19309         }
19310
19311         // set the id
19312         this.id = id;
19313
19314         // add to an interaction group
19315         this.addToGroup((sGroup) ? sGroup : "default");
19316
19317         // We don't want to register this as the handle with the manager
19318         // so we just set the id rather than calling the setter.
19319         this.handleElId = id;
19320
19321         // the linked element is the element that gets dragged by default
19322         this.setDragElId(id);
19323
19324         // by default, clicked anchors will not start drag operations.
19325         this.invalidHandleTypes = { A: "A" };
19326         this.invalidHandleIds = {};
19327         this.invalidHandleClasses = [];
19328
19329         this.applyConfig();
19330
19331         this.handleOnAvailable();
19332     },
19333
19334     /**
19335      * Applies the configuration parameters that were passed into the constructor.
19336      * This is supposed to happen at each level through the inheritance chain.  So
19337      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19338      * DragDrop in order to get all of the parameters that are available in
19339      * each object.
19340      * @method applyConfig
19341      */
19342     applyConfig: function() {
19343
19344         // configurable properties:
19345         //    padding, isTarget, maintainOffset, primaryButtonOnly
19346         this.padding           = this.config.padding || [0, 0, 0, 0];
19347         this.isTarget          = (this.config.isTarget !== false);
19348         this.maintainOffset    = (this.config.maintainOffset);
19349         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19350
19351     },
19352
19353     /**
19354      * Executed when the linked element is available
19355      * @method handleOnAvailable
19356      * @private
19357      */
19358     handleOnAvailable: function() {
19359         this.available = true;
19360         this.resetConstraints();
19361         this.onAvailable();
19362     },
19363
19364      /**
19365      * Configures the padding for the target zone in px.  Effectively expands
19366      * (or reduces) the virtual object size for targeting calculations.
19367      * Supports css-style shorthand; if only one parameter is passed, all sides
19368      * will have that padding, and if only two are passed, the top and bottom
19369      * will have the first param, the left and right the second.
19370      * @method setPadding
19371      * @param {int} iTop    Top pad
19372      * @param {int} iRight  Right pad
19373      * @param {int} iBot    Bot pad
19374      * @param {int} iLeft   Left pad
19375      */
19376     setPadding: function(iTop, iRight, iBot, iLeft) {
19377         // this.padding = [iLeft, iRight, iTop, iBot];
19378         if (!iRight && 0 !== iRight) {
19379             this.padding = [iTop, iTop, iTop, iTop];
19380         } else if (!iBot && 0 !== iBot) {
19381             this.padding = [iTop, iRight, iTop, iRight];
19382         } else {
19383             this.padding = [iTop, iRight, iBot, iLeft];
19384         }
19385     },
19386
19387     /**
19388      * Stores the initial placement of the linked element.
19389      * @method setInitialPosition
19390      * @param {int} diffX   the X offset, default 0
19391      * @param {int} diffY   the Y offset, default 0
19392      */
19393     setInitPosition: function(diffX, diffY) {
19394         var el = this.getEl();
19395
19396         if (!this.DDM.verifyEl(el)) {
19397             return;
19398         }
19399
19400         var dx = diffX || 0;
19401         var dy = diffY || 0;
19402
19403         var p = Dom.getXY( el );
19404
19405         this.initPageX = p[0] - dx;
19406         this.initPageY = p[1] - dy;
19407
19408         this.lastPageX = p[0];
19409         this.lastPageY = p[1];
19410
19411
19412         this.setStartPosition(p);
19413     },
19414
19415     /**
19416      * Sets the start position of the element.  This is set when the obj
19417      * is initialized, the reset when a drag is started.
19418      * @method setStartPosition
19419      * @param pos current position (from previous lookup)
19420      * @private
19421      */
19422     setStartPosition: function(pos) {
19423         var p = pos || Dom.getXY( this.getEl() );
19424         this.deltaSetXY = null;
19425
19426         this.startPageX = p[0];
19427         this.startPageY = p[1];
19428     },
19429
19430     /**
19431      * Add this instance to a group of related drag/drop objects.  All
19432      * instances belong to at least one group, and can belong to as many
19433      * groups as needed.
19434      * @method addToGroup
19435      * @param sGroup {string} the name of the group
19436      */
19437     addToGroup: function(sGroup) {
19438         this.groups[sGroup] = true;
19439         this.DDM.regDragDrop(this, sGroup);
19440     },
19441
19442     /**
19443      * Remove's this instance from the supplied interaction group
19444      * @method removeFromGroup
19445      * @param {string}  sGroup  The group to drop
19446      */
19447     removeFromGroup: function(sGroup) {
19448         if (this.groups[sGroup]) {
19449             delete this.groups[sGroup];
19450         }
19451
19452         this.DDM.removeDDFromGroup(this, sGroup);
19453     },
19454
19455     /**
19456      * Allows you to specify that an element other than the linked element
19457      * will be moved with the cursor during a drag
19458      * @method setDragElId
19459      * @param id {string} the id of the element that will be used to initiate the drag
19460      */
19461     setDragElId: function(id) {
19462         this.dragElId = id;
19463     },
19464
19465     /**
19466      * Allows you to specify a child of the linked element that should be
19467      * used to initiate the drag operation.  An example of this would be if
19468      * you have a content div with text and links.  Clicking anywhere in the
19469      * content area would normally start the drag operation.  Use this method
19470      * to specify that an element inside of the content div is the element
19471      * that starts the drag operation.
19472      * @method setHandleElId
19473      * @param id {string} the id of the element that will be used to
19474      * initiate the drag.
19475      */
19476     setHandleElId: function(id) {
19477         if (typeof id !== "string") {
19478             id = Roo.id(id);
19479         }
19480         this.handleElId = id;
19481         this.DDM.regHandle(this.id, id);
19482     },
19483
19484     /**
19485      * Allows you to set an element outside of the linked element as a drag
19486      * handle
19487      * @method setOuterHandleElId
19488      * @param id the id of the element that will be used to initiate the drag
19489      */
19490     setOuterHandleElId: function(id) {
19491         if (typeof id !== "string") {
19492             id = Roo.id(id);
19493         }
19494         Event.on(id, "mousedown",
19495                 this.handleMouseDown, this);
19496         this.setHandleElId(id);
19497
19498         this.hasOuterHandles = true;
19499     },
19500
19501     /**
19502      * Remove all drag and drop hooks for this element
19503      * @method unreg
19504      */
19505     unreg: function() {
19506         Event.un(this.id, "mousedown",
19507                 this.handleMouseDown);
19508         Event.un(this.id, "touchstart",
19509                 this.handleMouseDown);
19510         this._domRef = null;
19511         this.DDM._remove(this);
19512     },
19513
19514     destroy : function(){
19515         this.unreg();
19516     },
19517
19518     /**
19519      * Returns true if this instance is locked, or the drag drop mgr is locked
19520      * (meaning that all drag/drop is disabled on the page.)
19521      * @method isLocked
19522      * @return {boolean} true if this obj or all drag/drop is locked, else
19523      * false
19524      */
19525     isLocked: function() {
19526         return (this.DDM.isLocked() || this.locked);
19527     },
19528
19529     /**
19530      * Fired when this object is clicked
19531      * @method handleMouseDown
19532      * @param {Event} e
19533      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19534      * @private
19535      */
19536     handleMouseDown: function(e, oDD){
19537      
19538         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19539             //Roo.log('not touch/ button !=0');
19540             return;
19541         }
19542         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19543             return; // double touch..
19544         }
19545         
19546
19547         if (this.isLocked()) {
19548             //Roo.log('locked');
19549             return;
19550         }
19551
19552         this.DDM.refreshCache(this.groups);
19553 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19554         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19555         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19556             //Roo.log('no outer handes or not over target');
19557                 // do nothing.
19558         } else {
19559 //            Roo.log('check validator');
19560             if (this.clickValidator(e)) {
19561 //                Roo.log('validate success');
19562                 // set the initial element position
19563                 this.setStartPosition();
19564
19565
19566                 this.b4MouseDown(e);
19567                 this.onMouseDown(e);
19568
19569                 this.DDM.handleMouseDown(e, this);
19570
19571                 this.DDM.stopEvent(e);
19572             } else {
19573
19574
19575             }
19576         }
19577     },
19578
19579     clickValidator: function(e) {
19580         var target = e.getTarget();
19581         return ( this.isValidHandleChild(target) &&
19582                     (this.id == this.handleElId ||
19583                         this.DDM.handleWasClicked(target, this.id)) );
19584     },
19585
19586     /**
19587      * Allows you to specify a tag name that should not start a drag operation
19588      * when clicked.  This is designed to facilitate embedding links within a
19589      * drag handle that do something other than start the drag.
19590      * @method addInvalidHandleType
19591      * @param {string} tagName the type of element to exclude
19592      */
19593     addInvalidHandleType: function(tagName) {
19594         var type = tagName.toUpperCase();
19595         this.invalidHandleTypes[type] = type;
19596     },
19597
19598     /**
19599      * Lets you to specify an element id for a child of a drag handle
19600      * that should not initiate a drag
19601      * @method addInvalidHandleId
19602      * @param {string} id the element id of the element you wish to ignore
19603      */
19604     addInvalidHandleId: function(id) {
19605         if (typeof id !== "string") {
19606             id = Roo.id(id);
19607         }
19608         this.invalidHandleIds[id] = id;
19609     },
19610
19611     /**
19612      * Lets you specify a css class of elements that will not initiate a drag
19613      * @method addInvalidHandleClass
19614      * @param {string} cssClass the class of the elements you wish to ignore
19615      */
19616     addInvalidHandleClass: function(cssClass) {
19617         this.invalidHandleClasses.push(cssClass);
19618     },
19619
19620     /**
19621      * Unsets an excluded tag name set by addInvalidHandleType
19622      * @method removeInvalidHandleType
19623      * @param {string} tagName the type of element to unexclude
19624      */
19625     removeInvalidHandleType: function(tagName) {
19626         var type = tagName.toUpperCase();
19627         // this.invalidHandleTypes[type] = null;
19628         delete this.invalidHandleTypes[type];
19629     },
19630
19631     /**
19632      * Unsets an invalid handle id
19633      * @method removeInvalidHandleId
19634      * @param {string} id the id of the element to re-enable
19635      */
19636     removeInvalidHandleId: function(id) {
19637         if (typeof id !== "string") {
19638             id = Roo.id(id);
19639         }
19640         delete this.invalidHandleIds[id];
19641     },
19642
19643     /**
19644      * Unsets an invalid css class
19645      * @method removeInvalidHandleClass
19646      * @param {string} cssClass the class of the element(s) you wish to
19647      * re-enable
19648      */
19649     removeInvalidHandleClass: function(cssClass) {
19650         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19651             if (this.invalidHandleClasses[i] == cssClass) {
19652                 delete this.invalidHandleClasses[i];
19653             }
19654         }
19655     },
19656
19657     /**
19658      * Checks the tag exclusion list to see if this click should be ignored
19659      * @method isValidHandleChild
19660      * @param {HTMLElement} node the HTMLElement to evaluate
19661      * @return {boolean} true if this is a valid tag type, false if not
19662      */
19663     isValidHandleChild: function(node) {
19664
19665         var valid = true;
19666         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19667         var nodeName;
19668         try {
19669             nodeName = node.nodeName.toUpperCase();
19670         } catch(e) {
19671             nodeName = node.nodeName;
19672         }
19673         valid = valid && !this.invalidHandleTypes[nodeName];
19674         valid = valid && !this.invalidHandleIds[node.id];
19675
19676         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19677             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19678         }
19679
19680
19681         return valid;
19682
19683     },
19684
19685     /**
19686      * Create the array of horizontal tick marks if an interval was specified
19687      * in setXConstraint().
19688      * @method setXTicks
19689      * @private
19690      */
19691     setXTicks: function(iStartX, iTickSize) {
19692         this.xTicks = [];
19693         this.xTickSize = iTickSize;
19694
19695         var tickMap = {};
19696
19697         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19698             if (!tickMap[i]) {
19699                 this.xTicks[this.xTicks.length] = i;
19700                 tickMap[i] = true;
19701             }
19702         }
19703
19704         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19705             if (!tickMap[i]) {
19706                 this.xTicks[this.xTicks.length] = i;
19707                 tickMap[i] = true;
19708             }
19709         }
19710
19711         this.xTicks.sort(this.DDM.numericSort) ;
19712     },
19713
19714     /**
19715      * Create the array of vertical tick marks if an interval was specified in
19716      * setYConstraint().
19717      * @method setYTicks
19718      * @private
19719      */
19720     setYTicks: function(iStartY, iTickSize) {
19721         this.yTicks = [];
19722         this.yTickSize = iTickSize;
19723
19724         var tickMap = {};
19725
19726         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19727             if (!tickMap[i]) {
19728                 this.yTicks[this.yTicks.length] = i;
19729                 tickMap[i] = true;
19730             }
19731         }
19732
19733         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19734             if (!tickMap[i]) {
19735                 this.yTicks[this.yTicks.length] = i;
19736                 tickMap[i] = true;
19737             }
19738         }
19739
19740         this.yTicks.sort(this.DDM.numericSort) ;
19741     },
19742
19743     /**
19744      * By default, the element can be dragged any place on the screen.  Use
19745      * this method to limit the horizontal travel of the element.  Pass in
19746      * 0,0 for the parameters if you want to lock the drag to the y axis.
19747      * @method setXConstraint
19748      * @param {int} iLeft the number of pixels the element can move to the left
19749      * @param {int} iRight the number of pixels the element can move to the
19750      * right
19751      * @param {int} iTickSize optional parameter for specifying that the
19752      * element
19753      * should move iTickSize pixels at a time.
19754      */
19755     setXConstraint: function(iLeft, iRight, iTickSize) {
19756         this.leftConstraint = iLeft;
19757         this.rightConstraint = iRight;
19758
19759         this.minX = this.initPageX - iLeft;
19760         this.maxX = this.initPageX + iRight;
19761         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19762
19763         this.constrainX = true;
19764     },
19765
19766     /**
19767      * Clears any constraints applied to this instance.  Also clears ticks
19768      * since they can't exist independent of a constraint at this time.
19769      * @method clearConstraints
19770      */
19771     clearConstraints: function() {
19772         this.constrainX = false;
19773         this.constrainY = false;
19774         this.clearTicks();
19775     },
19776
19777     /**
19778      * Clears any tick interval defined for this instance
19779      * @method clearTicks
19780      */
19781     clearTicks: function() {
19782         this.xTicks = null;
19783         this.yTicks = null;
19784         this.xTickSize = 0;
19785         this.yTickSize = 0;
19786     },
19787
19788     /**
19789      * By default, the element can be dragged any place on the screen.  Set
19790      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19791      * parameters if you want to lock the drag to the x axis.
19792      * @method setYConstraint
19793      * @param {int} iUp the number of pixels the element can move up
19794      * @param {int} iDown the number of pixels the element can move down
19795      * @param {int} iTickSize optional parameter for specifying that the
19796      * element should move iTickSize pixels at a time.
19797      */
19798     setYConstraint: function(iUp, iDown, iTickSize) {
19799         this.topConstraint = iUp;
19800         this.bottomConstraint = iDown;
19801
19802         this.minY = this.initPageY - iUp;
19803         this.maxY = this.initPageY + iDown;
19804         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19805
19806         this.constrainY = true;
19807
19808     },
19809
19810     /**
19811      * resetConstraints must be called if you manually reposition a dd element.
19812      * @method resetConstraints
19813      * @param {boolean} maintainOffset
19814      */
19815     resetConstraints: function() {
19816
19817
19818         // Maintain offsets if necessary
19819         if (this.initPageX || this.initPageX === 0) {
19820             // figure out how much this thing has moved
19821             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19822             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19823
19824             this.setInitPosition(dx, dy);
19825
19826         // This is the first time we have detected the element's position
19827         } else {
19828             this.setInitPosition();
19829         }
19830
19831         if (this.constrainX) {
19832             this.setXConstraint( this.leftConstraint,
19833                                  this.rightConstraint,
19834                                  this.xTickSize        );
19835         }
19836
19837         if (this.constrainY) {
19838             this.setYConstraint( this.topConstraint,
19839                                  this.bottomConstraint,
19840                                  this.yTickSize         );
19841         }
19842     },
19843
19844     /**
19845      * Normally the drag element is moved pixel by pixel, but we can specify
19846      * that it move a number of pixels at a time.  This method resolves the
19847      * location when we have it set up like this.
19848      * @method getTick
19849      * @param {int} val where we want to place the object
19850      * @param {int[]} tickArray sorted array of valid points
19851      * @return {int} the closest tick
19852      * @private
19853      */
19854     getTick: function(val, tickArray) {
19855
19856         if (!tickArray) {
19857             // If tick interval is not defined, it is effectively 1 pixel,
19858             // so we return the value passed to us.
19859             return val;
19860         } else if (tickArray[0] >= val) {
19861             // The value is lower than the first tick, so we return the first
19862             // tick.
19863             return tickArray[0];
19864         } else {
19865             for (var i=0, len=tickArray.length; i<len; ++i) {
19866                 var next = i + 1;
19867                 if (tickArray[next] && tickArray[next] >= val) {
19868                     var diff1 = val - tickArray[i];
19869                     var diff2 = tickArray[next] - val;
19870                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19871                 }
19872             }
19873
19874             // The value is larger than the last tick, so we return the last
19875             // tick.
19876             return tickArray[tickArray.length - 1];
19877         }
19878     },
19879
19880     /**
19881      * toString method
19882      * @method toString
19883      * @return {string} string representation of the dd obj
19884      */
19885     toString: function() {
19886         return ("DragDrop " + this.id);
19887     }
19888
19889 });
19890
19891 })();
19892 /*
19893  * Based on:
19894  * Ext JS Library 1.1.1
19895  * Copyright(c) 2006-2007, Ext JS, LLC.
19896  *
19897  * Originally Released Under LGPL - original licence link has changed is not relivant.
19898  *
19899  * Fork - LGPL
19900  * <script type="text/javascript">
19901  */
19902
19903
19904 /**
19905  * The drag and drop utility provides a framework for building drag and drop
19906  * applications.  In addition to enabling drag and drop for specific elements,
19907  * the drag and drop elements are tracked by the manager class, and the
19908  * interactions between the various elements are tracked during the drag and
19909  * the implementing code is notified about these important moments.
19910  */
19911
19912 // Only load the library once.  Rewriting the manager class would orphan
19913 // existing drag and drop instances.
19914 if (!Roo.dd.DragDropMgr) {
19915
19916 /**
19917  * @class Roo.dd.DragDropMgr
19918  * DragDropMgr is a singleton that tracks the element interaction for
19919  * all DragDrop items in the window.  Generally, you will not call
19920  * this class directly, but it does have helper methods that could
19921  * be useful in your DragDrop implementations.
19922  * @singleton
19923  */
19924 Roo.dd.DragDropMgr = function() {
19925
19926     var Event = Roo.EventManager;
19927
19928     return {
19929
19930         /**
19931          * Two dimensional Array of registered DragDrop objects.  The first
19932          * dimension is the DragDrop item group, the second the DragDrop
19933          * object.
19934          * @property ids
19935          * @type {string: string}
19936          * @private
19937          * @static
19938          */
19939         ids: {},
19940
19941         /**
19942          * Array of element ids defined as drag handles.  Used to determine
19943          * if the element that generated the mousedown event is actually the
19944          * handle and not the html element itself.
19945          * @property handleIds
19946          * @type {string: string}
19947          * @private
19948          * @static
19949          */
19950         handleIds: {},
19951
19952         /**
19953          * the DragDrop object that is currently being dragged
19954          * @property dragCurrent
19955          * @type DragDrop
19956          * @private
19957          * @static
19958          **/
19959         dragCurrent: null,
19960
19961         /**
19962          * the DragDrop object(s) that are being hovered over
19963          * @property dragOvers
19964          * @type Array
19965          * @private
19966          * @static
19967          */
19968         dragOvers: {},
19969
19970         /**
19971          * the X distance between the cursor and the object being dragged
19972          * @property deltaX
19973          * @type int
19974          * @private
19975          * @static
19976          */
19977         deltaX: 0,
19978
19979         /**
19980          * the Y distance between the cursor and the object being dragged
19981          * @property deltaY
19982          * @type int
19983          * @private
19984          * @static
19985          */
19986         deltaY: 0,
19987
19988         /**
19989          * Flag to determine if we should prevent the default behavior of the
19990          * events we define. By default this is true, but this can be set to
19991          * false if you need the default behavior (not recommended)
19992          * @property preventDefault
19993          * @type boolean
19994          * @static
19995          */
19996         preventDefault: true,
19997
19998         /**
19999          * Flag to determine if we should stop the propagation of the events
20000          * we generate. This is true by default but you may want to set it to
20001          * false if the html element contains other features that require the
20002          * mouse click.
20003          * @property stopPropagation
20004          * @type boolean
20005          * @static
20006          */
20007         stopPropagation: true,
20008
20009         /**
20010          * Internal flag that is set to true when drag and drop has been
20011          * intialized
20012          * @property initialized
20013          * @private
20014          * @static
20015          */
20016         initalized: false,
20017
20018         /**
20019          * All drag and drop can be disabled.
20020          * @property locked
20021          * @private
20022          * @static
20023          */
20024         locked: false,
20025
20026         /**
20027          * Called the first time an element is registered.
20028          * @method init
20029          * @private
20030          * @static
20031          */
20032         init: function() {
20033             this.initialized = true;
20034         },
20035
20036         /**
20037          * In point mode, drag and drop interaction is defined by the
20038          * location of the cursor during the drag/drop
20039          * @property POINT
20040          * @type int
20041          * @static
20042          */
20043         POINT: 0,
20044
20045         /**
20046          * In intersect mode, drag and drop interactio nis defined by the
20047          * overlap of two or more drag and drop objects.
20048          * @property INTERSECT
20049          * @type int
20050          * @static
20051          */
20052         INTERSECT: 1,
20053
20054         /**
20055          * The current drag and drop mode.  Default: POINT
20056          * @property mode
20057          * @type int
20058          * @static
20059          */
20060         mode: 0,
20061
20062         /**
20063          * Runs method on all drag and drop objects
20064          * @method _execOnAll
20065          * @private
20066          * @static
20067          */
20068         _execOnAll: function(sMethod, args) {
20069             for (var i in this.ids) {
20070                 for (var j in this.ids[i]) {
20071                     var oDD = this.ids[i][j];
20072                     if (! this.isTypeOfDD(oDD)) {
20073                         continue;
20074                     }
20075                     oDD[sMethod].apply(oDD, args);
20076                 }
20077             }
20078         },
20079
20080         /**
20081          * Drag and drop initialization.  Sets up the global event handlers
20082          * @method _onLoad
20083          * @private
20084          * @static
20085          */
20086         _onLoad: function() {
20087
20088             this.init();
20089
20090             if (!Roo.isTouch) {
20091                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20092                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20093             }
20094             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20095             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20096             
20097             Event.on(window,   "unload",    this._onUnload, this, true);
20098             Event.on(window,   "resize",    this._onResize, this, true);
20099             // Event.on(window,   "mouseout",    this._test);
20100
20101         },
20102
20103         /**
20104          * Reset constraints on all drag and drop objs
20105          * @method _onResize
20106          * @private
20107          * @static
20108          */
20109         _onResize: function(e) {
20110             this._execOnAll("resetConstraints", []);
20111         },
20112
20113         /**
20114          * Lock all drag and drop functionality
20115          * @method lock
20116          * @static
20117          */
20118         lock: function() { this.locked = true; },
20119
20120         /**
20121          * Unlock all drag and drop functionality
20122          * @method unlock
20123          * @static
20124          */
20125         unlock: function() { this.locked = false; },
20126
20127         /**
20128          * Is drag and drop locked?
20129          * @method isLocked
20130          * @return {boolean} True if drag and drop is locked, false otherwise.
20131          * @static
20132          */
20133         isLocked: function() { return this.locked; },
20134
20135         /**
20136          * Location cache that is set for all drag drop objects when a drag is
20137          * initiated, cleared when the drag is finished.
20138          * @property locationCache
20139          * @private
20140          * @static
20141          */
20142         locationCache: {},
20143
20144         /**
20145          * Set useCache to false if you want to force object the lookup of each
20146          * drag and drop linked element constantly during a drag.
20147          * @property useCache
20148          * @type boolean
20149          * @static
20150          */
20151         useCache: true,
20152
20153         /**
20154          * The number of pixels that the mouse needs to move after the
20155          * mousedown before the drag is initiated.  Default=3;
20156          * @property clickPixelThresh
20157          * @type int
20158          * @static
20159          */
20160         clickPixelThresh: 3,
20161
20162         /**
20163          * The number of milliseconds after the mousedown event to initiate the
20164          * drag if we don't get a mouseup event. Default=1000
20165          * @property clickTimeThresh
20166          * @type int
20167          * @static
20168          */
20169         clickTimeThresh: 350,
20170
20171         /**
20172          * Flag that indicates that either the drag pixel threshold or the
20173          * mousdown time threshold has been met
20174          * @property dragThreshMet
20175          * @type boolean
20176          * @private
20177          * @static
20178          */
20179         dragThreshMet: false,
20180
20181         /**
20182          * Timeout used for the click time threshold
20183          * @property clickTimeout
20184          * @type Object
20185          * @private
20186          * @static
20187          */
20188         clickTimeout: null,
20189
20190         /**
20191          * The X position of the mousedown event stored for later use when a
20192          * drag threshold is met.
20193          * @property startX
20194          * @type int
20195          * @private
20196          * @static
20197          */
20198         startX: 0,
20199
20200         /**
20201          * The Y position of the mousedown event stored for later use when a
20202          * drag threshold is met.
20203          * @property startY
20204          * @type int
20205          * @private
20206          * @static
20207          */
20208         startY: 0,
20209
20210         /**
20211          * Each DragDrop instance must be registered with the DragDropMgr.
20212          * This is executed in DragDrop.init()
20213          * @method regDragDrop
20214          * @param {DragDrop} oDD the DragDrop object to register
20215          * @param {String} sGroup the name of the group this element belongs to
20216          * @static
20217          */
20218         regDragDrop: function(oDD, sGroup) {
20219             if (!this.initialized) { this.init(); }
20220
20221             if (!this.ids[sGroup]) {
20222                 this.ids[sGroup] = {};
20223             }
20224             this.ids[sGroup][oDD.id] = oDD;
20225         },
20226
20227         /**
20228          * Removes the supplied dd instance from the supplied group. Executed
20229          * by DragDrop.removeFromGroup, so don't call this function directly.
20230          * @method removeDDFromGroup
20231          * @private
20232          * @static
20233          */
20234         removeDDFromGroup: function(oDD, sGroup) {
20235             if (!this.ids[sGroup]) {
20236                 this.ids[sGroup] = {};
20237             }
20238
20239             var obj = this.ids[sGroup];
20240             if (obj && obj[oDD.id]) {
20241                 delete obj[oDD.id];
20242             }
20243         },
20244
20245         /**
20246          * Unregisters a drag and drop item.  This is executed in
20247          * DragDrop.unreg, use that method instead of calling this directly.
20248          * @method _remove
20249          * @private
20250          * @static
20251          */
20252         _remove: function(oDD) {
20253             for (var g in oDD.groups) {
20254                 if (g && this.ids[g][oDD.id]) {
20255                     delete this.ids[g][oDD.id];
20256                 }
20257             }
20258             delete this.handleIds[oDD.id];
20259         },
20260
20261         /**
20262          * Each DragDrop handle element must be registered.  This is done
20263          * automatically when executing DragDrop.setHandleElId()
20264          * @method regHandle
20265          * @param {String} sDDId the DragDrop id this element is a handle for
20266          * @param {String} sHandleId the id of the element that is the drag
20267          * handle
20268          * @static
20269          */
20270         regHandle: function(sDDId, sHandleId) {
20271             if (!this.handleIds[sDDId]) {
20272                 this.handleIds[sDDId] = {};
20273             }
20274             this.handleIds[sDDId][sHandleId] = sHandleId;
20275         },
20276
20277         /**
20278          * Utility function to determine if a given element has been
20279          * registered as a drag drop item.
20280          * @method isDragDrop
20281          * @param {String} id the element id to check
20282          * @return {boolean} true if this element is a DragDrop item,
20283          * false otherwise
20284          * @static
20285          */
20286         isDragDrop: function(id) {
20287             return ( this.getDDById(id) ) ? true : false;
20288         },
20289
20290         /**
20291          * Returns the drag and drop instances that are in all groups the
20292          * passed in instance belongs to.
20293          * @method getRelated
20294          * @param {DragDrop} p_oDD the obj to get related data for
20295          * @param {boolean} bTargetsOnly if true, only return targetable objs
20296          * @return {DragDrop[]} the related instances
20297          * @static
20298          */
20299         getRelated: function(p_oDD, bTargetsOnly) {
20300             var oDDs = [];
20301             for (var i in p_oDD.groups) {
20302                 for (j in this.ids[i]) {
20303                     var dd = this.ids[i][j];
20304                     if (! this.isTypeOfDD(dd)) {
20305                         continue;
20306                     }
20307                     if (!bTargetsOnly || dd.isTarget) {
20308                         oDDs[oDDs.length] = dd;
20309                     }
20310                 }
20311             }
20312
20313             return oDDs;
20314         },
20315
20316         /**
20317          * Returns true if the specified dd target is a legal target for
20318          * the specifice drag obj
20319          * @method isLegalTarget
20320          * @param {DragDrop} the drag obj
20321          * @param {DragDrop} the target
20322          * @return {boolean} true if the target is a legal target for the
20323          * dd obj
20324          * @static
20325          */
20326         isLegalTarget: function (oDD, oTargetDD) {
20327             var targets = this.getRelated(oDD, true);
20328             for (var i=0, len=targets.length;i<len;++i) {
20329                 if (targets[i].id == oTargetDD.id) {
20330                     return true;
20331                 }
20332             }
20333
20334             return false;
20335         },
20336
20337         /**
20338          * My goal is to be able to transparently determine if an object is
20339          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20340          * returns "object", oDD.constructor.toString() always returns
20341          * "DragDrop" and not the name of the subclass.  So for now it just
20342          * evaluates a well-known variable in DragDrop.
20343          * @method isTypeOfDD
20344          * @param {Object} the object to evaluate
20345          * @return {boolean} true if typeof oDD = DragDrop
20346          * @static
20347          */
20348         isTypeOfDD: function (oDD) {
20349             return (oDD && oDD.__ygDragDrop);
20350         },
20351
20352         /**
20353          * Utility function to determine if a given element has been
20354          * registered as a drag drop handle for the given Drag Drop object.
20355          * @method isHandle
20356          * @param {String} id the element id to check
20357          * @return {boolean} true if this element is a DragDrop handle, false
20358          * otherwise
20359          * @static
20360          */
20361         isHandle: function(sDDId, sHandleId) {
20362             return ( this.handleIds[sDDId] &&
20363                             this.handleIds[sDDId][sHandleId] );
20364         },
20365
20366         /**
20367          * Returns the DragDrop instance for a given id
20368          * @method getDDById
20369          * @param {String} id the id of the DragDrop object
20370          * @return {DragDrop} the drag drop object, null if it is not found
20371          * @static
20372          */
20373         getDDById: function(id) {
20374             for (var i in this.ids) {
20375                 if (this.ids[i][id]) {
20376                     return this.ids[i][id];
20377                 }
20378             }
20379             return null;
20380         },
20381
20382         /**
20383          * Fired after a registered DragDrop object gets the mousedown event.
20384          * Sets up the events required to track the object being dragged
20385          * @method handleMouseDown
20386          * @param {Event} e the event
20387          * @param oDD the DragDrop object being dragged
20388          * @private
20389          * @static
20390          */
20391         handleMouseDown: function(e, oDD) {
20392             if(Roo.QuickTips){
20393                 Roo.QuickTips.disable();
20394             }
20395             this.currentTarget = e.getTarget();
20396
20397             this.dragCurrent = oDD;
20398
20399             var el = oDD.getEl();
20400
20401             // track start position
20402             this.startX = e.getPageX();
20403             this.startY = e.getPageY();
20404
20405             this.deltaX = this.startX - el.offsetLeft;
20406             this.deltaY = this.startY - el.offsetTop;
20407
20408             this.dragThreshMet = false;
20409
20410             this.clickTimeout = setTimeout(
20411                     function() {
20412                         var DDM = Roo.dd.DDM;
20413                         DDM.startDrag(DDM.startX, DDM.startY);
20414                     },
20415                     this.clickTimeThresh );
20416         },
20417
20418         /**
20419          * Fired when either the drag pixel threshol or the mousedown hold
20420          * time threshold has been met.
20421          * @method startDrag
20422          * @param x {int} the X position of the original mousedown
20423          * @param y {int} the Y position of the original mousedown
20424          * @static
20425          */
20426         startDrag: function(x, y) {
20427             clearTimeout(this.clickTimeout);
20428             if (this.dragCurrent) {
20429                 this.dragCurrent.b4StartDrag(x, y);
20430                 this.dragCurrent.startDrag(x, y);
20431             }
20432             this.dragThreshMet = true;
20433         },
20434
20435         /**
20436          * Internal function to handle the mouseup event.  Will be invoked
20437          * from the context of the document.
20438          * @method handleMouseUp
20439          * @param {Event} e the event
20440          * @private
20441          * @static
20442          */
20443         handleMouseUp: function(e) {
20444
20445             if(Roo.QuickTips){
20446                 Roo.QuickTips.enable();
20447             }
20448             if (! this.dragCurrent) {
20449                 return;
20450             }
20451
20452             clearTimeout(this.clickTimeout);
20453
20454             if (this.dragThreshMet) {
20455                 this.fireEvents(e, true);
20456             } else {
20457             }
20458
20459             this.stopDrag(e);
20460
20461             this.stopEvent(e);
20462         },
20463
20464         /**
20465          * Utility to stop event propagation and event default, if these
20466          * features are turned on.
20467          * @method stopEvent
20468          * @param {Event} e the event as returned by this.getEvent()
20469          * @static
20470          */
20471         stopEvent: function(e){
20472             if(this.stopPropagation) {
20473                 e.stopPropagation();
20474             }
20475
20476             if (this.preventDefault) {
20477                 e.preventDefault();
20478             }
20479         },
20480
20481         /**
20482          * Internal function to clean up event handlers after the drag
20483          * operation is complete
20484          * @method stopDrag
20485          * @param {Event} e the event
20486          * @private
20487          * @static
20488          */
20489         stopDrag: function(e) {
20490             // Fire the drag end event for the item that was dragged
20491             if (this.dragCurrent) {
20492                 if (this.dragThreshMet) {
20493                     this.dragCurrent.b4EndDrag(e);
20494                     this.dragCurrent.endDrag(e);
20495                 }
20496
20497                 this.dragCurrent.onMouseUp(e);
20498             }
20499
20500             this.dragCurrent = null;
20501             this.dragOvers = {};
20502         },
20503
20504         /**
20505          * Internal function to handle the mousemove event.  Will be invoked
20506          * from the context of the html element.
20507          *
20508          * @TODO figure out what we can do about mouse events lost when the
20509          * user drags objects beyond the window boundary.  Currently we can
20510          * detect this in internet explorer by verifying that the mouse is
20511          * down during the mousemove event.  Firefox doesn't give us the
20512          * button state on the mousemove event.
20513          * @method handleMouseMove
20514          * @param {Event} e the event
20515          * @private
20516          * @static
20517          */
20518         handleMouseMove: function(e) {
20519             if (! this.dragCurrent) {
20520                 return true;
20521             }
20522
20523             // var button = e.which || e.button;
20524
20525             // check for IE mouseup outside of page boundary
20526             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20527                 this.stopEvent(e);
20528                 return this.handleMouseUp(e);
20529             }
20530
20531             if (!this.dragThreshMet) {
20532                 var diffX = Math.abs(this.startX - e.getPageX());
20533                 var diffY = Math.abs(this.startY - e.getPageY());
20534                 if (diffX > this.clickPixelThresh ||
20535                             diffY > this.clickPixelThresh) {
20536                     this.startDrag(this.startX, this.startY);
20537                 }
20538             }
20539
20540             if (this.dragThreshMet) {
20541                 this.dragCurrent.b4Drag(e);
20542                 this.dragCurrent.onDrag(e);
20543                 if(!this.dragCurrent.moveOnly){
20544                     this.fireEvents(e, false);
20545                 }
20546             }
20547
20548             this.stopEvent(e);
20549
20550             return true;
20551         },
20552
20553         /**
20554          * Iterates over all of the DragDrop elements to find ones we are
20555          * hovering over or dropping on
20556          * @method fireEvents
20557          * @param {Event} e the event
20558          * @param {boolean} isDrop is this a drop op or a mouseover op?
20559          * @private
20560          * @static
20561          */
20562         fireEvents: function(e, isDrop) {
20563             var dc = this.dragCurrent;
20564
20565             // If the user did the mouse up outside of the window, we could
20566             // get here even though we have ended the drag.
20567             if (!dc || dc.isLocked()) {
20568                 return;
20569             }
20570
20571             var pt = e.getPoint();
20572
20573             // cache the previous dragOver array
20574             var oldOvers = [];
20575
20576             var outEvts   = [];
20577             var overEvts  = [];
20578             var dropEvts  = [];
20579             var enterEvts = [];
20580
20581             // Check to see if the object(s) we were hovering over is no longer
20582             // being hovered over so we can fire the onDragOut event
20583             for (var i in this.dragOvers) {
20584
20585                 var ddo = this.dragOvers[i];
20586
20587                 if (! this.isTypeOfDD(ddo)) {
20588                     continue;
20589                 }
20590
20591                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20592                     outEvts.push( ddo );
20593                 }
20594
20595                 oldOvers[i] = true;
20596                 delete this.dragOvers[i];
20597             }
20598
20599             for (var sGroup in dc.groups) {
20600
20601                 if ("string" != typeof sGroup) {
20602                     continue;
20603                 }
20604
20605                 for (i in this.ids[sGroup]) {
20606                     var oDD = this.ids[sGroup][i];
20607                     if (! this.isTypeOfDD(oDD)) {
20608                         continue;
20609                     }
20610
20611                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20612                         if (this.isOverTarget(pt, oDD, this.mode)) {
20613                             // look for drop interactions
20614                             if (isDrop) {
20615                                 dropEvts.push( oDD );
20616                             // look for drag enter and drag over interactions
20617                             } else {
20618
20619                                 // initial drag over: dragEnter fires
20620                                 if (!oldOvers[oDD.id]) {
20621                                     enterEvts.push( oDD );
20622                                 // subsequent drag overs: dragOver fires
20623                                 } else {
20624                                     overEvts.push( oDD );
20625                                 }
20626
20627                                 this.dragOvers[oDD.id] = oDD;
20628                             }
20629                         }
20630                     }
20631                 }
20632             }
20633
20634             if (this.mode) {
20635                 if (outEvts.length) {
20636                     dc.b4DragOut(e, outEvts);
20637                     dc.onDragOut(e, outEvts);
20638                 }
20639
20640                 if (enterEvts.length) {
20641                     dc.onDragEnter(e, enterEvts);
20642                 }
20643
20644                 if (overEvts.length) {
20645                     dc.b4DragOver(e, overEvts);
20646                     dc.onDragOver(e, overEvts);
20647                 }
20648
20649                 if (dropEvts.length) {
20650                     dc.b4DragDrop(e, dropEvts);
20651                     dc.onDragDrop(e, dropEvts);
20652                 }
20653
20654             } else {
20655                 // fire dragout events
20656                 var len = 0;
20657                 for (i=0, len=outEvts.length; i<len; ++i) {
20658                     dc.b4DragOut(e, outEvts[i].id);
20659                     dc.onDragOut(e, outEvts[i].id);
20660                 }
20661
20662                 // fire enter events
20663                 for (i=0,len=enterEvts.length; i<len; ++i) {
20664                     // dc.b4DragEnter(e, oDD.id);
20665                     dc.onDragEnter(e, enterEvts[i].id);
20666                 }
20667
20668                 // fire over events
20669                 for (i=0,len=overEvts.length; i<len; ++i) {
20670                     dc.b4DragOver(e, overEvts[i].id);
20671                     dc.onDragOver(e, overEvts[i].id);
20672                 }
20673
20674                 // fire drop events
20675                 for (i=0, len=dropEvts.length; i<len; ++i) {
20676                     dc.b4DragDrop(e, dropEvts[i].id);
20677                     dc.onDragDrop(e, dropEvts[i].id);
20678                 }
20679
20680             }
20681
20682             // notify about a drop that did not find a target
20683             if (isDrop && !dropEvts.length) {
20684                 dc.onInvalidDrop(e);
20685             }
20686
20687         },
20688
20689         /**
20690          * Helper function for getting the best match from the list of drag
20691          * and drop objects returned by the drag and drop events when we are
20692          * in INTERSECT mode.  It returns either the first object that the
20693          * cursor is over, or the object that has the greatest overlap with
20694          * the dragged element.
20695          * @method getBestMatch
20696          * @param  {DragDrop[]} dds The array of drag and drop objects
20697          * targeted
20698          * @return {DragDrop}       The best single match
20699          * @static
20700          */
20701         getBestMatch: function(dds) {
20702             var winner = null;
20703             // Return null if the input is not what we expect
20704             //if (!dds || !dds.length || dds.length == 0) {
20705                // winner = null;
20706             // If there is only one item, it wins
20707             //} else if (dds.length == 1) {
20708
20709             var len = dds.length;
20710
20711             if (len == 1) {
20712                 winner = dds[0];
20713             } else {
20714                 // Loop through the targeted items
20715                 for (var i=0; i<len; ++i) {
20716                     var dd = dds[i];
20717                     // If the cursor is over the object, it wins.  If the
20718                     // cursor is over multiple matches, the first one we come
20719                     // to wins.
20720                     if (dd.cursorIsOver) {
20721                         winner = dd;
20722                         break;
20723                     // Otherwise the object with the most overlap wins
20724                     } else {
20725                         if (!winner ||
20726                             winner.overlap.getArea() < dd.overlap.getArea()) {
20727                             winner = dd;
20728                         }
20729                     }
20730                 }
20731             }
20732
20733             return winner;
20734         },
20735
20736         /**
20737          * Refreshes the cache of the top-left and bottom-right points of the
20738          * drag and drop objects in the specified group(s).  This is in the
20739          * format that is stored in the drag and drop instance, so typical
20740          * usage is:
20741          * <code>
20742          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20743          * </code>
20744          * Alternatively:
20745          * <code>
20746          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20747          * </code>
20748          * @TODO this really should be an indexed array.  Alternatively this
20749          * method could accept both.
20750          * @method refreshCache
20751          * @param {Object} groups an associative array of groups to refresh
20752          * @static
20753          */
20754         refreshCache: function(groups) {
20755             for (var sGroup in groups) {
20756                 if ("string" != typeof sGroup) {
20757                     continue;
20758                 }
20759                 for (var i in this.ids[sGroup]) {
20760                     var oDD = this.ids[sGroup][i];
20761
20762                     if (this.isTypeOfDD(oDD)) {
20763                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20764                         var loc = this.getLocation(oDD);
20765                         if (loc) {
20766                             this.locationCache[oDD.id] = loc;
20767                         } else {
20768                             delete this.locationCache[oDD.id];
20769                             // this will unregister the drag and drop object if
20770                             // the element is not in a usable state
20771                             // oDD.unreg();
20772                         }
20773                     }
20774                 }
20775             }
20776         },
20777
20778         /**
20779          * This checks to make sure an element exists and is in the DOM.  The
20780          * main purpose is to handle cases where innerHTML is used to remove
20781          * drag and drop objects from the DOM.  IE provides an 'unspecified
20782          * error' when trying to access the offsetParent of such an element
20783          * @method verifyEl
20784          * @param {HTMLElement} el the element to check
20785          * @return {boolean} true if the element looks usable
20786          * @static
20787          */
20788         verifyEl: function(el) {
20789             if (el) {
20790                 var parent;
20791                 if(Roo.isIE){
20792                     try{
20793                         parent = el.offsetParent;
20794                     }catch(e){}
20795                 }else{
20796                     parent = el.offsetParent;
20797                 }
20798                 if (parent) {
20799                     return true;
20800                 }
20801             }
20802
20803             return false;
20804         },
20805
20806         /**
20807          * Returns a Region object containing the drag and drop element's position
20808          * and size, including the padding configured for it
20809          * @method getLocation
20810          * @param {DragDrop} oDD the drag and drop object to get the
20811          *                       location for
20812          * @return {Roo.lib.Region} a Region object representing the total area
20813          *                             the element occupies, including any padding
20814          *                             the instance is configured for.
20815          * @static
20816          */
20817         getLocation: function(oDD) {
20818             if (! this.isTypeOfDD(oDD)) {
20819                 return null;
20820             }
20821
20822             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20823
20824             try {
20825                 pos= Roo.lib.Dom.getXY(el);
20826             } catch (e) { }
20827
20828             if (!pos) {
20829                 return null;
20830             }
20831
20832             x1 = pos[0];
20833             x2 = x1 + el.offsetWidth;
20834             y1 = pos[1];
20835             y2 = y1 + el.offsetHeight;
20836
20837             t = y1 - oDD.padding[0];
20838             r = x2 + oDD.padding[1];
20839             b = y2 + oDD.padding[2];
20840             l = x1 - oDD.padding[3];
20841
20842             return new Roo.lib.Region( t, r, b, l );
20843         },
20844
20845         /**
20846          * Checks the cursor location to see if it over the target
20847          * @method isOverTarget
20848          * @param {Roo.lib.Point} pt The point to evaluate
20849          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20850          * @return {boolean} true if the mouse is over the target
20851          * @private
20852          * @static
20853          */
20854         isOverTarget: function(pt, oTarget, intersect) {
20855             // use cache if available
20856             var loc = this.locationCache[oTarget.id];
20857             if (!loc || !this.useCache) {
20858                 loc = this.getLocation(oTarget);
20859                 this.locationCache[oTarget.id] = loc;
20860
20861             }
20862
20863             if (!loc) {
20864                 return false;
20865             }
20866
20867             oTarget.cursorIsOver = loc.contains( pt );
20868
20869             // DragDrop is using this as a sanity check for the initial mousedown
20870             // in this case we are done.  In POINT mode, if the drag obj has no
20871             // contraints, we are also done. Otherwise we need to evaluate the
20872             // location of the target as related to the actual location of the
20873             // dragged element.
20874             var dc = this.dragCurrent;
20875             if (!dc || !dc.getTargetCoord ||
20876                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20877                 return oTarget.cursorIsOver;
20878             }
20879
20880             oTarget.overlap = null;
20881
20882             // Get the current location of the drag element, this is the
20883             // location of the mouse event less the delta that represents
20884             // where the original mousedown happened on the element.  We
20885             // need to consider constraints and ticks as well.
20886             var pos = dc.getTargetCoord(pt.x, pt.y);
20887
20888             var el = dc.getDragEl();
20889             var curRegion = new Roo.lib.Region( pos.y,
20890                                                    pos.x + el.offsetWidth,
20891                                                    pos.y + el.offsetHeight,
20892                                                    pos.x );
20893
20894             var overlap = curRegion.intersect(loc);
20895
20896             if (overlap) {
20897                 oTarget.overlap = overlap;
20898                 return (intersect) ? true : oTarget.cursorIsOver;
20899             } else {
20900                 return false;
20901             }
20902         },
20903
20904         /**
20905          * unload event handler
20906          * @method _onUnload
20907          * @private
20908          * @static
20909          */
20910         _onUnload: function(e, me) {
20911             Roo.dd.DragDropMgr.unregAll();
20912         },
20913
20914         /**
20915          * Cleans up the drag and drop events and objects.
20916          * @method unregAll
20917          * @private
20918          * @static
20919          */
20920         unregAll: function() {
20921
20922             if (this.dragCurrent) {
20923                 this.stopDrag();
20924                 this.dragCurrent = null;
20925             }
20926
20927             this._execOnAll("unreg", []);
20928
20929             for (i in this.elementCache) {
20930                 delete this.elementCache[i];
20931             }
20932
20933             this.elementCache = {};
20934             this.ids = {};
20935         },
20936
20937         /**
20938          * A cache of DOM elements
20939          * @property elementCache
20940          * @private
20941          * @static
20942          */
20943         elementCache: {},
20944
20945         /**
20946          * Get the wrapper for the DOM element specified
20947          * @method getElWrapper
20948          * @param {String} id the id of the element to get
20949          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20950          * @private
20951          * @deprecated This wrapper isn't that useful
20952          * @static
20953          */
20954         getElWrapper: function(id) {
20955             var oWrapper = this.elementCache[id];
20956             if (!oWrapper || !oWrapper.el) {
20957                 oWrapper = this.elementCache[id] =
20958                     new this.ElementWrapper(Roo.getDom(id));
20959             }
20960             return oWrapper;
20961         },
20962
20963         /**
20964          * Returns the actual DOM element
20965          * @method getElement
20966          * @param {String} id the id of the elment to get
20967          * @return {Object} The element
20968          * @deprecated use Roo.getDom instead
20969          * @static
20970          */
20971         getElement: function(id) {
20972             return Roo.getDom(id);
20973         },
20974
20975         /**
20976          * Returns the style property for the DOM element (i.e.,
20977          * document.getElById(id).style)
20978          * @method getCss
20979          * @param {String} id the id of the elment to get
20980          * @return {Object} The style property of the element
20981          * @deprecated use Roo.getDom instead
20982          * @static
20983          */
20984         getCss: function(id) {
20985             var el = Roo.getDom(id);
20986             return (el) ? el.style : null;
20987         },
20988
20989         /**
20990          * Inner class for cached elements
20991          * @class DragDropMgr.ElementWrapper
20992          * @for DragDropMgr
20993          * @private
20994          * @deprecated
20995          */
20996         ElementWrapper: function(el) {
20997                 /**
20998                  * The element
20999                  * @property el
21000                  */
21001                 this.el = el || null;
21002                 /**
21003                  * The element id
21004                  * @property id
21005                  */
21006                 this.id = this.el && el.id;
21007                 /**
21008                  * A reference to the style property
21009                  * @property css
21010                  */
21011                 this.css = this.el && el.style;
21012             },
21013
21014         /**
21015          * Returns the X position of an html element
21016          * @method getPosX
21017          * @param el the element for which to get the position
21018          * @return {int} the X coordinate
21019          * @for DragDropMgr
21020          * @deprecated use Roo.lib.Dom.getX instead
21021          * @static
21022          */
21023         getPosX: function(el) {
21024             return Roo.lib.Dom.getX(el);
21025         },
21026
21027         /**
21028          * Returns the Y position of an html element
21029          * @method getPosY
21030          * @param el the element for which to get the position
21031          * @return {int} the Y coordinate
21032          * @deprecated use Roo.lib.Dom.getY instead
21033          * @static
21034          */
21035         getPosY: function(el) {
21036             return Roo.lib.Dom.getY(el);
21037         },
21038
21039         /**
21040          * Swap two nodes.  In IE, we use the native method, for others we
21041          * emulate the IE behavior
21042          * @method swapNode
21043          * @param n1 the first node to swap
21044          * @param n2 the other node to swap
21045          * @static
21046          */
21047         swapNode: function(n1, n2) {
21048             if (n1.swapNode) {
21049                 n1.swapNode(n2);
21050             } else {
21051                 var p = n2.parentNode;
21052                 var s = n2.nextSibling;
21053
21054                 if (s == n1) {
21055                     p.insertBefore(n1, n2);
21056                 } else if (n2 == n1.nextSibling) {
21057                     p.insertBefore(n2, n1);
21058                 } else {
21059                     n1.parentNode.replaceChild(n2, n1);
21060                     p.insertBefore(n1, s);
21061                 }
21062             }
21063         },
21064
21065         /**
21066          * Returns the current scroll position
21067          * @method getScroll
21068          * @private
21069          * @static
21070          */
21071         getScroll: function () {
21072             var t, l, dde=document.documentElement, db=document.body;
21073             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21074                 t = dde.scrollTop;
21075                 l = dde.scrollLeft;
21076             } else if (db) {
21077                 t = db.scrollTop;
21078                 l = db.scrollLeft;
21079             } else {
21080
21081             }
21082             return { top: t, left: l };
21083         },
21084
21085         /**
21086          * Returns the specified element style property
21087          * @method getStyle
21088          * @param {HTMLElement} el          the element
21089          * @param {string}      styleProp   the style property
21090          * @return {string} The value of the style property
21091          * @deprecated use Roo.lib.Dom.getStyle
21092          * @static
21093          */
21094         getStyle: function(el, styleProp) {
21095             return Roo.fly(el).getStyle(styleProp);
21096         },
21097
21098         /**
21099          * Gets the scrollTop
21100          * @method getScrollTop
21101          * @return {int} the document's scrollTop
21102          * @static
21103          */
21104         getScrollTop: function () { return this.getScroll().top; },
21105
21106         /**
21107          * Gets the scrollLeft
21108          * @method getScrollLeft
21109          * @return {int} the document's scrollTop
21110          * @static
21111          */
21112         getScrollLeft: function () { return this.getScroll().left; },
21113
21114         /**
21115          * Sets the x/y position of an element to the location of the
21116          * target element.
21117          * @method moveToEl
21118          * @param {HTMLElement} moveEl      The element to move
21119          * @param {HTMLElement} targetEl    The position reference element
21120          * @static
21121          */
21122         moveToEl: function (moveEl, targetEl) {
21123             var aCoord = Roo.lib.Dom.getXY(targetEl);
21124             Roo.lib.Dom.setXY(moveEl, aCoord);
21125         },
21126
21127         /**
21128          * Numeric array sort function
21129          * @method numericSort
21130          * @static
21131          */
21132         numericSort: function(a, b) { return (a - b); },
21133
21134         /**
21135          * Internal counter
21136          * @property _timeoutCount
21137          * @private
21138          * @static
21139          */
21140         _timeoutCount: 0,
21141
21142         /**
21143          * Trying to make the load order less important.  Without this we get
21144          * an error if this file is loaded before the Event Utility.
21145          * @method _addListeners
21146          * @private
21147          * @static
21148          */
21149         _addListeners: function() {
21150             var DDM = Roo.dd.DDM;
21151             if ( Roo.lib.Event && document ) {
21152                 DDM._onLoad();
21153             } else {
21154                 if (DDM._timeoutCount > 2000) {
21155                 } else {
21156                     setTimeout(DDM._addListeners, 10);
21157                     if (document && document.body) {
21158                         DDM._timeoutCount += 1;
21159                     }
21160                 }
21161             }
21162         },
21163
21164         /**
21165          * Recursively searches the immediate parent and all child nodes for
21166          * the handle element in order to determine wheter or not it was
21167          * clicked.
21168          * @method handleWasClicked
21169          * @param node the html element to inspect
21170          * @static
21171          */
21172         handleWasClicked: function(node, id) {
21173             if (this.isHandle(id, node.id)) {
21174                 return true;
21175             } else {
21176                 // check to see if this is a text node child of the one we want
21177                 var p = node.parentNode;
21178
21179                 while (p) {
21180                     if (this.isHandle(id, p.id)) {
21181                         return true;
21182                     } else {
21183                         p = p.parentNode;
21184                     }
21185                 }
21186             }
21187
21188             return false;
21189         }
21190
21191     };
21192
21193 }();
21194
21195 // shorter alias, save a few bytes
21196 Roo.dd.DDM = Roo.dd.DragDropMgr;
21197 Roo.dd.DDM._addListeners();
21198
21199 }/*
21200  * Based on:
21201  * Ext JS Library 1.1.1
21202  * Copyright(c) 2006-2007, Ext JS, LLC.
21203  *
21204  * Originally Released Under LGPL - original licence link has changed is not relivant.
21205  *
21206  * Fork - LGPL
21207  * <script type="text/javascript">
21208  */
21209
21210 /**
21211  * @class Roo.dd.DD
21212  * A DragDrop implementation where the linked element follows the
21213  * mouse cursor during a drag.
21214  * @extends Roo.dd.DragDrop
21215  * @constructor
21216  * @param {String} id the id of the linked element
21217  * @param {String} sGroup the group of related DragDrop items
21218  * @param {object} config an object containing configurable attributes
21219  *                Valid properties for DD:
21220  *                    scroll
21221  */
21222 Roo.dd.DD = function(id, sGroup, config) {
21223     if (id) {
21224         this.init(id, sGroup, config);
21225     }
21226 };
21227
21228 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21229
21230     /**
21231      * When set to true, the utility automatically tries to scroll the browser
21232      * window wehn a drag and drop element is dragged near the viewport boundary.
21233      * Defaults to true.
21234      * @property scroll
21235      * @type boolean
21236      */
21237     scroll: true,
21238
21239     /**
21240      * Sets the pointer offset to the distance between the linked element's top
21241      * left corner and the location the element was clicked
21242      * @method autoOffset
21243      * @param {int} iPageX the X coordinate of the click
21244      * @param {int} iPageY the Y coordinate of the click
21245      */
21246     autoOffset: function(iPageX, iPageY) {
21247         var x = iPageX - this.startPageX;
21248         var y = iPageY - this.startPageY;
21249         this.setDelta(x, y);
21250     },
21251
21252     /**
21253      * Sets the pointer offset.  You can call this directly to force the
21254      * offset to be in a particular location (e.g., pass in 0,0 to set it
21255      * to the center of the object)
21256      * @method setDelta
21257      * @param {int} iDeltaX the distance from the left
21258      * @param {int} iDeltaY the distance from the top
21259      */
21260     setDelta: function(iDeltaX, iDeltaY) {
21261         this.deltaX = iDeltaX;
21262         this.deltaY = iDeltaY;
21263     },
21264
21265     /**
21266      * Sets the drag element to the location of the mousedown or click event,
21267      * maintaining the cursor location relative to the location on the element
21268      * that was clicked.  Override this if you want to place the element in a
21269      * location other than where the cursor is.
21270      * @method setDragElPos
21271      * @param {int} iPageX the X coordinate of the mousedown or drag event
21272      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21273      */
21274     setDragElPos: function(iPageX, iPageY) {
21275         // the first time we do this, we are going to check to make sure
21276         // the element has css positioning
21277
21278         var el = this.getDragEl();
21279         this.alignElWithMouse(el, iPageX, iPageY);
21280     },
21281
21282     /**
21283      * Sets the element to the location of the mousedown or click event,
21284      * maintaining the cursor location relative to the location on the element
21285      * that was clicked.  Override this if you want to place the element in a
21286      * location other than where the cursor is.
21287      * @method alignElWithMouse
21288      * @param {HTMLElement} el the element to move
21289      * @param {int} iPageX the X coordinate of the mousedown or drag event
21290      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21291      */
21292     alignElWithMouse: function(el, iPageX, iPageY) {
21293         var oCoord = this.getTargetCoord(iPageX, iPageY);
21294         var fly = el.dom ? el : Roo.fly(el);
21295         if (!this.deltaSetXY) {
21296             var aCoord = [oCoord.x, oCoord.y];
21297             fly.setXY(aCoord);
21298             var newLeft = fly.getLeft(true);
21299             var newTop  = fly.getTop(true);
21300             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21301         } else {
21302             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21303         }
21304
21305         this.cachePosition(oCoord.x, oCoord.y);
21306         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21307         return oCoord;
21308     },
21309
21310     /**
21311      * Saves the most recent position so that we can reset the constraints and
21312      * tick marks on-demand.  We need to know this so that we can calculate the
21313      * number of pixels the element is offset from its original position.
21314      * @method cachePosition
21315      * @param iPageX the current x position (optional, this just makes it so we
21316      * don't have to look it up again)
21317      * @param iPageY the current y position (optional, this just makes it so we
21318      * don't have to look it up again)
21319      */
21320     cachePosition: function(iPageX, iPageY) {
21321         if (iPageX) {
21322             this.lastPageX = iPageX;
21323             this.lastPageY = iPageY;
21324         } else {
21325             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21326             this.lastPageX = aCoord[0];
21327             this.lastPageY = aCoord[1];
21328         }
21329     },
21330
21331     /**
21332      * Auto-scroll the window if the dragged object has been moved beyond the
21333      * visible window boundary.
21334      * @method autoScroll
21335      * @param {int} x the drag element's x position
21336      * @param {int} y the drag element's y position
21337      * @param {int} h the height of the drag element
21338      * @param {int} w the width of the drag element
21339      * @private
21340      */
21341     autoScroll: function(x, y, h, w) {
21342
21343         if (this.scroll) {
21344             // The client height
21345             var clientH = Roo.lib.Dom.getViewWidth();
21346
21347             // The client width
21348             var clientW = Roo.lib.Dom.getViewHeight();
21349
21350             // The amt scrolled down
21351             var st = this.DDM.getScrollTop();
21352
21353             // The amt scrolled right
21354             var sl = this.DDM.getScrollLeft();
21355
21356             // Location of the bottom of the element
21357             var bot = h + y;
21358
21359             // Location of the right of the element
21360             var right = w + x;
21361
21362             // The distance from the cursor to the bottom of the visible area,
21363             // adjusted so that we don't scroll if the cursor is beyond the
21364             // element drag constraints
21365             var toBot = (clientH + st - y - this.deltaY);
21366
21367             // The distance from the cursor to the right of the visible area
21368             var toRight = (clientW + sl - x - this.deltaX);
21369
21370
21371             // How close to the edge the cursor must be before we scroll
21372             // var thresh = (document.all) ? 100 : 40;
21373             var thresh = 40;
21374
21375             // How many pixels to scroll per autoscroll op.  This helps to reduce
21376             // clunky scrolling. IE is more sensitive about this ... it needs this
21377             // value to be higher.
21378             var scrAmt = (document.all) ? 80 : 30;
21379
21380             // Scroll down if we are near the bottom of the visible page and the
21381             // obj extends below the crease
21382             if ( bot > clientH && toBot < thresh ) {
21383                 window.scrollTo(sl, st + scrAmt);
21384             }
21385
21386             // Scroll up if the window is scrolled down and the top of the object
21387             // goes above the top border
21388             if ( y < st && st > 0 && y - st < thresh ) {
21389                 window.scrollTo(sl, st - scrAmt);
21390             }
21391
21392             // Scroll right if the obj is beyond the right border and the cursor is
21393             // near the border.
21394             if ( right > clientW && toRight < thresh ) {
21395                 window.scrollTo(sl + scrAmt, st);
21396             }
21397
21398             // Scroll left if the window has been scrolled to the right and the obj
21399             // extends past the left border
21400             if ( x < sl && sl > 0 && x - sl < thresh ) {
21401                 window.scrollTo(sl - scrAmt, st);
21402             }
21403         }
21404     },
21405
21406     /**
21407      * Finds the location the element should be placed if we want to move
21408      * it to where the mouse location less the click offset would place us.
21409      * @method getTargetCoord
21410      * @param {int} iPageX the X coordinate of the click
21411      * @param {int} iPageY the Y coordinate of the click
21412      * @return an object that contains the coordinates (Object.x and Object.y)
21413      * @private
21414      */
21415     getTargetCoord: function(iPageX, iPageY) {
21416
21417
21418         var x = iPageX - this.deltaX;
21419         var y = iPageY - this.deltaY;
21420
21421         if (this.constrainX) {
21422             if (x < this.minX) { x = this.minX; }
21423             if (x > this.maxX) { x = this.maxX; }
21424         }
21425
21426         if (this.constrainY) {
21427             if (y < this.minY) { y = this.minY; }
21428             if (y > this.maxY) { y = this.maxY; }
21429         }
21430
21431         x = this.getTick(x, this.xTicks);
21432         y = this.getTick(y, this.yTicks);
21433
21434
21435         return {x:x, y:y};
21436     },
21437
21438     /*
21439      * Sets up config options specific to this class. Overrides
21440      * Roo.dd.DragDrop, but all versions of this method through the
21441      * inheritance chain are called
21442      */
21443     applyConfig: function() {
21444         Roo.dd.DD.superclass.applyConfig.call(this);
21445         this.scroll = (this.config.scroll !== false);
21446     },
21447
21448     /*
21449      * Event that fires prior to the onMouseDown event.  Overrides
21450      * Roo.dd.DragDrop.
21451      */
21452     b4MouseDown: function(e) {
21453         // this.resetConstraints();
21454         this.autoOffset(e.getPageX(),
21455                             e.getPageY());
21456     },
21457
21458     /*
21459      * Event that fires prior to the onDrag event.  Overrides
21460      * Roo.dd.DragDrop.
21461      */
21462     b4Drag: function(e) {
21463         this.setDragElPos(e.getPageX(),
21464                             e.getPageY());
21465     },
21466
21467     toString: function() {
21468         return ("DD " + this.id);
21469     }
21470
21471     //////////////////////////////////////////////////////////////////////////
21472     // Debugging ygDragDrop events that can be overridden
21473     //////////////////////////////////////////////////////////////////////////
21474     /*
21475     startDrag: function(x, y) {
21476     },
21477
21478     onDrag: function(e) {
21479     },
21480
21481     onDragEnter: function(e, id) {
21482     },
21483
21484     onDragOver: function(e, id) {
21485     },
21486
21487     onDragOut: function(e, id) {
21488     },
21489
21490     onDragDrop: function(e, id) {
21491     },
21492
21493     endDrag: function(e) {
21494     }
21495
21496     */
21497
21498 });/*
21499  * Based on:
21500  * Ext JS Library 1.1.1
21501  * Copyright(c) 2006-2007, Ext JS, LLC.
21502  *
21503  * Originally Released Under LGPL - original licence link has changed is not relivant.
21504  *
21505  * Fork - LGPL
21506  * <script type="text/javascript">
21507  */
21508
21509 /**
21510  * @class Roo.dd.DDProxy
21511  * A DragDrop implementation that inserts an empty, bordered div into
21512  * the document that follows the cursor during drag operations.  At the time of
21513  * the click, the frame div is resized to the dimensions of the linked html
21514  * element, and moved to the exact location of the linked element.
21515  *
21516  * References to the "frame" element refer to the single proxy element that
21517  * was created to be dragged in place of all DDProxy elements on the
21518  * page.
21519  *
21520  * @extends Roo.dd.DD
21521  * @constructor
21522  * @param {String} id the id of the linked html element
21523  * @param {String} sGroup the group of related DragDrop objects
21524  * @param {object} config an object containing configurable attributes
21525  *                Valid properties for DDProxy in addition to those in DragDrop:
21526  *                   resizeFrame, centerFrame, dragElId
21527  */
21528 Roo.dd.DDProxy = function(id, sGroup, config) {
21529     if (id) {
21530         this.init(id, sGroup, config);
21531         this.initFrame();
21532     }
21533 };
21534
21535 /**
21536  * The default drag frame div id
21537  * @property Roo.dd.DDProxy.dragElId
21538  * @type String
21539  * @static
21540  */
21541 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21542
21543 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21544
21545     /**
21546      * By default we resize the drag frame to be the same size as the element
21547      * we want to drag (this is to get the frame effect).  We can turn it off
21548      * if we want a different behavior.
21549      * @property resizeFrame
21550      * @type boolean
21551      */
21552     resizeFrame: true,
21553
21554     /**
21555      * By default the frame is positioned exactly where the drag element is, so
21556      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21557      * you do not have constraints on the obj is to have the drag frame centered
21558      * around the cursor.  Set centerFrame to true for this effect.
21559      * @property centerFrame
21560      * @type boolean
21561      */
21562     centerFrame: false,
21563
21564     /**
21565      * Creates the proxy element if it does not yet exist
21566      * @method createFrame
21567      */
21568     createFrame: function() {
21569         var self = this;
21570         var body = document.body;
21571
21572         if (!body || !body.firstChild) {
21573             setTimeout( function() { self.createFrame(); }, 50 );
21574             return;
21575         }
21576
21577         var div = this.getDragEl();
21578
21579         if (!div) {
21580             div    = document.createElement("div");
21581             div.id = this.dragElId;
21582             var s  = div.style;
21583
21584             s.position   = "absolute";
21585             s.visibility = "hidden";
21586             s.cursor     = "move";
21587             s.border     = "2px solid #aaa";
21588             s.zIndex     = 999;
21589
21590             // appendChild can blow up IE if invoked prior to the window load event
21591             // while rendering a table.  It is possible there are other scenarios
21592             // that would cause this to happen as well.
21593             body.insertBefore(div, body.firstChild);
21594         }
21595     },
21596
21597     /**
21598      * Initialization for the drag frame element.  Must be called in the
21599      * constructor of all subclasses
21600      * @method initFrame
21601      */
21602     initFrame: function() {
21603         this.createFrame();
21604     },
21605
21606     applyConfig: function() {
21607         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21608
21609         this.resizeFrame = (this.config.resizeFrame !== false);
21610         this.centerFrame = (this.config.centerFrame);
21611         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21612     },
21613
21614     /**
21615      * Resizes the drag frame to the dimensions of the clicked object, positions
21616      * it over the object, and finally displays it
21617      * @method showFrame
21618      * @param {int} iPageX X click position
21619      * @param {int} iPageY Y click position
21620      * @private
21621      */
21622     showFrame: function(iPageX, iPageY) {
21623         var el = this.getEl();
21624         var dragEl = this.getDragEl();
21625         var s = dragEl.style;
21626
21627         this._resizeProxy();
21628
21629         if (this.centerFrame) {
21630             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21631                            Math.round(parseInt(s.height, 10)/2) );
21632         }
21633
21634         this.setDragElPos(iPageX, iPageY);
21635
21636         Roo.fly(dragEl).show();
21637     },
21638
21639     /**
21640      * The proxy is automatically resized to the dimensions of the linked
21641      * element when a drag is initiated, unless resizeFrame is set to false
21642      * @method _resizeProxy
21643      * @private
21644      */
21645     _resizeProxy: function() {
21646         if (this.resizeFrame) {
21647             var el = this.getEl();
21648             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21649         }
21650     },
21651
21652     // overrides Roo.dd.DragDrop
21653     b4MouseDown: function(e) {
21654         var x = e.getPageX();
21655         var y = e.getPageY();
21656         this.autoOffset(x, y);
21657         this.setDragElPos(x, y);
21658     },
21659
21660     // overrides Roo.dd.DragDrop
21661     b4StartDrag: function(x, y) {
21662         // show the drag frame
21663         this.showFrame(x, y);
21664     },
21665
21666     // overrides Roo.dd.DragDrop
21667     b4EndDrag: function(e) {
21668         Roo.fly(this.getDragEl()).hide();
21669     },
21670
21671     // overrides Roo.dd.DragDrop
21672     // By default we try to move the element to the last location of the frame.
21673     // This is so that the default behavior mirrors that of Roo.dd.DD.
21674     endDrag: function(e) {
21675
21676         var lel = this.getEl();
21677         var del = this.getDragEl();
21678
21679         // Show the drag frame briefly so we can get its position
21680         del.style.visibility = "";
21681
21682         this.beforeMove();
21683         // Hide the linked element before the move to get around a Safari
21684         // rendering bug.
21685         lel.style.visibility = "hidden";
21686         Roo.dd.DDM.moveToEl(lel, del);
21687         del.style.visibility = "hidden";
21688         lel.style.visibility = "";
21689
21690         this.afterDrag();
21691     },
21692
21693     beforeMove : function(){
21694
21695     },
21696
21697     afterDrag : function(){
21698
21699     },
21700
21701     toString: function() {
21702         return ("DDProxy " + this.id);
21703     }
21704
21705 });
21706 /*
21707  * Based on:
21708  * Ext JS Library 1.1.1
21709  * Copyright(c) 2006-2007, Ext JS, LLC.
21710  *
21711  * Originally Released Under LGPL - original licence link has changed is not relivant.
21712  *
21713  * Fork - LGPL
21714  * <script type="text/javascript">
21715  */
21716
21717  /**
21718  * @class Roo.dd.DDTarget
21719  * A DragDrop implementation that does not move, but can be a drop
21720  * target.  You would get the same result by simply omitting implementation
21721  * for the event callbacks, but this way we reduce the processing cost of the
21722  * event listener and the callbacks.
21723  * @extends Roo.dd.DragDrop
21724  * @constructor
21725  * @param {String} id the id of the element that is a drop target
21726  * @param {String} sGroup the group of related DragDrop objects
21727  * @param {object} config an object containing configurable attributes
21728  *                 Valid properties for DDTarget in addition to those in
21729  *                 DragDrop:
21730  *                    none
21731  */
21732 Roo.dd.DDTarget = function(id, sGroup, config) {
21733     if (id) {
21734         this.initTarget(id, sGroup, config);
21735     }
21736     if (config && (config.listeners || config.events)) { 
21737         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21738             listeners : config.listeners || {}, 
21739             events : config.events || {} 
21740         });    
21741     }
21742 };
21743
21744 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21745 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21746     toString: function() {
21747         return ("DDTarget " + this.id);
21748     }
21749 });
21750 /*
21751  * Based on:
21752  * Ext JS Library 1.1.1
21753  * Copyright(c) 2006-2007, Ext JS, LLC.
21754  *
21755  * Originally Released Under LGPL - original licence link has changed is not relivant.
21756  *
21757  * Fork - LGPL
21758  * <script type="text/javascript">
21759  */
21760  
21761
21762 /**
21763  * @class Roo.dd.ScrollManager
21764  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21765  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21766  * @singleton
21767  */
21768 Roo.dd.ScrollManager = function(){
21769     var ddm = Roo.dd.DragDropMgr;
21770     var els = {};
21771     var dragEl = null;
21772     var proc = {};
21773     
21774     
21775     
21776     var onStop = function(e){
21777         dragEl = null;
21778         clearProc();
21779     };
21780     
21781     var triggerRefresh = function(){
21782         if(ddm.dragCurrent){
21783              ddm.refreshCache(ddm.dragCurrent.groups);
21784         }
21785     };
21786     
21787     var doScroll = function(){
21788         if(ddm.dragCurrent){
21789             var dds = Roo.dd.ScrollManager;
21790             if(!dds.animate){
21791                 if(proc.el.scroll(proc.dir, dds.increment)){
21792                     triggerRefresh();
21793                 }
21794             }else{
21795                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21796             }
21797         }
21798     };
21799     
21800     var clearProc = function(){
21801         if(proc.id){
21802             clearInterval(proc.id);
21803         }
21804         proc.id = 0;
21805         proc.el = null;
21806         proc.dir = "";
21807     };
21808     
21809     var startProc = function(el, dir){
21810          Roo.log('scroll startproc');
21811         clearProc();
21812         proc.el = el;
21813         proc.dir = dir;
21814         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21815     };
21816     
21817     var onFire = function(e, isDrop){
21818        
21819         if(isDrop || !ddm.dragCurrent){ return; }
21820         var dds = Roo.dd.ScrollManager;
21821         if(!dragEl || dragEl != ddm.dragCurrent){
21822             dragEl = ddm.dragCurrent;
21823             // refresh regions on drag start
21824             dds.refreshCache();
21825         }
21826         
21827         var xy = Roo.lib.Event.getXY(e);
21828         var pt = new Roo.lib.Point(xy[0], xy[1]);
21829         for(var id in els){
21830             var el = els[id], r = el._region;
21831             if(r && r.contains(pt) && el.isScrollable()){
21832                 if(r.bottom - pt.y <= dds.thresh){
21833                     if(proc.el != el){
21834                         startProc(el, "down");
21835                     }
21836                     return;
21837                 }else if(r.right - pt.x <= dds.thresh){
21838                     if(proc.el != el){
21839                         startProc(el, "left");
21840                     }
21841                     return;
21842                 }else if(pt.y - r.top <= dds.thresh){
21843                     if(proc.el != el){
21844                         startProc(el, "up");
21845                     }
21846                     return;
21847                 }else if(pt.x - r.left <= dds.thresh){
21848                     if(proc.el != el){
21849                         startProc(el, "right");
21850                     }
21851                     return;
21852                 }
21853             }
21854         }
21855         clearProc();
21856     };
21857     
21858     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21859     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21860     
21861     return {
21862         /**
21863          * Registers new overflow element(s) to auto scroll
21864          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21865          */
21866         register : function(el){
21867             if(el instanceof Array){
21868                 for(var i = 0, len = el.length; i < len; i++) {
21869                         this.register(el[i]);
21870                 }
21871             }else{
21872                 el = Roo.get(el);
21873                 els[el.id] = el;
21874             }
21875             Roo.dd.ScrollManager.els = els;
21876         },
21877         
21878         /**
21879          * Unregisters overflow element(s) so they are no longer scrolled
21880          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21881          */
21882         unregister : function(el){
21883             if(el instanceof Array){
21884                 for(var i = 0, len = el.length; i < len; i++) {
21885                         this.unregister(el[i]);
21886                 }
21887             }else{
21888                 el = Roo.get(el);
21889                 delete els[el.id];
21890             }
21891         },
21892         
21893         /**
21894          * The number of pixels from the edge of a container the pointer needs to be to 
21895          * trigger scrolling (defaults to 25)
21896          * @type Number
21897          */
21898         thresh : 25,
21899         
21900         /**
21901          * The number of pixels to scroll in each scroll increment (defaults to 50)
21902          * @type Number
21903          */
21904         increment : 100,
21905         
21906         /**
21907          * The frequency of scrolls in milliseconds (defaults to 500)
21908          * @type Number
21909          */
21910         frequency : 500,
21911         
21912         /**
21913          * True to animate the scroll (defaults to true)
21914          * @type Boolean
21915          */
21916         animate: true,
21917         
21918         /**
21919          * The animation duration in seconds - 
21920          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21921          * @type Number
21922          */
21923         animDuration: .4,
21924         
21925         /**
21926          * Manually trigger a cache refresh.
21927          */
21928         refreshCache : function(){
21929             for(var id in els){
21930                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21931                     els[id]._region = els[id].getRegion();
21932                 }
21933             }
21934         }
21935     };
21936 }();/*
21937  * Based on:
21938  * Ext JS Library 1.1.1
21939  * Copyright(c) 2006-2007, Ext JS, LLC.
21940  *
21941  * Originally Released Under LGPL - original licence link has changed is not relivant.
21942  *
21943  * Fork - LGPL
21944  * <script type="text/javascript">
21945  */
21946  
21947
21948 /**
21949  * @class Roo.dd.Registry
21950  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21951  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21952  * @singleton
21953  */
21954 Roo.dd.Registry = function(){
21955     var elements = {}; 
21956     var handles = {}; 
21957     var autoIdSeed = 0;
21958
21959     var getId = function(el, autogen){
21960         if(typeof el == "string"){
21961             return el;
21962         }
21963         var id = el.id;
21964         if(!id && autogen !== false){
21965             id = "roodd-" + (++autoIdSeed);
21966             el.id = id;
21967         }
21968         return id;
21969     };
21970     
21971     return {
21972     /**
21973      * Register a drag drop element
21974      * @param {String|HTMLElement} element The id or DOM node to register
21975      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21976      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21977      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21978      * populated in the data object (if applicable):
21979      * <pre>
21980 Value      Description<br />
21981 ---------  ------------------------------------------<br />
21982 handles    Array of DOM nodes that trigger dragging<br />
21983            for the element being registered<br />
21984 isHandle   True if the element passed in triggers<br />
21985            dragging itself, else false
21986 </pre>
21987      */
21988         register : function(el, data){
21989             data = data || {};
21990             if(typeof el == "string"){
21991                 el = document.getElementById(el);
21992             }
21993             data.ddel = el;
21994             elements[getId(el)] = data;
21995             if(data.isHandle !== false){
21996                 handles[data.ddel.id] = data;
21997             }
21998             if(data.handles){
21999                 var hs = data.handles;
22000                 for(var i = 0, len = hs.length; i < len; i++){
22001                         handles[getId(hs[i])] = data;
22002                 }
22003             }
22004         },
22005
22006     /**
22007      * Unregister a drag drop element
22008      * @param {String|HTMLElement}  element The id or DOM node to unregister
22009      */
22010         unregister : function(el){
22011             var id = getId(el, false);
22012             var data = elements[id];
22013             if(data){
22014                 delete elements[id];
22015                 if(data.handles){
22016                     var hs = data.handles;
22017                     for(var i = 0, len = hs.length; i < len; i++){
22018                         delete handles[getId(hs[i], false)];
22019                     }
22020                 }
22021             }
22022         },
22023
22024     /**
22025      * Returns the handle registered for a DOM Node by id
22026      * @param {String|HTMLElement} id The DOM node or id to look up
22027      * @return {Object} handle The custom handle data
22028      */
22029         getHandle : function(id){
22030             if(typeof id != "string"){ // must be element?
22031                 id = id.id;
22032             }
22033             return handles[id];
22034         },
22035
22036     /**
22037      * Returns the handle that is registered for the DOM node that is the target of the event
22038      * @param {Event} e The event
22039      * @return {Object} handle The custom handle data
22040      */
22041         getHandleFromEvent : function(e){
22042             var t = Roo.lib.Event.getTarget(e);
22043             return t ? handles[t.id] : null;
22044         },
22045
22046     /**
22047      * Returns a custom data object that is registered for a DOM node by id
22048      * @param {String|HTMLElement} id The DOM node or id to look up
22049      * @return {Object} data The custom data
22050      */
22051         getTarget : function(id){
22052             if(typeof id != "string"){ // must be element?
22053                 id = id.id;
22054             }
22055             return elements[id];
22056         },
22057
22058     /**
22059      * Returns a custom data object that is registered for the DOM node that is the target of the event
22060      * @param {Event} e The event
22061      * @return {Object} data The custom data
22062      */
22063         getTargetFromEvent : function(e){
22064             var t = Roo.lib.Event.getTarget(e);
22065             return t ? elements[t.id] || handles[t.id] : null;
22066         }
22067     };
22068 }();/*
22069  * Based on:
22070  * Ext JS Library 1.1.1
22071  * Copyright(c) 2006-2007, Ext JS, LLC.
22072  *
22073  * Originally Released Under LGPL - original licence link has changed is not relivant.
22074  *
22075  * Fork - LGPL
22076  * <script type="text/javascript">
22077  */
22078  
22079
22080 /**
22081  * @class Roo.dd.StatusProxy
22082  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22083  * default drag proxy used by all Roo.dd components.
22084  * @constructor
22085  * @param {Object} config
22086  */
22087 Roo.dd.StatusProxy = function(config){
22088     Roo.apply(this, config);
22089     this.id = this.id || Roo.id();
22090     this.el = new Roo.Layer({
22091         dh: {
22092             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22093                 {tag: "div", cls: "x-dd-drop-icon"},
22094                 {tag: "div", cls: "x-dd-drag-ghost"}
22095             ]
22096         }, 
22097         shadow: !config || config.shadow !== false
22098     });
22099     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22100     this.dropStatus = this.dropNotAllowed;
22101 };
22102
22103 Roo.dd.StatusProxy.prototype = {
22104     /**
22105      * @cfg {String} dropAllowed
22106      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22107      */
22108     dropAllowed : "x-dd-drop-ok",
22109     /**
22110      * @cfg {String} dropNotAllowed
22111      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22112      */
22113     dropNotAllowed : "x-dd-drop-nodrop",
22114
22115     /**
22116      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22117      * over the current target element.
22118      * @param {String} cssClass The css class for the new drop status indicator image
22119      */
22120     setStatus : function(cssClass){
22121         cssClass = cssClass || this.dropNotAllowed;
22122         if(this.dropStatus != cssClass){
22123             this.el.replaceClass(this.dropStatus, cssClass);
22124             this.dropStatus = cssClass;
22125         }
22126     },
22127
22128     /**
22129      * Resets the status indicator to the default dropNotAllowed value
22130      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22131      */
22132     reset : function(clearGhost){
22133         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22134         this.dropStatus = this.dropNotAllowed;
22135         if(clearGhost){
22136             this.ghost.update("");
22137         }
22138     },
22139
22140     /**
22141      * Updates the contents of the ghost element
22142      * @param {String} html The html that will replace the current innerHTML of the ghost element
22143      */
22144     update : function(html){
22145         if(typeof html == "string"){
22146             this.ghost.update(html);
22147         }else{
22148             this.ghost.update("");
22149             html.style.margin = "0";
22150             this.ghost.dom.appendChild(html);
22151         }
22152         // ensure float = none set?? cant remember why though.
22153         var el = this.ghost.dom.firstChild;
22154                 if(el){
22155                         Roo.fly(el).setStyle('float', 'none');
22156                 }
22157     },
22158     
22159     /**
22160      * Returns the underlying proxy {@link Roo.Layer}
22161      * @return {Roo.Layer} el
22162     */
22163     getEl : function(){
22164         return this.el;
22165     },
22166
22167     /**
22168      * Returns the ghost element
22169      * @return {Roo.Element} el
22170      */
22171     getGhost : function(){
22172         return this.ghost;
22173     },
22174
22175     /**
22176      * Hides the proxy
22177      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22178      */
22179     hide : function(clear){
22180         this.el.hide();
22181         if(clear){
22182             this.reset(true);
22183         }
22184     },
22185
22186     /**
22187      * Stops the repair animation if it's currently running
22188      */
22189     stop : function(){
22190         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22191             this.anim.stop();
22192         }
22193     },
22194
22195     /**
22196      * Displays this proxy
22197      */
22198     show : function(){
22199         this.el.show();
22200     },
22201
22202     /**
22203      * Force the Layer to sync its shadow and shim positions to the element
22204      */
22205     sync : function(){
22206         this.el.sync();
22207     },
22208
22209     /**
22210      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22211      * invalid drop operation by the item being dragged.
22212      * @param {Array} xy The XY position of the element ([x, y])
22213      * @param {Function} callback The function to call after the repair is complete
22214      * @param {Object} scope The scope in which to execute the callback
22215      */
22216     repair : function(xy, callback, scope){
22217         this.callback = callback;
22218         this.scope = scope;
22219         if(xy && this.animRepair !== false){
22220             this.el.addClass("x-dd-drag-repair");
22221             this.el.hideUnders(true);
22222             this.anim = this.el.shift({
22223                 duration: this.repairDuration || .5,
22224                 easing: 'easeOut',
22225                 xy: xy,
22226                 stopFx: true,
22227                 callback: this.afterRepair,
22228                 scope: this
22229             });
22230         }else{
22231             this.afterRepair();
22232         }
22233     },
22234
22235     // private
22236     afterRepair : function(){
22237         this.hide(true);
22238         if(typeof this.callback == "function"){
22239             this.callback.call(this.scope || this);
22240         }
22241         this.callback = null;
22242         this.scope = null;
22243     }
22244 };/*
22245  * Based on:
22246  * Ext JS Library 1.1.1
22247  * Copyright(c) 2006-2007, Ext JS, LLC.
22248  *
22249  * Originally Released Under LGPL - original licence link has changed is not relivant.
22250  *
22251  * Fork - LGPL
22252  * <script type="text/javascript">
22253  */
22254
22255 /**
22256  * @class Roo.dd.DragSource
22257  * @extends Roo.dd.DDProxy
22258  * A simple class that provides the basic implementation needed to make any element draggable.
22259  * @constructor
22260  * @param {String/HTMLElement/Element} el The container element
22261  * @param {Object} config
22262  */
22263 Roo.dd.DragSource = function(el, config){
22264     this.el = Roo.get(el);
22265     this.dragData = {};
22266     
22267     Roo.apply(this, config);
22268     
22269     if(!this.proxy){
22270         this.proxy = new Roo.dd.StatusProxy();
22271     }
22272
22273     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22274           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22275     
22276     this.dragging = false;
22277 };
22278
22279 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22280     /**
22281      * @cfg {String} dropAllowed
22282      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22283      */
22284     dropAllowed : "x-dd-drop-ok",
22285     /**
22286      * @cfg {String} dropNotAllowed
22287      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22288      */
22289     dropNotAllowed : "x-dd-drop-nodrop",
22290
22291     /**
22292      * Returns the data object associated with this drag source
22293      * @return {Object} data An object containing arbitrary data
22294      */
22295     getDragData : function(e){
22296         return this.dragData;
22297     },
22298
22299     // private
22300     onDragEnter : function(e, id){
22301         var target = Roo.dd.DragDropMgr.getDDById(id);
22302         this.cachedTarget = target;
22303         if(this.beforeDragEnter(target, e, id) !== false){
22304             if(target.isNotifyTarget){
22305                 var status = target.notifyEnter(this, e, this.dragData);
22306                 this.proxy.setStatus(status);
22307             }else{
22308                 this.proxy.setStatus(this.dropAllowed);
22309             }
22310             
22311             if(this.afterDragEnter){
22312                 /**
22313                  * An empty function by default, but provided so that you can perform a custom action
22314                  * when the dragged item enters the drop target by providing an implementation.
22315                  * @param {Roo.dd.DragDrop} target The drop target
22316                  * @param {Event} e The event object
22317                  * @param {String} id The id of the dragged element
22318                  * @method afterDragEnter
22319                  */
22320                 this.afterDragEnter(target, e, id);
22321             }
22322         }
22323     },
22324
22325     /**
22326      * An empty function by default, but provided so that you can perform a custom action
22327      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22328      * @param {Roo.dd.DragDrop} target The drop target
22329      * @param {Event} e The event object
22330      * @param {String} id The id of the dragged element
22331      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22332      */
22333     beforeDragEnter : function(target, e, id){
22334         return true;
22335     },
22336
22337     // private
22338     alignElWithMouse: function() {
22339         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22340         this.proxy.sync();
22341     },
22342
22343     // private
22344     onDragOver : function(e, id){
22345         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22346         if(this.beforeDragOver(target, e, id) !== false){
22347             if(target.isNotifyTarget){
22348                 var status = target.notifyOver(this, e, this.dragData);
22349                 this.proxy.setStatus(status);
22350             }
22351
22352             if(this.afterDragOver){
22353                 /**
22354                  * An empty function by default, but provided so that you can perform a custom action
22355                  * while the dragged item is over the drop target by providing an implementation.
22356                  * @param {Roo.dd.DragDrop} target The drop target
22357                  * @param {Event} e The event object
22358                  * @param {String} id The id of the dragged element
22359                  * @method afterDragOver
22360                  */
22361                 this.afterDragOver(target, e, id);
22362             }
22363         }
22364     },
22365
22366     /**
22367      * An empty function by default, but provided so that you can perform a custom action
22368      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22369      * @param {Roo.dd.DragDrop} target The drop target
22370      * @param {Event} e The event object
22371      * @param {String} id The id of the dragged element
22372      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22373      */
22374     beforeDragOver : function(target, e, id){
22375         return true;
22376     },
22377
22378     // private
22379     onDragOut : function(e, id){
22380         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22381         if(this.beforeDragOut(target, e, id) !== false){
22382             if(target.isNotifyTarget){
22383                 target.notifyOut(this, e, this.dragData);
22384             }
22385             this.proxy.reset();
22386             if(this.afterDragOut){
22387                 /**
22388                  * An empty function by default, but provided so that you can perform a custom action
22389                  * after the dragged item is dragged out of the target without dropping.
22390                  * @param {Roo.dd.DragDrop} target The drop target
22391                  * @param {Event} e The event object
22392                  * @param {String} id The id of the dragged element
22393                  * @method afterDragOut
22394                  */
22395                 this.afterDragOut(target, e, id);
22396             }
22397         }
22398         this.cachedTarget = null;
22399     },
22400
22401     /**
22402      * An empty function by default, but provided so that you can perform a custom action before the dragged
22403      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22404      * @param {Roo.dd.DragDrop} target The drop target
22405      * @param {Event} e The event object
22406      * @param {String} id The id of the dragged element
22407      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22408      */
22409     beforeDragOut : function(target, e, id){
22410         return true;
22411     },
22412     
22413     // private
22414     onDragDrop : function(e, id){
22415         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22416         if(this.beforeDragDrop(target, e, id) !== false){
22417             if(target.isNotifyTarget){
22418                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22419                     this.onValidDrop(target, e, id);
22420                 }else{
22421                     this.onInvalidDrop(target, e, id);
22422                 }
22423             }else{
22424                 this.onValidDrop(target, e, id);
22425             }
22426             
22427             if(this.afterDragDrop){
22428                 /**
22429                  * An empty function by default, but provided so that you can perform a custom action
22430                  * after a valid drag drop has occurred by providing an implementation.
22431                  * @param {Roo.dd.DragDrop} target The drop target
22432                  * @param {Event} e The event object
22433                  * @param {String} id The id of the dropped element
22434                  * @method afterDragDrop
22435                  */
22436                 this.afterDragDrop(target, e, id);
22437             }
22438         }
22439         delete this.cachedTarget;
22440     },
22441
22442     /**
22443      * An empty function by default, but provided so that you can perform a custom action before the dragged
22444      * item is dropped onto the target and optionally cancel the onDragDrop.
22445      * @param {Roo.dd.DragDrop} target The drop target
22446      * @param {Event} e The event object
22447      * @param {String} id The id of the dragged element
22448      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22449      */
22450     beforeDragDrop : function(target, e, id){
22451         return true;
22452     },
22453
22454     // private
22455     onValidDrop : function(target, e, id){
22456         this.hideProxy();
22457         if(this.afterValidDrop){
22458             /**
22459              * An empty function by default, but provided so that you can perform a custom action
22460              * after a valid drop has occurred by providing an implementation.
22461              * @param {Object} target The target DD 
22462              * @param {Event} e The event object
22463              * @param {String} id The id of the dropped element
22464              * @method afterInvalidDrop
22465              */
22466             this.afterValidDrop(target, e, id);
22467         }
22468     },
22469
22470     // private
22471     getRepairXY : function(e, data){
22472         return this.el.getXY();  
22473     },
22474
22475     // private
22476     onInvalidDrop : function(target, e, id){
22477         this.beforeInvalidDrop(target, e, id);
22478         if(this.cachedTarget){
22479             if(this.cachedTarget.isNotifyTarget){
22480                 this.cachedTarget.notifyOut(this, e, this.dragData);
22481             }
22482             this.cacheTarget = null;
22483         }
22484         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22485
22486         if(this.afterInvalidDrop){
22487             /**
22488              * An empty function by default, but provided so that you can perform a custom action
22489              * after an invalid drop has occurred by providing an implementation.
22490              * @param {Event} e The event object
22491              * @param {String} id The id of the dropped element
22492              * @method afterInvalidDrop
22493              */
22494             this.afterInvalidDrop(e, id);
22495         }
22496     },
22497
22498     // private
22499     afterRepair : function(){
22500         if(Roo.enableFx){
22501             this.el.highlight(this.hlColor || "c3daf9");
22502         }
22503         this.dragging = false;
22504     },
22505
22506     /**
22507      * An empty function by default, but provided so that you can perform a custom action after an invalid
22508      * drop has occurred.
22509      * @param {Roo.dd.DragDrop} target The drop target
22510      * @param {Event} e The event object
22511      * @param {String} id The id of the dragged element
22512      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22513      */
22514     beforeInvalidDrop : function(target, e, id){
22515         return true;
22516     },
22517
22518     // private
22519     handleMouseDown : function(e){
22520         if(this.dragging) {
22521             return;
22522         }
22523         var data = this.getDragData(e);
22524         if(data && this.onBeforeDrag(data, e) !== false){
22525             this.dragData = data;
22526             this.proxy.stop();
22527             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22528         } 
22529     },
22530
22531     /**
22532      * An empty function by default, but provided so that you can perform a custom action before the initial
22533      * drag event begins and optionally cancel it.
22534      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22535      * @param {Event} e The event object
22536      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22537      */
22538     onBeforeDrag : function(data, e){
22539         return true;
22540     },
22541
22542     /**
22543      * An empty function by default, but provided so that you can perform a custom action once the initial
22544      * drag event has begun.  The drag cannot be canceled from this function.
22545      * @param {Number} x The x position of the click on the dragged object
22546      * @param {Number} y The y position of the click on the dragged object
22547      */
22548     onStartDrag : Roo.emptyFn,
22549
22550     // private - YUI override
22551     startDrag : function(x, y){
22552         this.proxy.reset();
22553         this.dragging = true;
22554         this.proxy.update("");
22555         this.onInitDrag(x, y);
22556         this.proxy.show();
22557     },
22558
22559     // private
22560     onInitDrag : function(x, y){
22561         var clone = this.el.dom.cloneNode(true);
22562         clone.id = Roo.id(); // prevent duplicate ids
22563         this.proxy.update(clone);
22564         this.onStartDrag(x, y);
22565         return true;
22566     },
22567
22568     /**
22569      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22570      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22571      */
22572     getProxy : function(){
22573         return this.proxy;  
22574     },
22575
22576     /**
22577      * Hides the drag source's {@link Roo.dd.StatusProxy}
22578      */
22579     hideProxy : function(){
22580         this.proxy.hide();  
22581         this.proxy.reset(true);
22582         this.dragging = false;
22583     },
22584
22585     // private
22586     triggerCacheRefresh : function(){
22587         Roo.dd.DDM.refreshCache(this.groups);
22588     },
22589
22590     // private - override to prevent hiding
22591     b4EndDrag: function(e) {
22592     },
22593
22594     // private - override to prevent moving
22595     endDrag : function(e){
22596         this.onEndDrag(this.dragData, e);
22597     },
22598
22599     // private
22600     onEndDrag : function(data, e){
22601     },
22602     
22603     // private - pin to cursor
22604     autoOffset : function(x, y) {
22605         this.setDelta(-12, -20);
22606     }    
22607 });/*
22608  * Based on:
22609  * Ext JS Library 1.1.1
22610  * Copyright(c) 2006-2007, Ext JS, LLC.
22611  *
22612  * Originally Released Under LGPL - original licence link has changed is not relivant.
22613  *
22614  * Fork - LGPL
22615  * <script type="text/javascript">
22616  */
22617
22618
22619 /**
22620  * @class Roo.dd.DropTarget
22621  * @extends Roo.dd.DDTarget
22622  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22623  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22624  * @constructor
22625  * @param {String/HTMLElement/Element} el The container element
22626  * @param {Object} config
22627  */
22628 Roo.dd.DropTarget = function(el, config){
22629     this.el = Roo.get(el);
22630     
22631     var listeners = false; ;
22632     if (config && config.listeners) {
22633         listeners= config.listeners;
22634         delete config.listeners;
22635     }
22636     Roo.apply(this, config);
22637     
22638     if(this.containerScroll){
22639         Roo.dd.ScrollManager.register(this.el);
22640     }
22641     this.addEvents( {
22642          /**
22643          * @scope Roo.dd.DropTarget
22644          */
22645          
22646          /**
22647          * @event enter
22648          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22649          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22650          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22651          * 
22652          * IMPORTANT : it should set  this.valid to true|false
22653          * 
22654          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22655          * @param {Event} e The event
22656          * @param {Object} data An object containing arbitrary data supplied by the drag source
22657          */
22658         "enter" : true,
22659         
22660          /**
22661          * @event over
22662          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22663          * This method will be called on every mouse movement while the drag source is over the drop target.
22664          * This default implementation simply returns the dropAllowed config value.
22665          * 
22666          * IMPORTANT : it should set  this.valid to true|false
22667          * 
22668          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22669          * @param {Event} e The event
22670          * @param {Object} data An object containing arbitrary data supplied by the drag source
22671          
22672          */
22673         "over" : true,
22674         /**
22675          * @event out
22676          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22677          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22678          * overClass (if any) from the drop element.
22679          * 
22680          * 
22681          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22682          * @param {Event} e The event
22683          * @param {Object} data An object containing arbitrary data supplied by the drag source
22684          */
22685          "out" : true,
22686          
22687         /**
22688          * @event drop
22689          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22690          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22691          * implementation that does something to process the drop event and returns true so that the drag source's
22692          * repair action does not run.
22693          * 
22694          * IMPORTANT : it should set this.success
22695          * 
22696          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22697          * @param {Event} e The event
22698          * @param {Object} data An object containing arbitrary data supplied by the drag source
22699         */
22700          "drop" : true
22701     });
22702             
22703      
22704     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22705         this.el.dom, 
22706         this.ddGroup || this.group,
22707         {
22708             isTarget: true,
22709             listeners : listeners || {} 
22710            
22711         
22712         }
22713     );
22714
22715 };
22716
22717 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22718     /**
22719      * @cfg {String} overClass
22720      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22721      */
22722      /**
22723      * @cfg {String} ddGroup
22724      * The drag drop group to handle drop events for
22725      */
22726      
22727     /**
22728      * @cfg {String} dropAllowed
22729      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22730      */
22731     dropAllowed : "x-dd-drop-ok",
22732     /**
22733      * @cfg {String} dropNotAllowed
22734      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22735      */
22736     dropNotAllowed : "x-dd-drop-nodrop",
22737     /**
22738      * @cfg {boolean} success
22739      * set this after drop listener.. 
22740      */
22741     success : false,
22742     /**
22743      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22744      * if the drop point is valid for over/enter..
22745      */
22746     valid : false,
22747     // private
22748     isTarget : true,
22749
22750     // private
22751     isNotifyTarget : true,
22752     
22753     /**
22754      * @hide
22755      */
22756     notifyEnter : function(dd, e, data)
22757     {
22758         this.valid = true;
22759         this.fireEvent('enter', dd, e, data);
22760         if(this.overClass){
22761             this.el.addClass(this.overClass);
22762         }
22763         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22764             this.valid ? this.dropAllowed : this.dropNotAllowed
22765         );
22766     },
22767
22768     /**
22769      * @hide
22770      */
22771     notifyOver : function(dd, e, data)
22772     {
22773         this.valid = true;
22774         this.fireEvent('over', dd, e, data);
22775         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22776             this.valid ? this.dropAllowed : this.dropNotAllowed
22777         );
22778     },
22779
22780     /**
22781      * @hide
22782      */
22783     notifyOut : function(dd, e, data)
22784     {
22785         this.fireEvent('out', dd, e, data);
22786         if(this.overClass){
22787             this.el.removeClass(this.overClass);
22788         }
22789     },
22790
22791     /**
22792      * @hide
22793      */
22794     notifyDrop : function(dd, e, data)
22795     {
22796         this.success = false;
22797         this.fireEvent('drop', dd, e, data);
22798         return this.success;
22799     }
22800 });/*
22801  * Based on:
22802  * Ext JS Library 1.1.1
22803  * Copyright(c) 2006-2007, Ext JS, LLC.
22804  *
22805  * Originally Released Under LGPL - original licence link has changed is not relivant.
22806  *
22807  * Fork - LGPL
22808  * <script type="text/javascript">
22809  */
22810
22811
22812 /**
22813  * @class Roo.dd.DragZone
22814  * @extends Roo.dd.DragSource
22815  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22816  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22817  * @constructor
22818  * @param {String/HTMLElement/Element} el The container element
22819  * @param {Object} config
22820  */
22821 Roo.dd.DragZone = function(el, config){
22822     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22823     if(this.containerScroll){
22824         Roo.dd.ScrollManager.register(this.el);
22825     }
22826 };
22827
22828 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22829     /**
22830      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22831      * for auto scrolling during drag operations.
22832      */
22833     /**
22834      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22835      * method after a failed drop (defaults to "c3daf9" - light blue)
22836      */
22837
22838     /**
22839      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22840      * for a valid target to drag based on the mouse down. Override this method
22841      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22842      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22843      * @param {EventObject} e The mouse down event
22844      * @return {Object} The dragData
22845      */
22846     getDragData : function(e){
22847         return Roo.dd.Registry.getHandleFromEvent(e);
22848     },
22849     
22850     /**
22851      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22852      * this.dragData.ddel
22853      * @param {Number} x The x position of the click on the dragged object
22854      * @param {Number} y The y position of the click on the dragged object
22855      * @return {Boolean} true to continue the drag, false to cancel
22856      */
22857     onInitDrag : function(x, y){
22858         this.proxy.update(this.dragData.ddel.cloneNode(true));
22859         this.onStartDrag(x, y);
22860         return true;
22861     },
22862     
22863     /**
22864      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22865      */
22866     afterRepair : function(){
22867         if(Roo.enableFx){
22868             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22869         }
22870         this.dragging = false;
22871     },
22872
22873     /**
22874      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22875      * the XY of this.dragData.ddel
22876      * @param {EventObject} e The mouse up event
22877      * @return {Array} The xy location (e.g. [100, 200])
22878      */
22879     getRepairXY : function(e){
22880         return Roo.Element.fly(this.dragData.ddel).getXY();  
22881     }
22882 });/*
22883  * Based on:
22884  * Ext JS Library 1.1.1
22885  * Copyright(c) 2006-2007, Ext JS, LLC.
22886  *
22887  * Originally Released Under LGPL - original licence link has changed is not relivant.
22888  *
22889  * Fork - LGPL
22890  * <script type="text/javascript">
22891  */
22892 /**
22893  * @class Roo.dd.DropZone
22894  * @extends Roo.dd.DropTarget
22895  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22896  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22897  * @constructor
22898  * @param {String/HTMLElement/Element} el The container element
22899  * @param {Object} config
22900  */
22901 Roo.dd.DropZone = function(el, config){
22902     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22903 };
22904
22905 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22906     /**
22907      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22908      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22909      * provide your own custom lookup.
22910      * @param {Event} e The event
22911      * @return {Object} data The custom data
22912      */
22913     getTargetFromEvent : function(e){
22914         return Roo.dd.Registry.getTargetFromEvent(e);
22915     },
22916
22917     /**
22918      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22919      * that it has registered.  This method has no default implementation and should be overridden to provide
22920      * node-specific processing if necessary.
22921      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22922      * {@link #getTargetFromEvent} for this node)
22923      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22924      * @param {Event} e The event
22925      * @param {Object} data An object containing arbitrary data supplied by the drag source
22926      */
22927     onNodeEnter : function(n, dd, e, data){
22928         
22929     },
22930
22931     /**
22932      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22933      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22934      * overridden to provide the proper feedback.
22935      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22936      * {@link #getTargetFromEvent} for this node)
22937      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22938      * @param {Event} e The event
22939      * @param {Object} data An object containing arbitrary data supplied by the drag source
22940      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22941      * underlying {@link Roo.dd.StatusProxy} can be updated
22942      */
22943     onNodeOver : function(n, dd, e, data){
22944         return this.dropAllowed;
22945     },
22946
22947     /**
22948      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22949      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22950      * node-specific processing if necessary.
22951      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22952      * {@link #getTargetFromEvent} for this node)
22953      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22954      * @param {Event} e The event
22955      * @param {Object} data An object containing arbitrary data supplied by the drag source
22956      */
22957     onNodeOut : function(n, dd, e, data){
22958         
22959     },
22960
22961     /**
22962      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22963      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22964      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22965      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22966      * {@link #getTargetFromEvent} for this node)
22967      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22968      * @param {Event} e The event
22969      * @param {Object} data An object containing arbitrary data supplied by the drag source
22970      * @return {Boolean} True if the drop was valid, else false
22971      */
22972     onNodeDrop : function(n, dd, e, data){
22973         return false;
22974     },
22975
22976     /**
22977      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22978      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22979      * it should be overridden to provide the proper feedback if necessary.
22980      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22981      * @param {Event} e The event
22982      * @param {Object} data An object containing arbitrary data supplied by the drag source
22983      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22984      * underlying {@link Roo.dd.StatusProxy} can be updated
22985      */
22986     onContainerOver : function(dd, e, data){
22987         return this.dropNotAllowed;
22988     },
22989
22990     /**
22991      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22992      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22993      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22994      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22995      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22996      * @param {Event} e The event
22997      * @param {Object} data An object containing arbitrary data supplied by the drag source
22998      * @return {Boolean} True if the drop was valid, else false
22999      */
23000     onContainerDrop : function(dd, e, data){
23001         return false;
23002     },
23003
23004     /**
23005      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23006      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23007      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23008      * you should override this method and provide a custom implementation.
23009      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23010      * @param {Event} e The event
23011      * @param {Object} data An object containing arbitrary data supplied by the drag source
23012      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23013      * underlying {@link Roo.dd.StatusProxy} can be updated
23014      */
23015     notifyEnter : function(dd, e, data){
23016         return this.dropNotAllowed;
23017     },
23018
23019     /**
23020      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23021      * This method will be called on every mouse movement while the drag source is over the drop zone.
23022      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23023      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23024      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23025      * registered node, it will call {@link #onContainerOver}.
23026      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23027      * @param {Event} e The event
23028      * @param {Object} data An object containing arbitrary data supplied by the drag source
23029      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23030      * underlying {@link Roo.dd.StatusProxy} can be updated
23031      */
23032     notifyOver : function(dd, e, data){
23033         var n = this.getTargetFromEvent(e);
23034         if(!n){ // not over valid drop target
23035             if(this.lastOverNode){
23036                 this.onNodeOut(this.lastOverNode, dd, e, data);
23037                 this.lastOverNode = null;
23038             }
23039             return this.onContainerOver(dd, e, data);
23040         }
23041         if(this.lastOverNode != n){
23042             if(this.lastOverNode){
23043                 this.onNodeOut(this.lastOverNode, dd, e, data);
23044             }
23045             this.onNodeEnter(n, dd, e, data);
23046             this.lastOverNode = n;
23047         }
23048         return this.onNodeOver(n, dd, e, data);
23049     },
23050
23051     /**
23052      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23053      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23054      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23055      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23056      * @param {Event} e The event
23057      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23058      */
23059     notifyOut : function(dd, e, data){
23060         if(this.lastOverNode){
23061             this.onNodeOut(this.lastOverNode, dd, e, data);
23062             this.lastOverNode = null;
23063         }
23064     },
23065
23066     /**
23067      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23068      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23069      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23070      * otherwise it will call {@link #onContainerDrop}.
23071      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23072      * @param {Event} e The event
23073      * @param {Object} data An object containing arbitrary data supplied by the drag source
23074      * @return {Boolean} True if the drop was valid, else false
23075      */
23076     notifyDrop : function(dd, e, data){
23077         if(this.lastOverNode){
23078             this.onNodeOut(this.lastOverNode, dd, e, data);
23079             this.lastOverNode = null;
23080         }
23081         var n = this.getTargetFromEvent(e);
23082         return n ?
23083             this.onNodeDrop(n, dd, e, data) :
23084             this.onContainerDrop(dd, e, data);
23085     },
23086
23087     // private
23088     triggerCacheRefresh : function(){
23089         Roo.dd.DDM.refreshCache(this.groups);
23090     }  
23091 });/*
23092  * Based on:
23093  * Ext JS Library 1.1.1
23094  * Copyright(c) 2006-2007, Ext JS, LLC.
23095  *
23096  * Originally Released Under LGPL - original licence link has changed is not relivant.
23097  *
23098  * Fork - LGPL
23099  * <script type="text/javascript">
23100  */
23101
23102
23103 /**
23104  * @class Roo.data.SortTypes
23105  * @singleton
23106  * Defines the default sorting (casting?) comparison functions used when sorting data.
23107  */
23108 Roo.data.SortTypes = {
23109     /**
23110      * Default sort that does nothing
23111      * @param {Mixed} s The value being converted
23112      * @return {Mixed} The comparison value
23113      */
23114     none : function(s){
23115         return s;
23116     },
23117     
23118     /**
23119      * The regular expression used to strip tags
23120      * @type {RegExp}
23121      * @property
23122      */
23123     stripTagsRE : /<\/?[^>]+>/gi,
23124     
23125     /**
23126      * Strips all HTML tags to sort on text only
23127      * @param {Mixed} s The value being converted
23128      * @return {String} The comparison value
23129      */
23130     asText : function(s){
23131         return String(s).replace(this.stripTagsRE, "");
23132     },
23133     
23134     /**
23135      * Strips all HTML tags to sort on text only - Case insensitive
23136      * @param {Mixed} s The value being converted
23137      * @return {String} The comparison value
23138      */
23139     asUCText : function(s){
23140         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23141     },
23142     
23143     /**
23144      * Case insensitive string
23145      * @param {Mixed} s The value being converted
23146      * @return {String} The comparison value
23147      */
23148     asUCString : function(s) {
23149         return String(s).toUpperCase();
23150     },
23151     
23152     /**
23153      * Date sorting
23154      * @param {Mixed} s The value being converted
23155      * @return {Number} The comparison value
23156      */
23157     asDate : function(s) {
23158         if(!s){
23159             return 0;
23160         }
23161         if(s instanceof Date){
23162             return s.getTime();
23163         }
23164         return Date.parse(String(s));
23165     },
23166     
23167     /**
23168      * Float sorting
23169      * @param {Mixed} s The value being converted
23170      * @return {Float} The comparison value
23171      */
23172     asFloat : function(s) {
23173         var val = parseFloat(String(s).replace(/,/g, ""));
23174         if(isNaN(val)) {
23175             val = 0;
23176         }
23177         return val;
23178     },
23179     
23180     /**
23181      * Integer sorting
23182      * @param {Mixed} s The value being converted
23183      * @return {Number} The comparison value
23184      */
23185     asInt : function(s) {
23186         var val = parseInt(String(s).replace(/,/g, ""));
23187         if(isNaN(val)) {
23188             val = 0;
23189         }
23190         return val;
23191     }
23192 };/*
23193  * Based on:
23194  * Ext JS Library 1.1.1
23195  * Copyright(c) 2006-2007, Ext JS, LLC.
23196  *
23197  * Originally Released Under LGPL - original licence link has changed is not relivant.
23198  *
23199  * Fork - LGPL
23200  * <script type="text/javascript">
23201  */
23202
23203 /**
23204 * @class Roo.data.Record
23205  * Instances of this class encapsulate both record <em>definition</em> information, and record
23206  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23207  * to access Records cached in an {@link Roo.data.Store} object.<br>
23208  * <p>
23209  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23210  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23211  * objects.<br>
23212  * <p>
23213  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23214  * @constructor
23215  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23216  * {@link #create}. The parameters are the same.
23217  * @param {Array} data An associative Array of data values keyed by the field name.
23218  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23219  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23220  * not specified an integer id is generated.
23221  */
23222 Roo.data.Record = function(data, id){
23223     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23224     this.data = data;
23225 };
23226
23227 /**
23228  * Generate a constructor for a specific record layout.
23229  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23230  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23231  * Each field definition object may contain the following properties: <ul>
23232  * <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,
23233  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23234  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23235  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23236  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23237  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23238  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23239  * this may be omitted.</p></li>
23240  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23241  * <ul><li>auto (Default, implies no conversion)</li>
23242  * <li>string</li>
23243  * <li>int</li>
23244  * <li>float</li>
23245  * <li>boolean</li>
23246  * <li>date</li></ul></p></li>
23247  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23248  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23249  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23250  * by the Reader into an object that will be stored in the Record. It is passed the
23251  * following parameters:<ul>
23252  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23253  * </ul></p></li>
23254  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23255  * </ul>
23256  * <br>usage:<br><pre><code>
23257 var TopicRecord = Roo.data.Record.create(
23258     {name: 'title', mapping: 'topic_title'},
23259     {name: 'author', mapping: 'username'},
23260     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23261     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23262     {name: 'lastPoster', mapping: 'user2'},
23263     {name: 'excerpt', mapping: 'post_text'}
23264 );
23265
23266 var myNewRecord = new TopicRecord({
23267     title: 'Do my job please',
23268     author: 'noobie',
23269     totalPosts: 1,
23270     lastPost: new Date(),
23271     lastPoster: 'Animal',
23272     excerpt: 'No way dude!'
23273 });
23274 myStore.add(myNewRecord);
23275 </code></pre>
23276  * @method create
23277  * @static
23278  */
23279 Roo.data.Record.create = function(o){
23280     var f = function(){
23281         f.superclass.constructor.apply(this, arguments);
23282     };
23283     Roo.extend(f, Roo.data.Record);
23284     var p = f.prototype;
23285     p.fields = new Roo.util.MixedCollection(false, function(field){
23286         return field.name;
23287     });
23288     for(var i = 0, len = o.length; i < len; i++){
23289         p.fields.add(new Roo.data.Field(o[i]));
23290     }
23291     f.getField = function(name){
23292         return p.fields.get(name);  
23293     };
23294     return f;
23295 };
23296
23297 Roo.data.Record.AUTO_ID = 1000;
23298 Roo.data.Record.EDIT = 'edit';
23299 Roo.data.Record.REJECT = 'reject';
23300 Roo.data.Record.COMMIT = 'commit';
23301
23302 Roo.data.Record.prototype = {
23303     /**
23304      * Readonly flag - true if this record has been modified.
23305      * @type Boolean
23306      */
23307     dirty : false,
23308     editing : false,
23309     error: null,
23310     modified: null,
23311
23312     // private
23313     join : function(store){
23314         this.store = store;
23315     },
23316
23317     /**
23318      * Set the named field to the specified value.
23319      * @param {String} name The name of the field to set.
23320      * @param {Object} value The value to set the field to.
23321      */
23322     set : function(name, value){
23323         if(this.data[name] == value){
23324             return;
23325         }
23326         this.dirty = true;
23327         if(!this.modified){
23328             this.modified = {};
23329         }
23330         if(typeof this.modified[name] == 'undefined'){
23331             this.modified[name] = this.data[name];
23332         }
23333         this.data[name] = value;
23334         if(!this.editing && this.store){
23335             this.store.afterEdit(this);
23336         }       
23337     },
23338
23339     /**
23340      * Get the value of the named field.
23341      * @param {String} name The name of the field to get the value of.
23342      * @return {Object} The value of the field.
23343      */
23344     get : function(name){
23345         return this.data[name]; 
23346     },
23347
23348     // private
23349     beginEdit : function(){
23350         this.editing = true;
23351         this.modified = {}; 
23352     },
23353
23354     // private
23355     cancelEdit : function(){
23356         this.editing = false;
23357         delete this.modified;
23358     },
23359
23360     // private
23361     endEdit : function(){
23362         this.editing = false;
23363         if(this.dirty && this.store){
23364             this.store.afterEdit(this);
23365         }
23366     },
23367
23368     /**
23369      * Usually called by the {@link Roo.data.Store} which owns the Record.
23370      * Rejects all changes made to the Record since either creation, or the last commit operation.
23371      * Modified fields are reverted to their original values.
23372      * <p>
23373      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23374      * of reject operations.
23375      */
23376     reject : function(){
23377         var m = this.modified;
23378         for(var n in m){
23379             if(typeof m[n] != "function"){
23380                 this.data[n] = m[n];
23381             }
23382         }
23383         this.dirty = false;
23384         delete this.modified;
23385         this.editing = false;
23386         if(this.store){
23387             this.store.afterReject(this);
23388         }
23389     },
23390
23391     /**
23392      * Usually called by the {@link Roo.data.Store} which owns the Record.
23393      * Commits all changes made to the Record since either creation, or the last commit operation.
23394      * <p>
23395      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23396      * of commit operations.
23397      */
23398     commit : function(){
23399         this.dirty = false;
23400         delete this.modified;
23401         this.editing = false;
23402         if(this.store){
23403             this.store.afterCommit(this);
23404         }
23405     },
23406
23407     // private
23408     hasError : function(){
23409         return this.error != null;
23410     },
23411
23412     // private
23413     clearError : function(){
23414         this.error = null;
23415     },
23416
23417     /**
23418      * Creates a copy of this record.
23419      * @param {String} id (optional) A new record id if you don't want to use this record's id
23420      * @return {Record}
23421      */
23422     copy : function(newId) {
23423         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23424     }
23425 };/*
23426  * Based on:
23427  * Ext JS Library 1.1.1
23428  * Copyright(c) 2006-2007, Ext JS, LLC.
23429  *
23430  * Originally Released Under LGPL - original licence link has changed is not relivant.
23431  *
23432  * Fork - LGPL
23433  * <script type="text/javascript">
23434  */
23435
23436
23437
23438 /**
23439  * @class Roo.data.Store
23440  * @extends Roo.util.Observable
23441  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23442  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23443  * <p>
23444  * 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
23445  * has no knowledge of the format of the data returned by the Proxy.<br>
23446  * <p>
23447  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23448  * instances from the data object. These records are cached and made available through accessor functions.
23449  * @constructor
23450  * Creates a new Store.
23451  * @param {Object} config A config object containing the objects needed for the Store to access data,
23452  * and read the data into Records.
23453  */
23454 Roo.data.Store = function(config){
23455     this.data = new Roo.util.MixedCollection(false);
23456     this.data.getKey = function(o){
23457         return o.id;
23458     };
23459     this.baseParams = {};
23460     // private
23461     this.paramNames = {
23462         "start" : "start",
23463         "limit" : "limit",
23464         "sort" : "sort",
23465         "dir" : "dir",
23466         "multisort" : "_multisort"
23467     };
23468
23469     if(config && config.data){
23470         this.inlineData = config.data;
23471         delete config.data;
23472     }
23473
23474     Roo.apply(this, config);
23475     
23476     if(this.reader){ // reader passed
23477         this.reader = Roo.factory(this.reader, Roo.data);
23478         this.reader.xmodule = this.xmodule || false;
23479         if(!this.recordType){
23480             this.recordType = this.reader.recordType;
23481         }
23482         if(this.reader.onMetaChange){
23483             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23484         }
23485     }
23486
23487     if(this.recordType){
23488         this.fields = this.recordType.prototype.fields;
23489     }
23490     this.modified = [];
23491
23492     this.addEvents({
23493         /**
23494          * @event datachanged
23495          * Fires when the data cache has changed, and a widget which is using this Store
23496          * as a Record cache should refresh its view.
23497          * @param {Store} this
23498          */
23499         datachanged : true,
23500         /**
23501          * @event metachange
23502          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23503          * @param {Store} this
23504          * @param {Object} meta The JSON metadata
23505          */
23506         metachange : true,
23507         /**
23508          * @event add
23509          * Fires when Records have been added to the Store
23510          * @param {Store} this
23511          * @param {Roo.data.Record[]} records The array of Records added
23512          * @param {Number} index The index at which the record(s) were added
23513          */
23514         add : true,
23515         /**
23516          * @event remove
23517          * Fires when a Record has been removed from the Store
23518          * @param {Store} this
23519          * @param {Roo.data.Record} record The Record that was removed
23520          * @param {Number} index The index at which the record was removed
23521          */
23522         remove : true,
23523         /**
23524          * @event update
23525          * Fires when a Record has been updated
23526          * @param {Store} this
23527          * @param {Roo.data.Record} record The Record that was updated
23528          * @param {String} operation The update operation being performed.  Value may be one of:
23529          * <pre><code>
23530  Roo.data.Record.EDIT
23531  Roo.data.Record.REJECT
23532  Roo.data.Record.COMMIT
23533          * </code></pre>
23534          */
23535         update : true,
23536         /**
23537          * @event clear
23538          * Fires when the data cache has been cleared.
23539          * @param {Store} this
23540          */
23541         clear : true,
23542         /**
23543          * @event beforeload
23544          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23545          * the load action will be canceled.
23546          * @param {Store} this
23547          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23548          */
23549         beforeload : true,
23550         /**
23551          * @event beforeloadadd
23552          * Fires after a new set of Records has been loaded.
23553          * @param {Store} this
23554          * @param {Roo.data.Record[]} records The Records that were loaded
23555          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23556          */
23557         beforeloadadd : true,
23558         /**
23559          * @event load
23560          * Fires after a new set of Records has been loaded, before they are added to the store.
23561          * @param {Store} this
23562          * @param {Roo.data.Record[]} records The Records that were loaded
23563          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23564          * @params {Object} return from reader
23565          */
23566         load : true,
23567         /**
23568          * @event loadexception
23569          * Fires if an exception occurs in the Proxy during loading.
23570          * Called with the signature of the Proxy's "loadexception" event.
23571          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23572          * 
23573          * @param {Proxy} 
23574          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23575          * @param {Object} load options 
23576          * @param {Object} jsonData from your request (normally this contains the Exception)
23577          */
23578         loadexception : true
23579     });
23580     
23581     if(this.proxy){
23582         this.proxy = Roo.factory(this.proxy, Roo.data);
23583         this.proxy.xmodule = this.xmodule || false;
23584         this.relayEvents(this.proxy,  ["loadexception"]);
23585     }
23586     this.sortToggle = {};
23587     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23588
23589     Roo.data.Store.superclass.constructor.call(this);
23590
23591     if(this.inlineData){
23592         this.loadData(this.inlineData);
23593         delete this.inlineData;
23594     }
23595 };
23596
23597 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23598      /**
23599     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23600     * without a remote query - used by combo/forms at present.
23601     */
23602     
23603     /**
23604     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23605     */
23606     /**
23607     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23608     */
23609     /**
23610     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23611     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23612     */
23613     /**
23614     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23615     * on any HTTP request
23616     */
23617     /**
23618     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23619     */
23620     /**
23621     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23622     */
23623     multiSort: false,
23624     /**
23625     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23626     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23627     */
23628     remoteSort : false,
23629
23630     /**
23631     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23632      * loaded or when a record is removed. (defaults to false).
23633     */
23634     pruneModifiedRecords : false,
23635
23636     // private
23637     lastOptions : null,
23638
23639     /**
23640      * Add Records to the Store and fires the add event.
23641      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23642      */
23643     add : function(records){
23644         records = [].concat(records);
23645         for(var i = 0, len = records.length; i < len; i++){
23646             records[i].join(this);
23647         }
23648         var index = this.data.length;
23649         this.data.addAll(records);
23650         this.fireEvent("add", this, records, index);
23651     },
23652
23653     /**
23654      * Remove a Record from the Store and fires the remove event.
23655      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23656      */
23657     remove : function(record){
23658         var index = this.data.indexOf(record);
23659         this.data.removeAt(index);
23660  
23661         if(this.pruneModifiedRecords){
23662             this.modified.remove(record);
23663         }
23664         this.fireEvent("remove", this, record, index);
23665     },
23666
23667     /**
23668      * Remove all Records from the Store and fires the clear event.
23669      */
23670     removeAll : function(){
23671         this.data.clear();
23672         if(this.pruneModifiedRecords){
23673             this.modified = [];
23674         }
23675         this.fireEvent("clear", this);
23676     },
23677
23678     /**
23679      * Inserts Records to the Store at the given index and fires the add event.
23680      * @param {Number} index The start index at which to insert the passed Records.
23681      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23682      */
23683     insert : function(index, records){
23684         records = [].concat(records);
23685         for(var i = 0, len = records.length; i < len; i++){
23686             this.data.insert(index, records[i]);
23687             records[i].join(this);
23688         }
23689         this.fireEvent("add", this, records, index);
23690     },
23691
23692     /**
23693      * Get the index within the cache of the passed Record.
23694      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23695      * @return {Number} The index of the passed Record. Returns -1 if not found.
23696      */
23697     indexOf : function(record){
23698         return this.data.indexOf(record);
23699     },
23700
23701     /**
23702      * Get the index within the cache of the Record with the passed id.
23703      * @param {String} id The id of the Record to find.
23704      * @return {Number} The index of the Record. Returns -1 if not found.
23705      */
23706     indexOfId : function(id){
23707         return this.data.indexOfKey(id);
23708     },
23709
23710     /**
23711      * Get the Record with the specified id.
23712      * @param {String} id The id of the Record to find.
23713      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23714      */
23715     getById : function(id){
23716         return this.data.key(id);
23717     },
23718
23719     /**
23720      * Get the Record at the specified index.
23721      * @param {Number} index The index of the Record to find.
23722      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23723      */
23724     getAt : function(index){
23725         return this.data.itemAt(index);
23726     },
23727
23728     /**
23729      * Returns a range of Records between specified indices.
23730      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23731      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23732      * @return {Roo.data.Record[]} An array of Records
23733      */
23734     getRange : function(start, end){
23735         return this.data.getRange(start, end);
23736     },
23737
23738     // private
23739     storeOptions : function(o){
23740         o = Roo.apply({}, o);
23741         delete o.callback;
23742         delete o.scope;
23743         this.lastOptions = o;
23744     },
23745
23746     /**
23747      * Loads the Record cache from the configured Proxy using the configured Reader.
23748      * <p>
23749      * If using remote paging, then the first load call must specify the <em>start</em>
23750      * and <em>limit</em> properties in the options.params property to establish the initial
23751      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23752      * <p>
23753      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23754      * and this call will return before the new data has been loaded. Perform any post-processing
23755      * in a callback function, or in a "load" event handler.</strong>
23756      * <p>
23757      * @param {Object} options An object containing properties which control loading options:<ul>
23758      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23759      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23760      * passed the following arguments:<ul>
23761      * <li>r : Roo.data.Record[]</li>
23762      * <li>options: Options object from the load call</li>
23763      * <li>success: Boolean success indicator</li></ul></li>
23764      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23765      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23766      * </ul>
23767      */
23768     load : function(options){
23769         options = options || {};
23770         if(this.fireEvent("beforeload", this, options) !== false){
23771             this.storeOptions(options);
23772             var p = Roo.apply(options.params || {}, this.baseParams);
23773             // if meta was not loaded from remote source.. try requesting it.
23774             if (!this.reader.metaFromRemote) {
23775                 p._requestMeta = 1;
23776             }
23777             if(this.sortInfo && this.remoteSort){
23778                 var pn = this.paramNames;
23779                 p[pn["sort"]] = this.sortInfo.field;
23780                 p[pn["dir"]] = this.sortInfo.direction;
23781             }
23782             if (this.multiSort) {
23783                 var pn = this.paramNames;
23784                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23785             }
23786             
23787             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23788         }
23789     },
23790
23791     /**
23792      * Reloads the Record cache from the configured Proxy using the configured Reader and
23793      * the options from the last load operation performed.
23794      * @param {Object} options (optional) An object containing properties which may override the options
23795      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23796      * the most recently used options are reused).
23797      */
23798     reload : function(options){
23799         this.load(Roo.applyIf(options||{}, this.lastOptions));
23800     },
23801
23802     // private
23803     // Called as a callback by the Reader during a load operation.
23804     loadRecords : function(o, options, success){
23805         if(!o || success === false){
23806             if(success !== false){
23807                 this.fireEvent("load", this, [], options, o);
23808             }
23809             if(options.callback){
23810                 options.callback.call(options.scope || this, [], options, false);
23811             }
23812             return;
23813         }
23814         // if data returned failure - throw an exception.
23815         if (o.success === false) {
23816             // show a message if no listener is registered.
23817             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23818                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23819             }
23820             // loadmask wil be hooked into this..
23821             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23822             return;
23823         }
23824         var r = o.records, t = o.totalRecords || r.length;
23825         
23826         this.fireEvent("beforeloadadd", this, r, options, o);
23827         
23828         if(!options || options.add !== true){
23829             if(this.pruneModifiedRecords){
23830                 this.modified = [];
23831             }
23832             for(var i = 0, len = r.length; i < len; i++){
23833                 r[i].join(this);
23834             }
23835             if(this.snapshot){
23836                 this.data = this.snapshot;
23837                 delete this.snapshot;
23838             }
23839             this.data.clear();
23840             this.data.addAll(r);
23841             this.totalLength = t;
23842             this.applySort();
23843             this.fireEvent("datachanged", this);
23844         }else{
23845             this.totalLength = Math.max(t, this.data.length+r.length);
23846             this.add(r);
23847         }
23848         
23849         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23850                 
23851             var e = new Roo.data.Record({});
23852
23853             e.set(this.parent.displayField, this.parent.emptyTitle);
23854             e.set(this.parent.valueField, '');
23855
23856             this.insert(0, e);
23857         }
23858             
23859         this.fireEvent("load", this, r, options, o);
23860         if(options.callback){
23861             options.callback.call(options.scope || this, r, options, true);
23862         }
23863     },
23864
23865
23866     /**
23867      * Loads data from a passed data block. A Reader which understands the format of the data
23868      * must have been configured in the constructor.
23869      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23870      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23871      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23872      */
23873     loadData : function(o, append){
23874         var r = this.reader.readRecords(o);
23875         this.loadRecords(r, {add: append}, true);
23876     },
23877     
23878      /**
23879      * using 'cn' the nested child reader read the child array into it's child stores.
23880      * @param {Object} rec The record with a 'children array
23881      */
23882     loadDataFromChildren : function(rec)
23883     {
23884         this.loadData(this.reader.toLoadData(rec));
23885     },
23886     
23887
23888     /**
23889      * Gets the number of cached records.
23890      * <p>
23891      * <em>If using paging, this may not be the total size of the dataset. If the data object
23892      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23893      * the data set size</em>
23894      */
23895     getCount : function(){
23896         return this.data.length || 0;
23897     },
23898
23899     /**
23900      * Gets the total number of records in the dataset as returned by the server.
23901      * <p>
23902      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23903      * the dataset size</em>
23904      */
23905     getTotalCount : function(){
23906         return this.totalLength || 0;
23907     },
23908
23909     /**
23910      * Returns the sort state of the Store as an object with two properties:
23911      * <pre><code>
23912  field {String} The name of the field by which the Records are sorted
23913  direction {String} The sort order, "ASC" or "DESC"
23914      * </code></pre>
23915      */
23916     getSortState : function(){
23917         return this.sortInfo;
23918     },
23919
23920     // private
23921     applySort : function(){
23922         if(this.sortInfo && !this.remoteSort){
23923             var s = this.sortInfo, f = s.field;
23924             var st = this.fields.get(f).sortType;
23925             var fn = function(r1, r2){
23926                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23927                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23928             };
23929             this.data.sort(s.direction, fn);
23930             if(this.snapshot && this.snapshot != this.data){
23931                 this.snapshot.sort(s.direction, fn);
23932             }
23933         }
23934     },
23935
23936     /**
23937      * Sets the default sort column and order to be used by the next load operation.
23938      * @param {String} fieldName The name of the field to sort by.
23939      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23940      */
23941     setDefaultSort : function(field, dir){
23942         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23943     },
23944
23945     /**
23946      * Sort the Records.
23947      * If remote sorting is used, the sort is performed on the server, and the cache is
23948      * reloaded. If local sorting is used, the cache is sorted internally.
23949      * @param {String} fieldName The name of the field to sort by.
23950      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23951      */
23952     sort : function(fieldName, dir){
23953         var f = this.fields.get(fieldName);
23954         if(!dir){
23955             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23956             
23957             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23958                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23959             }else{
23960                 dir = f.sortDir;
23961             }
23962         }
23963         this.sortToggle[f.name] = dir;
23964         this.sortInfo = {field: f.name, direction: dir};
23965         if(!this.remoteSort){
23966             this.applySort();
23967             this.fireEvent("datachanged", this);
23968         }else{
23969             this.load(this.lastOptions);
23970         }
23971     },
23972
23973     /**
23974      * Calls the specified function for each of the Records in the cache.
23975      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23976      * Returning <em>false</em> aborts and exits the iteration.
23977      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23978      */
23979     each : function(fn, scope){
23980         this.data.each(fn, scope);
23981     },
23982
23983     /**
23984      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23985      * (e.g., during paging).
23986      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23987      */
23988     getModifiedRecords : function(){
23989         return this.modified;
23990     },
23991
23992     // private
23993     createFilterFn : function(property, value, anyMatch){
23994         if(!value.exec){ // not a regex
23995             value = String(value);
23996             if(value.length == 0){
23997                 return false;
23998             }
23999             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
24000         }
24001         return function(r){
24002             return value.test(r.data[property]);
24003         };
24004     },
24005
24006     /**
24007      * Sums the value of <i>property</i> for each record between start and end and returns the result.
24008      * @param {String} property A field on your records
24009      * @param {Number} start The record index to start at (defaults to 0)
24010      * @param {Number} end The last record index to include (defaults to length - 1)
24011      * @return {Number} The sum
24012      */
24013     sum : function(property, start, end){
24014         var rs = this.data.items, v = 0;
24015         start = start || 0;
24016         end = (end || end === 0) ? end : rs.length-1;
24017
24018         for(var i = start; i <= end; i++){
24019             v += (rs[i].data[property] || 0);
24020         }
24021         return v;
24022     },
24023
24024     /**
24025      * Filter the records by a specified property.
24026      * @param {String} field A field on your records
24027      * @param {String/RegExp} value Either a string that the field
24028      * should start with or a RegExp to test against the field
24029      * @param {Boolean} anyMatch True to match any part not just the beginning
24030      */
24031     filter : function(property, value, anyMatch){
24032         var fn = this.createFilterFn(property, value, anyMatch);
24033         return fn ? this.filterBy(fn) : this.clearFilter();
24034     },
24035
24036     /**
24037      * Filter by a function. The specified function will be called with each
24038      * record in this data source. If the function returns true the record is included,
24039      * otherwise it is filtered.
24040      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24041      * @param {Object} scope (optional) The scope of the function (defaults to this)
24042      */
24043     filterBy : function(fn, scope){
24044         this.snapshot = this.snapshot || this.data;
24045         this.data = this.queryBy(fn, scope||this);
24046         this.fireEvent("datachanged", this);
24047     },
24048
24049     /**
24050      * Query the records by a specified property.
24051      * @param {String} field A field on your records
24052      * @param {String/RegExp} value Either a string that the field
24053      * should start with or a RegExp to test against the field
24054      * @param {Boolean} anyMatch True to match any part not just the beginning
24055      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24056      */
24057     query : function(property, value, anyMatch){
24058         var fn = this.createFilterFn(property, value, anyMatch);
24059         return fn ? this.queryBy(fn) : this.data.clone();
24060     },
24061
24062     /**
24063      * Query by a function. The specified function will be called with each
24064      * record in this data source. If the function returns true the record is included
24065      * in the results.
24066      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24067      * @param {Object} scope (optional) The scope of the function (defaults to this)
24068       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24069      **/
24070     queryBy : function(fn, scope){
24071         var data = this.snapshot || this.data;
24072         return data.filterBy(fn, scope||this);
24073     },
24074
24075     /**
24076      * Collects unique values for a particular dataIndex from this store.
24077      * @param {String} dataIndex The property to collect
24078      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
24079      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
24080      * @return {Array} An array of the unique values
24081      **/
24082     collect : function(dataIndex, allowNull, bypassFilter){
24083         var d = (bypassFilter === true && this.snapshot) ?
24084                 this.snapshot.items : this.data.items;
24085         var v, sv, r = [], l = {};
24086         for(var i = 0, len = d.length; i < len; i++){
24087             v = d[i].data[dataIndex];
24088             sv = String(v);
24089             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24090                 l[sv] = true;
24091                 r[r.length] = v;
24092             }
24093         }
24094         return r;
24095     },
24096
24097     /**
24098      * Revert to a view of the Record cache with no filtering applied.
24099      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24100      */
24101     clearFilter : function(suppressEvent){
24102         if(this.snapshot && this.snapshot != this.data){
24103             this.data = this.snapshot;
24104             delete this.snapshot;
24105             if(suppressEvent !== true){
24106                 this.fireEvent("datachanged", this);
24107             }
24108         }
24109     },
24110
24111     // private
24112     afterEdit : function(record){
24113         if(this.modified.indexOf(record) == -1){
24114             this.modified.push(record);
24115         }
24116         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24117     },
24118     
24119     // private
24120     afterReject : function(record){
24121         this.modified.remove(record);
24122         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24123     },
24124
24125     // private
24126     afterCommit : function(record){
24127         this.modified.remove(record);
24128         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24129     },
24130
24131     /**
24132      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24133      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24134      */
24135     commitChanges : function(){
24136         var m = this.modified.slice(0);
24137         this.modified = [];
24138         for(var i = 0, len = m.length; i < len; i++){
24139             m[i].commit();
24140         }
24141     },
24142
24143     /**
24144      * Cancel outstanding changes on all changed records.
24145      */
24146     rejectChanges : function(){
24147         var m = this.modified.slice(0);
24148         this.modified = [];
24149         for(var i = 0, len = m.length; i < len; i++){
24150             m[i].reject();
24151         }
24152     },
24153
24154     onMetaChange : function(meta, rtype, o){
24155         this.recordType = rtype;
24156         this.fields = rtype.prototype.fields;
24157         delete this.snapshot;
24158         this.sortInfo = meta.sortInfo || this.sortInfo;
24159         this.modified = [];
24160         this.fireEvent('metachange', this, this.reader.meta);
24161     },
24162     
24163     moveIndex : function(data, type)
24164     {
24165         var index = this.indexOf(data);
24166         
24167         var newIndex = index + type;
24168         
24169         this.remove(data);
24170         
24171         this.insert(newIndex, data);
24172         
24173     }
24174 });/*
24175  * Based on:
24176  * Ext JS Library 1.1.1
24177  * Copyright(c) 2006-2007, Ext JS, LLC.
24178  *
24179  * Originally Released Under LGPL - original licence link has changed is not relivant.
24180  *
24181  * Fork - LGPL
24182  * <script type="text/javascript">
24183  */
24184
24185 /**
24186  * @class Roo.data.SimpleStore
24187  * @extends Roo.data.Store
24188  * Small helper class to make creating Stores from Array data easier.
24189  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24190  * @cfg {Array} fields An array of field definition objects, or field name strings.
24191  * @cfg {Object} an existing reader (eg. copied from another store)
24192  * @cfg {Array} data The multi-dimensional array of data
24193  * @constructor
24194  * @param {Object} config
24195  */
24196 Roo.data.SimpleStore = function(config)
24197 {
24198     Roo.data.SimpleStore.superclass.constructor.call(this, {
24199         isLocal : true,
24200         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24201                 id: config.id
24202             },
24203             Roo.data.Record.create(config.fields)
24204         ),
24205         proxy : new Roo.data.MemoryProxy(config.data)
24206     });
24207     this.load();
24208 };
24209 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24210  * Based on:
24211  * Ext JS Library 1.1.1
24212  * Copyright(c) 2006-2007, Ext JS, LLC.
24213  *
24214  * Originally Released Under LGPL - original licence link has changed is not relivant.
24215  *
24216  * Fork - LGPL
24217  * <script type="text/javascript">
24218  */
24219
24220 /**
24221 /**
24222  * @extends Roo.data.Store
24223  * @class Roo.data.JsonStore
24224  * Small helper class to make creating Stores for JSON data easier. <br/>
24225 <pre><code>
24226 var store = new Roo.data.JsonStore({
24227     url: 'get-images.php',
24228     root: 'images',
24229     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24230 });
24231 </code></pre>
24232  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24233  * JsonReader and HttpProxy (unless inline data is provided).</b>
24234  * @cfg {Array} fields An array of field definition objects, or field name strings.
24235  * @constructor
24236  * @param {Object} config
24237  */
24238 Roo.data.JsonStore = function(c){
24239     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24240         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24241         reader: new Roo.data.JsonReader(c, c.fields)
24242     }));
24243 };
24244 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24245  * Based on:
24246  * Ext JS Library 1.1.1
24247  * Copyright(c) 2006-2007, Ext JS, LLC.
24248  *
24249  * Originally Released Under LGPL - original licence link has changed is not relivant.
24250  *
24251  * Fork - LGPL
24252  * <script type="text/javascript">
24253  */
24254
24255  
24256 Roo.data.Field = function(config){
24257     if(typeof config == "string"){
24258         config = {name: config};
24259     }
24260     Roo.apply(this, config);
24261     
24262     if(!this.type){
24263         this.type = "auto";
24264     }
24265     
24266     var st = Roo.data.SortTypes;
24267     // named sortTypes are supported, here we look them up
24268     if(typeof this.sortType == "string"){
24269         this.sortType = st[this.sortType];
24270     }
24271     
24272     // set default sortType for strings and dates
24273     if(!this.sortType){
24274         switch(this.type){
24275             case "string":
24276                 this.sortType = st.asUCString;
24277                 break;
24278             case "date":
24279                 this.sortType = st.asDate;
24280                 break;
24281             default:
24282                 this.sortType = st.none;
24283         }
24284     }
24285
24286     // define once
24287     var stripRe = /[\$,%]/g;
24288
24289     // prebuilt conversion function for this field, instead of
24290     // switching every time we're reading a value
24291     if(!this.convert){
24292         var cv, dateFormat = this.dateFormat;
24293         switch(this.type){
24294             case "":
24295             case "auto":
24296             case undefined:
24297                 cv = function(v){ return v; };
24298                 break;
24299             case "string":
24300                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24301                 break;
24302             case "int":
24303                 cv = function(v){
24304                     return v !== undefined && v !== null && v !== '' ?
24305                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24306                     };
24307                 break;
24308             case "float":
24309                 cv = function(v){
24310                     return v !== undefined && v !== null && v !== '' ?
24311                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24312                     };
24313                 break;
24314             case "bool":
24315             case "boolean":
24316                 cv = function(v){ return v === true || v === "true" || v == 1; };
24317                 break;
24318             case "date":
24319                 cv = function(v){
24320                     if(!v){
24321                         return '';
24322                     }
24323                     if(v instanceof Date){
24324                         return v;
24325                     }
24326                     if(dateFormat){
24327                         if(dateFormat == "timestamp"){
24328                             return new Date(v*1000);
24329                         }
24330                         return Date.parseDate(v, dateFormat);
24331                     }
24332                     var parsed = Date.parse(v);
24333                     return parsed ? new Date(parsed) : null;
24334                 };
24335              break;
24336             
24337         }
24338         this.convert = cv;
24339     }
24340 };
24341
24342 Roo.data.Field.prototype = {
24343     dateFormat: null,
24344     defaultValue: "",
24345     mapping: null,
24346     sortType : null,
24347     sortDir : "ASC"
24348 };/*
24349  * Based on:
24350  * Ext JS Library 1.1.1
24351  * Copyright(c) 2006-2007, Ext JS, LLC.
24352  *
24353  * Originally Released Under LGPL - original licence link has changed is not relivant.
24354  *
24355  * Fork - LGPL
24356  * <script type="text/javascript">
24357  */
24358  
24359 // Base class for reading structured data from a data source.  This class is intended to be
24360 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24361
24362 /**
24363  * @class Roo.data.DataReader
24364  * Base class for reading structured data from a data source.  This class is intended to be
24365  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24366  */
24367
24368 Roo.data.DataReader = function(meta, recordType){
24369     
24370     this.meta = meta;
24371     
24372     this.recordType = recordType instanceof Array ? 
24373         Roo.data.Record.create(recordType) : recordType;
24374 };
24375
24376 Roo.data.DataReader.prototype = {
24377     
24378     
24379     readerType : 'Data',
24380      /**
24381      * Create an empty record
24382      * @param {Object} data (optional) - overlay some values
24383      * @return {Roo.data.Record} record created.
24384      */
24385     newRow :  function(d) {
24386         var da =  {};
24387         this.recordType.prototype.fields.each(function(c) {
24388             switch( c.type) {
24389                 case 'int' : da[c.name] = 0; break;
24390                 case 'date' : da[c.name] = new Date(); break;
24391                 case 'float' : da[c.name] = 0.0; break;
24392                 case 'boolean' : da[c.name] = false; break;
24393                 default : da[c.name] = ""; break;
24394             }
24395             
24396         });
24397         return new this.recordType(Roo.apply(da, d));
24398     }
24399     
24400     
24401 };/*
24402  * Based on:
24403  * Ext JS Library 1.1.1
24404  * Copyright(c) 2006-2007, Ext JS, LLC.
24405  *
24406  * Originally Released Under LGPL - original licence link has changed is not relivant.
24407  *
24408  * Fork - LGPL
24409  * <script type="text/javascript">
24410  */
24411
24412 /**
24413  * @class Roo.data.DataProxy
24414  * @extends Roo.data.Observable
24415  * This class is an abstract base class for implementations which provide retrieval of
24416  * unformatted data objects.<br>
24417  * <p>
24418  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24419  * (of the appropriate type which knows how to parse the data object) to provide a block of
24420  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24421  * <p>
24422  * Custom implementations must implement the load method as described in
24423  * {@link Roo.data.HttpProxy#load}.
24424  */
24425 Roo.data.DataProxy = function(){
24426     this.addEvents({
24427         /**
24428          * @event beforeload
24429          * Fires before a network request is made to retrieve a data object.
24430          * @param {Object} This DataProxy object.
24431          * @param {Object} params The params parameter to the load function.
24432          */
24433         beforeload : true,
24434         /**
24435          * @event load
24436          * Fires before the load method's callback is called.
24437          * @param {Object} This DataProxy object.
24438          * @param {Object} o The data object.
24439          * @param {Object} arg The callback argument object passed to the load function.
24440          */
24441         load : true,
24442         /**
24443          * @event loadexception
24444          * Fires if an Exception occurs during data retrieval.
24445          * @param {Object} This DataProxy object.
24446          * @param {Object} o The data object.
24447          * @param {Object} arg The callback argument object passed to the load function.
24448          * @param {Object} e The Exception.
24449          */
24450         loadexception : true
24451     });
24452     Roo.data.DataProxy.superclass.constructor.call(this);
24453 };
24454
24455 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24456
24457     /**
24458      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24459      */
24460 /*
24461  * Based on:
24462  * Ext JS Library 1.1.1
24463  * Copyright(c) 2006-2007, Ext JS, LLC.
24464  *
24465  * Originally Released Under LGPL - original licence link has changed is not relivant.
24466  *
24467  * Fork - LGPL
24468  * <script type="text/javascript">
24469  */
24470 /**
24471  * @class Roo.data.MemoryProxy
24472  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24473  * to the Reader when its load method is called.
24474  * @constructor
24475  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24476  */
24477 Roo.data.MemoryProxy = function(data){
24478     if (data.data) {
24479         data = data.data;
24480     }
24481     Roo.data.MemoryProxy.superclass.constructor.call(this);
24482     this.data = data;
24483 };
24484
24485 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24486     
24487     /**
24488      * Load data from the requested source (in this case an in-memory
24489      * data object passed to the constructor), read the data object into
24490      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24491      * process that block using the passed callback.
24492      * @param {Object} params This parameter is not used by the MemoryProxy class.
24493      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24494      * object into a block of Roo.data.Records.
24495      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24496      * The function must be passed <ul>
24497      * <li>The Record block object</li>
24498      * <li>The "arg" argument from the load function</li>
24499      * <li>A boolean success indicator</li>
24500      * </ul>
24501      * @param {Object} scope The scope in which to call the callback
24502      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24503      */
24504     load : function(params, reader, callback, scope, arg){
24505         params = params || {};
24506         var result;
24507         try {
24508             result = reader.readRecords(params.data ? params.data :this.data);
24509         }catch(e){
24510             this.fireEvent("loadexception", this, arg, null, e);
24511             callback.call(scope, null, arg, false);
24512             return;
24513         }
24514         callback.call(scope, result, arg, true);
24515     },
24516     
24517     // private
24518     update : function(params, records){
24519         
24520     }
24521 });/*
24522  * Based on:
24523  * Ext JS Library 1.1.1
24524  * Copyright(c) 2006-2007, Ext JS, LLC.
24525  *
24526  * Originally Released Under LGPL - original licence link has changed is not relivant.
24527  *
24528  * Fork - LGPL
24529  * <script type="text/javascript">
24530  */
24531 /**
24532  * @class Roo.data.HttpProxy
24533  * @extends Roo.data.DataProxy
24534  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24535  * configured to reference a certain URL.<br><br>
24536  * <p>
24537  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24538  * from which the running page was served.<br><br>
24539  * <p>
24540  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24541  * <p>
24542  * Be aware that to enable the browser to parse an XML document, the server must set
24543  * the Content-Type header in the HTTP response to "text/xml".
24544  * @constructor
24545  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24546  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24547  * will be used to make the request.
24548  */
24549 Roo.data.HttpProxy = function(conn){
24550     Roo.data.HttpProxy.superclass.constructor.call(this);
24551     // is conn a conn config or a real conn?
24552     this.conn = conn;
24553     this.useAjax = !conn || !conn.events;
24554   
24555 };
24556
24557 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24558     // thse are take from connection...
24559     
24560     /**
24561      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24562      */
24563     /**
24564      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24565      * extra parameters to each request made by this object. (defaults to undefined)
24566      */
24567     /**
24568      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24569      *  to each request made by this object. (defaults to undefined)
24570      */
24571     /**
24572      * @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)
24573      */
24574     /**
24575      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24576      */
24577      /**
24578      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24579      * @type Boolean
24580      */
24581   
24582
24583     /**
24584      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24585      * @type Boolean
24586      */
24587     /**
24588      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24589      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24590      * a finer-grained basis than the DataProxy events.
24591      */
24592     getConnection : function(){
24593         return this.useAjax ? Roo.Ajax : this.conn;
24594     },
24595
24596     /**
24597      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24598      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24599      * process that block using the passed callback.
24600      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24601      * for the request to the remote server.
24602      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24603      * object into a block of Roo.data.Records.
24604      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24605      * The function must be passed <ul>
24606      * <li>The Record block object</li>
24607      * <li>The "arg" argument from the load function</li>
24608      * <li>A boolean success indicator</li>
24609      * </ul>
24610      * @param {Object} scope The scope in which to call the callback
24611      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24612      */
24613     load : function(params, reader, callback, scope, arg){
24614         if(this.fireEvent("beforeload", this, params) !== false){
24615             var  o = {
24616                 params : params || {},
24617                 request: {
24618                     callback : callback,
24619                     scope : scope,
24620                     arg : arg
24621                 },
24622                 reader: reader,
24623                 callback : this.loadResponse,
24624                 scope: this
24625             };
24626             if(this.useAjax){
24627                 Roo.applyIf(o, this.conn);
24628                 if(this.activeRequest){
24629                     Roo.Ajax.abort(this.activeRequest);
24630                 }
24631                 this.activeRequest = Roo.Ajax.request(o);
24632             }else{
24633                 this.conn.request(o);
24634             }
24635         }else{
24636             callback.call(scope||this, null, arg, false);
24637         }
24638     },
24639
24640     // private
24641     loadResponse : function(o, success, response){
24642         delete this.activeRequest;
24643         if(!success){
24644             this.fireEvent("loadexception", this, o, response);
24645             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24646             return;
24647         }
24648         var result;
24649         try {
24650             result = o.reader.read(response);
24651         }catch(e){
24652             this.fireEvent("loadexception", this, o, response, e);
24653             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24654             return;
24655         }
24656         
24657         this.fireEvent("load", this, o, o.request.arg);
24658         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24659     },
24660
24661     // private
24662     update : function(dataSet){
24663
24664     },
24665
24666     // private
24667     updateResponse : function(dataSet){
24668
24669     }
24670 });/*
24671  * Based on:
24672  * Ext JS Library 1.1.1
24673  * Copyright(c) 2006-2007, Ext JS, LLC.
24674  *
24675  * Originally Released Under LGPL - original licence link has changed is not relivant.
24676  *
24677  * Fork - LGPL
24678  * <script type="text/javascript">
24679  */
24680
24681 /**
24682  * @class Roo.data.ScriptTagProxy
24683  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24684  * other than the originating domain of the running page.<br><br>
24685  * <p>
24686  * <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
24687  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24688  * <p>
24689  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24690  * source code that is used as the source inside a &lt;script> tag.<br><br>
24691  * <p>
24692  * In order for the browser to process the returned data, the server must wrap the data object
24693  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24694  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24695  * depending on whether the callback name was passed:
24696  * <p>
24697  * <pre><code>
24698 boolean scriptTag = false;
24699 String cb = request.getParameter("callback");
24700 if (cb != null) {
24701     scriptTag = true;
24702     response.setContentType("text/javascript");
24703 } else {
24704     response.setContentType("application/x-json");
24705 }
24706 Writer out = response.getWriter();
24707 if (scriptTag) {
24708     out.write(cb + "(");
24709 }
24710 out.print(dataBlock.toJsonString());
24711 if (scriptTag) {
24712     out.write(");");
24713 }
24714 </pre></code>
24715  *
24716  * @constructor
24717  * @param {Object} config A configuration object.
24718  */
24719 Roo.data.ScriptTagProxy = function(config){
24720     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24721     Roo.apply(this, config);
24722     this.head = document.getElementsByTagName("head")[0];
24723 };
24724
24725 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24726
24727 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24728     /**
24729      * @cfg {String} url The URL from which to request the data object.
24730      */
24731     /**
24732      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24733      */
24734     timeout : 30000,
24735     /**
24736      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24737      * the server the name of the callback function set up by the load call to process the returned data object.
24738      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24739      * javascript output which calls this named function passing the data object as its only parameter.
24740      */
24741     callbackParam : "callback",
24742     /**
24743      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24744      * name to the request.
24745      */
24746     nocache : true,
24747
24748     /**
24749      * Load data from the configured URL, read the data object into
24750      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24751      * process that block using the passed callback.
24752      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24753      * for the request to the remote server.
24754      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24755      * object into a block of Roo.data.Records.
24756      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24757      * The function must be passed <ul>
24758      * <li>The Record block object</li>
24759      * <li>The "arg" argument from the load function</li>
24760      * <li>A boolean success indicator</li>
24761      * </ul>
24762      * @param {Object} scope The scope in which to call the callback
24763      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24764      */
24765     load : function(params, reader, callback, scope, arg){
24766         if(this.fireEvent("beforeload", this, params) !== false){
24767
24768             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24769
24770             var url = this.url;
24771             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24772             if(this.nocache){
24773                 url += "&_dc=" + (new Date().getTime());
24774             }
24775             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24776             var trans = {
24777                 id : transId,
24778                 cb : "stcCallback"+transId,
24779                 scriptId : "stcScript"+transId,
24780                 params : params,
24781                 arg : arg,
24782                 url : url,
24783                 callback : callback,
24784                 scope : scope,
24785                 reader : reader
24786             };
24787             var conn = this;
24788
24789             window[trans.cb] = function(o){
24790                 conn.handleResponse(o, trans);
24791             };
24792
24793             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24794
24795             if(this.autoAbort !== false){
24796                 this.abort();
24797             }
24798
24799             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24800
24801             var script = document.createElement("script");
24802             script.setAttribute("src", url);
24803             script.setAttribute("type", "text/javascript");
24804             script.setAttribute("id", trans.scriptId);
24805             this.head.appendChild(script);
24806
24807             this.trans = trans;
24808         }else{
24809             callback.call(scope||this, null, arg, false);
24810         }
24811     },
24812
24813     // private
24814     isLoading : function(){
24815         return this.trans ? true : false;
24816     },
24817
24818     /**
24819      * Abort the current server request.
24820      */
24821     abort : function(){
24822         if(this.isLoading()){
24823             this.destroyTrans(this.trans);
24824         }
24825     },
24826
24827     // private
24828     destroyTrans : function(trans, isLoaded){
24829         this.head.removeChild(document.getElementById(trans.scriptId));
24830         clearTimeout(trans.timeoutId);
24831         if(isLoaded){
24832             window[trans.cb] = undefined;
24833             try{
24834                 delete window[trans.cb];
24835             }catch(e){}
24836         }else{
24837             // if hasn't been loaded, wait for load to remove it to prevent script error
24838             window[trans.cb] = function(){
24839                 window[trans.cb] = undefined;
24840                 try{
24841                     delete window[trans.cb];
24842                 }catch(e){}
24843             };
24844         }
24845     },
24846
24847     // private
24848     handleResponse : function(o, trans){
24849         this.trans = false;
24850         this.destroyTrans(trans, true);
24851         var result;
24852         try {
24853             result = trans.reader.readRecords(o);
24854         }catch(e){
24855             this.fireEvent("loadexception", this, o, trans.arg, e);
24856             trans.callback.call(trans.scope||window, null, trans.arg, false);
24857             return;
24858         }
24859         this.fireEvent("load", this, o, trans.arg);
24860         trans.callback.call(trans.scope||window, result, trans.arg, true);
24861     },
24862
24863     // private
24864     handleFailure : function(trans){
24865         this.trans = false;
24866         this.destroyTrans(trans, false);
24867         this.fireEvent("loadexception", this, null, trans.arg);
24868         trans.callback.call(trans.scope||window, null, trans.arg, false);
24869     }
24870 });/*
24871  * Based on:
24872  * Ext JS Library 1.1.1
24873  * Copyright(c) 2006-2007, Ext JS, LLC.
24874  *
24875  * Originally Released Under LGPL - original licence link has changed is not relivant.
24876  *
24877  * Fork - LGPL
24878  * <script type="text/javascript">
24879  */
24880
24881 /**
24882  * @class Roo.data.JsonReader
24883  * @extends Roo.data.DataReader
24884  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24885  * based on mappings in a provided Roo.data.Record constructor.
24886  * 
24887  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24888  * in the reply previously. 
24889  * 
24890  * <p>
24891  * Example code:
24892  * <pre><code>
24893 var RecordDef = Roo.data.Record.create([
24894     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24895     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24896 ]);
24897 var myReader = new Roo.data.JsonReader({
24898     totalProperty: "results",    // The property which contains the total dataset size (optional)
24899     root: "rows",                // The property which contains an Array of row objects
24900     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24901 }, RecordDef);
24902 </code></pre>
24903  * <p>
24904  * This would consume a JSON file like this:
24905  * <pre><code>
24906 { 'results': 2, 'rows': [
24907     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24908     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24909 }
24910 </code></pre>
24911  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24912  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24913  * paged from the remote server.
24914  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24915  * @cfg {String} root name of the property which contains the Array of row objects.
24916  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24917  * @cfg {Array} fields Array of field definition objects
24918  * @constructor
24919  * Create a new JsonReader
24920  * @param {Object} meta Metadata configuration options
24921  * @param {Object} recordType Either an Array of field definition objects,
24922  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24923  */
24924 Roo.data.JsonReader = function(meta, recordType){
24925     
24926     meta = meta || {};
24927     // set some defaults:
24928     Roo.applyIf(meta, {
24929         totalProperty: 'total',
24930         successProperty : 'success',
24931         root : 'data',
24932         id : 'id'
24933     });
24934     
24935     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24936 };
24937 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24938     
24939     readerType : 'Json',
24940     
24941     /**
24942      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24943      * Used by Store query builder to append _requestMeta to params.
24944      * 
24945      */
24946     metaFromRemote : false,
24947     /**
24948      * This method is only used by a DataProxy which has retrieved data from a remote server.
24949      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24950      * @return {Object} data A data block which is used by an Roo.data.Store object as
24951      * a cache of Roo.data.Records.
24952      */
24953     read : function(response){
24954         var json = response.responseText;
24955        
24956         var o = /* eval:var:o */ eval("("+json+")");
24957         if(!o) {
24958             throw {message: "JsonReader.read: Json object not found"};
24959         }
24960         
24961         if(o.metaData){
24962             
24963             delete this.ef;
24964             this.metaFromRemote = true;
24965             this.meta = o.metaData;
24966             this.recordType = Roo.data.Record.create(o.metaData.fields);
24967             this.onMetaChange(this.meta, this.recordType, o);
24968         }
24969         return this.readRecords(o);
24970     },
24971
24972     // private function a store will implement
24973     onMetaChange : function(meta, recordType, o){
24974
24975     },
24976
24977     /**
24978          * @ignore
24979          */
24980     simpleAccess: function(obj, subsc) {
24981         return obj[subsc];
24982     },
24983
24984         /**
24985          * @ignore
24986          */
24987     getJsonAccessor: function(){
24988         var re = /[\[\.]/;
24989         return function(expr) {
24990             try {
24991                 return(re.test(expr))
24992                     ? new Function("obj", "return obj." + expr)
24993                     : function(obj){
24994                         return obj[expr];
24995                     };
24996             } catch(e){}
24997             return Roo.emptyFn;
24998         };
24999     }(),
25000
25001     /**
25002      * Create a data block containing Roo.data.Records from an XML document.
25003      * @param {Object} o An object which contains an Array of row objects in the property specified
25004      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
25005      * which contains the total size of the dataset.
25006      * @return {Object} data A data block which is used by an Roo.data.Store object as
25007      * a cache of Roo.data.Records.
25008      */
25009     readRecords : function(o){
25010         /**
25011          * After any data loads, the raw JSON data is available for further custom processing.
25012          * @type Object
25013          */
25014         this.o = o;
25015         var s = this.meta, Record = this.recordType,
25016             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
25017
25018 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
25019         if (!this.ef) {
25020             if(s.totalProperty) {
25021                     this.getTotal = this.getJsonAccessor(s.totalProperty);
25022                 }
25023                 if(s.successProperty) {
25024                     this.getSuccess = this.getJsonAccessor(s.successProperty);
25025                 }
25026                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
25027                 if (s.id) {
25028                         var g = this.getJsonAccessor(s.id);
25029                         this.getId = function(rec) {
25030                                 var r = g(rec);  
25031                                 return (r === undefined || r === "") ? null : r;
25032                         };
25033                 } else {
25034                         this.getId = function(){return null;};
25035                 }
25036             this.ef = [];
25037             for(var jj = 0; jj < fl; jj++){
25038                 f = fi[jj];
25039                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
25040                 this.ef[jj] = this.getJsonAccessor(map);
25041             }
25042         }
25043
25044         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
25045         if(s.totalProperty){
25046             var vt = parseInt(this.getTotal(o), 10);
25047             if(!isNaN(vt)){
25048                 totalRecords = vt;
25049             }
25050         }
25051         if(s.successProperty){
25052             var vs = this.getSuccess(o);
25053             if(vs === false || vs === 'false'){
25054                 success = false;
25055             }
25056         }
25057         var records = [];
25058         for(var i = 0; i < c; i++){
25059                 var n = root[i];
25060             var values = {};
25061             var id = this.getId(n);
25062             for(var j = 0; j < fl; j++){
25063                 f = fi[j];
25064             var v = this.ef[j](n);
25065             if (!f.convert) {
25066                 Roo.log('missing convert for ' + f.name);
25067                 Roo.log(f);
25068                 continue;
25069             }
25070             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
25071             }
25072             var record = new Record(values, id);
25073             record.json = n;
25074             records[i] = record;
25075         }
25076         return {
25077             raw : o,
25078             success : success,
25079             records : records,
25080             totalRecords : totalRecords
25081         };
25082     },
25083     // used when loading children.. @see loadDataFromChildren
25084     toLoadData: function(rec)
25085     {
25086         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25087         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25088         return { data : data, total : data.length };
25089         
25090     }
25091 });/*
25092  * Based on:
25093  * Ext JS Library 1.1.1
25094  * Copyright(c) 2006-2007, Ext JS, LLC.
25095  *
25096  * Originally Released Under LGPL - original licence link has changed is not relivant.
25097  *
25098  * Fork - LGPL
25099  * <script type="text/javascript">
25100  */
25101
25102 /**
25103  * @class Roo.data.XmlReader
25104  * @extends Roo.data.DataReader
25105  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25106  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25107  * <p>
25108  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25109  * header in the HTTP response must be set to "text/xml".</em>
25110  * <p>
25111  * Example code:
25112  * <pre><code>
25113 var RecordDef = Roo.data.Record.create([
25114    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25115    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25116 ]);
25117 var myReader = new Roo.data.XmlReader({
25118    totalRecords: "results", // The element which contains the total dataset size (optional)
25119    record: "row",           // The repeated element which contains row information
25120    id: "id"                 // The element within the row that provides an ID for the record (optional)
25121 }, RecordDef);
25122 </code></pre>
25123  * <p>
25124  * This would consume an XML file like this:
25125  * <pre><code>
25126 &lt;?xml?>
25127 &lt;dataset>
25128  &lt;results>2&lt;/results>
25129  &lt;row>
25130    &lt;id>1&lt;/id>
25131    &lt;name>Bill&lt;/name>
25132    &lt;occupation>Gardener&lt;/occupation>
25133  &lt;/row>
25134  &lt;row>
25135    &lt;id>2&lt;/id>
25136    &lt;name>Ben&lt;/name>
25137    &lt;occupation>Horticulturalist&lt;/occupation>
25138  &lt;/row>
25139 &lt;/dataset>
25140 </code></pre>
25141  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25142  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25143  * paged from the remote server.
25144  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25145  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25146  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25147  * a record identifier value.
25148  * @constructor
25149  * Create a new XmlReader
25150  * @param {Object} meta Metadata configuration options
25151  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25152  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25153  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25154  */
25155 Roo.data.XmlReader = function(meta, recordType){
25156     meta = meta || {};
25157     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25158 };
25159 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25160     
25161     readerType : 'Xml',
25162     
25163     /**
25164      * This method is only used by a DataProxy which has retrieved data from a remote server.
25165          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25166          * to contain a method called 'responseXML' that returns an XML document object.
25167      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25168      * a cache of Roo.data.Records.
25169      */
25170     read : function(response){
25171         var doc = response.responseXML;
25172         if(!doc) {
25173             throw {message: "XmlReader.read: XML Document not available"};
25174         }
25175         return this.readRecords(doc);
25176     },
25177
25178     /**
25179      * Create a data block containing Roo.data.Records from an XML document.
25180          * @param {Object} doc A parsed XML document.
25181      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25182      * a cache of Roo.data.Records.
25183      */
25184     readRecords : function(doc){
25185         /**
25186          * After any data loads/reads, the raw XML Document is available for further custom processing.
25187          * @type XMLDocument
25188          */
25189         this.xmlData = doc;
25190         var root = doc.documentElement || doc;
25191         var q = Roo.DomQuery;
25192         var recordType = this.recordType, fields = recordType.prototype.fields;
25193         var sid = this.meta.id;
25194         var totalRecords = 0, success = true;
25195         if(this.meta.totalRecords){
25196             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25197         }
25198         
25199         if(this.meta.success){
25200             var sv = q.selectValue(this.meta.success, root, true);
25201             success = sv !== false && sv !== 'false';
25202         }
25203         var records = [];
25204         var ns = q.select(this.meta.record, root);
25205         for(var i = 0, len = ns.length; i < len; i++) {
25206                 var n = ns[i];
25207                 var values = {};
25208                 var id = sid ? q.selectValue(sid, n) : undefined;
25209                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25210                     var f = fields.items[j];
25211                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25212                     v = f.convert(v);
25213                     values[f.name] = v;
25214                 }
25215                 var record = new recordType(values, id);
25216                 record.node = n;
25217                 records[records.length] = record;
25218             }
25219
25220             return {
25221                 success : success,
25222                 records : records,
25223                 totalRecords : totalRecords || records.length
25224             };
25225     }
25226 });/*
25227  * Based on:
25228  * Ext JS Library 1.1.1
25229  * Copyright(c) 2006-2007, Ext JS, LLC.
25230  *
25231  * Originally Released Under LGPL - original licence link has changed is not relivant.
25232  *
25233  * Fork - LGPL
25234  * <script type="text/javascript">
25235  */
25236
25237 /**
25238  * @class Roo.data.ArrayReader
25239  * @extends Roo.data.DataReader
25240  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25241  * Each element of that Array represents a row of data fields. The
25242  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25243  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25244  * <p>
25245  * Example code:.
25246  * <pre><code>
25247 var RecordDef = Roo.data.Record.create([
25248     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25249     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25250 ]);
25251 var myReader = new Roo.data.ArrayReader({
25252     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25253 }, RecordDef);
25254 </code></pre>
25255  * <p>
25256  * This would consume an Array like this:
25257  * <pre><code>
25258 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25259   </code></pre>
25260  
25261  * @constructor
25262  * Create a new JsonReader
25263  * @param {Object} meta Metadata configuration options.
25264  * @param {Object|Array} recordType Either an Array of field definition objects
25265  * 
25266  * @cfg {Array} fields Array of field definition objects
25267  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25268  * as specified to {@link Roo.data.Record#create},
25269  * or an {@link Roo.data.Record} object
25270  *
25271  * 
25272  * created using {@link Roo.data.Record#create}.
25273  */
25274 Roo.data.ArrayReader = function(meta, recordType)
25275 {    
25276     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25277 };
25278
25279 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25280     
25281       /**
25282      * Create a data block containing Roo.data.Records from an XML document.
25283      * @param {Object} o An Array of row objects which represents the dataset.
25284      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25285      * a cache of Roo.data.Records.
25286      */
25287     readRecords : function(o)
25288     {
25289         var sid = this.meta ? this.meta.id : null;
25290         var recordType = this.recordType, fields = recordType.prototype.fields;
25291         var records = [];
25292         var root = o;
25293         for(var i = 0; i < root.length; i++){
25294             var n = root[i];
25295             var values = {};
25296             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25297             for(var j = 0, jlen = fields.length; j < jlen; j++){
25298                 var f = fields.items[j];
25299                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25300                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25301                 v = f.convert(v);
25302                 values[f.name] = v;
25303             }
25304             var record = new recordType(values, id);
25305             record.json = n;
25306             records[records.length] = record;
25307         }
25308         return {
25309             records : records,
25310             totalRecords : records.length
25311         };
25312     },
25313     // used when loading children.. @see loadDataFromChildren
25314     toLoadData: function(rec)
25315     {
25316         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25317         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25318         
25319     }
25320     
25321     
25322 });/*
25323  * Based on:
25324  * Ext JS Library 1.1.1
25325  * Copyright(c) 2006-2007, Ext JS, LLC.
25326  *
25327  * Originally Released Under LGPL - original licence link has changed is not relivant.
25328  *
25329  * Fork - LGPL
25330  * <script type="text/javascript">
25331  */
25332
25333
25334 /**
25335  * @class Roo.data.Tree
25336  * @extends Roo.util.Observable
25337  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25338  * in the tree have most standard DOM functionality.
25339  * @constructor
25340  * @param {Node} root (optional) The root node
25341  */
25342 Roo.data.Tree = function(root){
25343    this.nodeHash = {};
25344    /**
25345     * The root node for this tree
25346     * @type Node
25347     */
25348    this.root = null;
25349    if(root){
25350        this.setRootNode(root);
25351    }
25352    this.addEvents({
25353        /**
25354         * @event append
25355         * Fires when a new child node is appended to a node in this tree.
25356         * @param {Tree} tree The owner tree
25357         * @param {Node} parent The parent node
25358         * @param {Node} node The newly appended node
25359         * @param {Number} index The index of the newly appended node
25360         */
25361        "append" : true,
25362        /**
25363         * @event remove
25364         * Fires when a child node is removed from a node in this tree.
25365         * @param {Tree} tree The owner tree
25366         * @param {Node} parent The parent node
25367         * @param {Node} node The child node removed
25368         */
25369        "remove" : true,
25370        /**
25371         * @event move
25372         * Fires when a node is moved to a new location in the tree
25373         * @param {Tree} tree The owner tree
25374         * @param {Node} node The node moved
25375         * @param {Node} oldParent The old parent of this node
25376         * @param {Node} newParent The new parent of this node
25377         * @param {Number} index The index it was moved to
25378         */
25379        "move" : true,
25380        /**
25381         * @event insert
25382         * Fires when a new child node is inserted in a node in this tree.
25383         * @param {Tree} tree The owner tree
25384         * @param {Node} parent The parent node
25385         * @param {Node} node The child node inserted
25386         * @param {Node} refNode The child node the node was inserted before
25387         */
25388        "insert" : true,
25389        /**
25390         * @event beforeappend
25391         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25392         * @param {Tree} tree The owner tree
25393         * @param {Node} parent The parent node
25394         * @param {Node} node The child node to be appended
25395         */
25396        "beforeappend" : true,
25397        /**
25398         * @event beforeremove
25399         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25400         * @param {Tree} tree The owner tree
25401         * @param {Node} parent The parent node
25402         * @param {Node} node The child node to be removed
25403         */
25404        "beforeremove" : true,
25405        /**
25406         * @event beforemove
25407         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25408         * @param {Tree} tree The owner tree
25409         * @param {Node} node The node being moved
25410         * @param {Node} oldParent The parent of the node
25411         * @param {Node} newParent The new parent the node is moving to
25412         * @param {Number} index The index it is being moved to
25413         */
25414        "beforemove" : true,
25415        /**
25416         * @event beforeinsert
25417         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25418         * @param {Tree} tree The owner tree
25419         * @param {Node} parent The parent node
25420         * @param {Node} node The child node to be inserted
25421         * @param {Node} refNode The child node the node is being inserted before
25422         */
25423        "beforeinsert" : true
25424    });
25425
25426     Roo.data.Tree.superclass.constructor.call(this);
25427 };
25428
25429 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25430     pathSeparator: "/",
25431
25432     proxyNodeEvent : function(){
25433         return this.fireEvent.apply(this, arguments);
25434     },
25435
25436     /**
25437      * Returns the root node for this tree.
25438      * @return {Node}
25439      */
25440     getRootNode : function(){
25441         return this.root;
25442     },
25443
25444     /**
25445      * Sets the root node for this tree.
25446      * @param {Node} node
25447      * @return {Node}
25448      */
25449     setRootNode : function(node){
25450         this.root = node;
25451         node.ownerTree = this;
25452         node.isRoot = true;
25453         this.registerNode(node);
25454         return node;
25455     },
25456
25457     /**
25458      * Gets a node in this tree by its id.
25459      * @param {String} id
25460      * @return {Node}
25461      */
25462     getNodeById : function(id){
25463         return this.nodeHash[id];
25464     },
25465
25466     registerNode : function(node){
25467         this.nodeHash[node.id] = node;
25468     },
25469
25470     unregisterNode : function(node){
25471         delete this.nodeHash[node.id];
25472     },
25473
25474     toString : function(){
25475         return "[Tree"+(this.id?" "+this.id:"")+"]";
25476     }
25477 });
25478
25479 /**
25480  * @class Roo.data.Node
25481  * @extends Roo.util.Observable
25482  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25483  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25484  * @constructor
25485  * @param {Object} attributes The attributes/config for the node
25486  */
25487 Roo.data.Node = function(attributes){
25488     /**
25489      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25490      * @type {Object}
25491      */
25492     this.attributes = attributes || {};
25493     this.leaf = this.attributes.leaf;
25494     /**
25495      * The node id. @type String
25496      */
25497     this.id = this.attributes.id;
25498     if(!this.id){
25499         this.id = Roo.id(null, "ynode-");
25500         this.attributes.id = this.id;
25501     }
25502      
25503     
25504     /**
25505      * All child nodes of this node. @type Array
25506      */
25507     this.childNodes = [];
25508     if(!this.childNodes.indexOf){ // indexOf is a must
25509         this.childNodes.indexOf = function(o){
25510             for(var i = 0, len = this.length; i < len; i++){
25511                 if(this[i] == o) {
25512                     return i;
25513                 }
25514             }
25515             return -1;
25516         };
25517     }
25518     /**
25519      * The parent node for this node. @type Node
25520      */
25521     this.parentNode = null;
25522     /**
25523      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25524      */
25525     this.firstChild = null;
25526     /**
25527      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25528      */
25529     this.lastChild = null;
25530     /**
25531      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25532      */
25533     this.previousSibling = null;
25534     /**
25535      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25536      */
25537     this.nextSibling = null;
25538
25539     this.addEvents({
25540        /**
25541         * @event append
25542         * Fires when a new child node is appended
25543         * @param {Tree} tree The owner tree
25544         * @param {Node} this This node
25545         * @param {Node} node The newly appended node
25546         * @param {Number} index The index of the newly appended node
25547         */
25548        "append" : true,
25549        /**
25550         * @event remove
25551         * Fires when a child node is removed
25552         * @param {Tree} tree The owner tree
25553         * @param {Node} this This node
25554         * @param {Node} node The removed node
25555         */
25556        "remove" : true,
25557        /**
25558         * @event move
25559         * Fires when this node is moved to a new location in the tree
25560         * @param {Tree} tree The owner tree
25561         * @param {Node} this This node
25562         * @param {Node} oldParent The old parent of this node
25563         * @param {Node} newParent The new parent of this node
25564         * @param {Number} index The index it was moved to
25565         */
25566        "move" : true,
25567        /**
25568         * @event insert
25569         * Fires when a new child node is inserted.
25570         * @param {Tree} tree The owner tree
25571         * @param {Node} this This node
25572         * @param {Node} node The child node inserted
25573         * @param {Node} refNode The child node the node was inserted before
25574         */
25575        "insert" : true,
25576        /**
25577         * @event beforeappend
25578         * Fires before a new child is appended, return false to cancel the append.
25579         * @param {Tree} tree The owner tree
25580         * @param {Node} this This node
25581         * @param {Node} node The child node to be appended
25582         */
25583        "beforeappend" : true,
25584        /**
25585         * @event beforeremove
25586         * Fires before a child is removed, return false to cancel the remove.
25587         * @param {Tree} tree The owner tree
25588         * @param {Node} this This node
25589         * @param {Node} node The child node to be removed
25590         */
25591        "beforeremove" : true,
25592        /**
25593         * @event beforemove
25594         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25595         * @param {Tree} tree The owner tree
25596         * @param {Node} this This node
25597         * @param {Node} oldParent The parent of this node
25598         * @param {Node} newParent The new parent this node is moving to
25599         * @param {Number} index The index it is being moved to
25600         */
25601        "beforemove" : true,
25602        /**
25603         * @event beforeinsert
25604         * Fires before a new child is inserted, return false to cancel the insert.
25605         * @param {Tree} tree The owner tree
25606         * @param {Node} this This node
25607         * @param {Node} node The child node to be inserted
25608         * @param {Node} refNode The child node the node is being inserted before
25609         */
25610        "beforeinsert" : true
25611    });
25612     this.listeners = this.attributes.listeners;
25613     Roo.data.Node.superclass.constructor.call(this);
25614 };
25615
25616 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25617     fireEvent : function(evtName){
25618         // first do standard event for this node
25619         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25620             return false;
25621         }
25622         // then bubble it up to the tree if the event wasn't cancelled
25623         var ot = this.getOwnerTree();
25624         if(ot){
25625             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25626                 return false;
25627             }
25628         }
25629         return true;
25630     },
25631
25632     /**
25633      * Returns true if this node is a leaf
25634      * @return {Boolean}
25635      */
25636     isLeaf : function(){
25637         return this.leaf === true;
25638     },
25639
25640     // private
25641     setFirstChild : function(node){
25642         this.firstChild = node;
25643     },
25644
25645     //private
25646     setLastChild : function(node){
25647         this.lastChild = node;
25648     },
25649
25650
25651     /**
25652      * Returns true if this node is the last child of its parent
25653      * @return {Boolean}
25654      */
25655     isLast : function(){
25656        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25657     },
25658
25659     /**
25660      * Returns true if this node is the first child of its parent
25661      * @return {Boolean}
25662      */
25663     isFirst : function(){
25664        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25665     },
25666
25667     hasChildNodes : function(){
25668         return !this.isLeaf() && this.childNodes.length > 0;
25669     },
25670
25671     /**
25672      * Insert node(s) as the last child node of this node.
25673      * @param {Node/Array} node The node or Array of nodes to append
25674      * @return {Node} The appended node if single append, or null if an array was passed
25675      */
25676     appendChild : function(node){
25677         var multi = false;
25678         if(node instanceof Array){
25679             multi = node;
25680         }else if(arguments.length > 1){
25681             multi = arguments;
25682         }
25683         
25684         // if passed an array or multiple args do them one by one
25685         if(multi){
25686             for(var i = 0, len = multi.length; i < len; i++) {
25687                 this.appendChild(multi[i]);
25688             }
25689         }else{
25690             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25691                 return false;
25692             }
25693             var index = this.childNodes.length;
25694             var oldParent = node.parentNode;
25695             // it's a move, make sure we move it cleanly
25696             if(oldParent){
25697                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25698                     return false;
25699                 }
25700                 oldParent.removeChild(node);
25701             }
25702             
25703             index = this.childNodes.length;
25704             if(index == 0){
25705                 this.setFirstChild(node);
25706             }
25707             this.childNodes.push(node);
25708             node.parentNode = this;
25709             var ps = this.childNodes[index-1];
25710             if(ps){
25711                 node.previousSibling = ps;
25712                 ps.nextSibling = node;
25713             }else{
25714                 node.previousSibling = null;
25715             }
25716             node.nextSibling = null;
25717             this.setLastChild(node);
25718             node.setOwnerTree(this.getOwnerTree());
25719             this.fireEvent("append", this.ownerTree, this, node, index);
25720             if(this.ownerTree) {
25721                 this.ownerTree.fireEvent("appendnode", this, node, index);
25722             }
25723             if(oldParent){
25724                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25725             }
25726             return node;
25727         }
25728     },
25729
25730     /**
25731      * Removes a child node from this node.
25732      * @param {Node} node The node to remove
25733      * @return {Node} The removed node
25734      */
25735     removeChild : function(node){
25736         var index = this.childNodes.indexOf(node);
25737         if(index == -1){
25738             return false;
25739         }
25740         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25741             return false;
25742         }
25743
25744         // remove it from childNodes collection
25745         this.childNodes.splice(index, 1);
25746
25747         // update siblings
25748         if(node.previousSibling){
25749             node.previousSibling.nextSibling = node.nextSibling;
25750         }
25751         if(node.nextSibling){
25752             node.nextSibling.previousSibling = node.previousSibling;
25753         }
25754
25755         // update child refs
25756         if(this.firstChild == node){
25757             this.setFirstChild(node.nextSibling);
25758         }
25759         if(this.lastChild == node){
25760             this.setLastChild(node.previousSibling);
25761         }
25762
25763         node.setOwnerTree(null);
25764         // clear any references from the node
25765         node.parentNode = null;
25766         node.previousSibling = null;
25767         node.nextSibling = null;
25768         this.fireEvent("remove", this.ownerTree, this, node);
25769         return node;
25770     },
25771
25772     /**
25773      * Inserts the first node before the second node in this nodes childNodes collection.
25774      * @param {Node} node The node to insert
25775      * @param {Node} refNode The node to insert before (if null the node is appended)
25776      * @return {Node} The inserted node
25777      */
25778     insertBefore : function(node, refNode){
25779         if(!refNode){ // like standard Dom, refNode can be null for append
25780             return this.appendChild(node);
25781         }
25782         // nothing to do
25783         if(node == refNode){
25784             return false;
25785         }
25786
25787         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25788             return false;
25789         }
25790         var index = this.childNodes.indexOf(refNode);
25791         var oldParent = node.parentNode;
25792         var refIndex = index;
25793
25794         // when moving internally, indexes will change after remove
25795         if(oldParent == this && this.childNodes.indexOf(node) < index){
25796             refIndex--;
25797         }
25798
25799         // it's a move, make sure we move it cleanly
25800         if(oldParent){
25801             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25802                 return false;
25803             }
25804             oldParent.removeChild(node);
25805         }
25806         if(refIndex == 0){
25807             this.setFirstChild(node);
25808         }
25809         this.childNodes.splice(refIndex, 0, node);
25810         node.parentNode = this;
25811         var ps = this.childNodes[refIndex-1];
25812         if(ps){
25813             node.previousSibling = ps;
25814             ps.nextSibling = node;
25815         }else{
25816             node.previousSibling = null;
25817         }
25818         node.nextSibling = refNode;
25819         refNode.previousSibling = node;
25820         node.setOwnerTree(this.getOwnerTree());
25821         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25822         if(oldParent){
25823             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25824         }
25825         return node;
25826     },
25827
25828     /**
25829      * Returns the child node at the specified index.
25830      * @param {Number} index
25831      * @return {Node}
25832      */
25833     item : function(index){
25834         return this.childNodes[index];
25835     },
25836
25837     /**
25838      * Replaces one child node in this node with another.
25839      * @param {Node} newChild The replacement node
25840      * @param {Node} oldChild The node to replace
25841      * @return {Node} The replaced node
25842      */
25843     replaceChild : function(newChild, oldChild){
25844         this.insertBefore(newChild, oldChild);
25845         this.removeChild(oldChild);
25846         return oldChild;
25847     },
25848
25849     /**
25850      * Returns the index of a child node
25851      * @param {Node} node
25852      * @return {Number} The index of the node or -1 if it was not found
25853      */
25854     indexOf : function(child){
25855         return this.childNodes.indexOf(child);
25856     },
25857
25858     /**
25859      * Returns the tree this node is in.
25860      * @return {Tree}
25861      */
25862     getOwnerTree : function(){
25863         // if it doesn't have one, look for one
25864         if(!this.ownerTree){
25865             var p = this;
25866             while(p){
25867                 if(p.ownerTree){
25868                     this.ownerTree = p.ownerTree;
25869                     break;
25870                 }
25871                 p = p.parentNode;
25872             }
25873         }
25874         return this.ownerTree;
25875     },
25876
25877     /**
25878      * Returns depth of this node (the root node has a depth of 0)
25879      * @return {Number}
25880      */
25881     getDepth : function(){
25882         var depth = 0;
25883         var p = this;
25884         while(p.parentNode){
25885             ++depth;
25886             p = p.parentNode;
25887         }
25888         return depth;
25889     },
25890
25891     // private
25892     setOwnerTree : function(tree){
25893         // if it's move, we need to update everyone
25894         if(tree != this.ownerTree){
25895             if(this.ownerTree){
25896                 this.ownerTree.unregisterNode(this);
25897             }
25898             this.ownerTree = tree;
25899             var cs = this.childNodes;
25900             for(var i = 0, len = cs.length; i < len; i++) {
25901                 cs[i].setOwnerTree(tree);
25902             }
25903             if(tree){
25904                 tree.registerNode(this);
25905             }
25906         }
25907     },
25908
25909     /**
25910      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25911      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25912      * @return {String} The path
25913      */
25914     getPath : function(attr){
25915         attr = attr || "id";
25916         var p = this.parentNode;
25917         var b = [this.attributes[attr]];
25918         while(p){
25919             b.unshift(p.attributes[attr]);
25920             p = p.parentNode;
25921         }
25922         var sep = this.getOwnerTree().pathSeparator;
25923         return sep + b.join(sep);
25924     },
25925
25926     /**
25927      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25928      * function call will be the scope provided or the current node. The arguments to the function
25929      * will be the args provided or the current node. If the function returns false at any point,
25930      * the bubble is stopped.
25931      * @param {Function} fn The function to call
25932      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25933      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25934      */
25935     bubble : function(fn, scope, args){
25936         var p = this;
25937         while(p){
25938             if(fn.call(scope || p, args || p) === false){
25939                 break;
25940             }
25941             p = p.parentNode;
25942         }
25943     },
25944
25945     /**
25946      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25947      * function call will be the scope provided or the current node. The arguments to the function
25948      * will be the args provided or the current node. If the function returns false at any point,
25949      * the cascade is stopped on that branch.
25950      * @param {Function} fn The function to call
25951      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25952      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25953      */
25954     cascade : function(fn, scope, args){
25955         if(fn.call(scope || this, args || this) !== false){
25956             var cs = this.childNodes;
25957             for(var i = 0, len = cs.length; i < len; i++) {
25958                 cs[i].cascade(fn, scope, args);
25959             }
25960         }
25961     },
25962
25963     /**
25964      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25965      * function call will be the scope provided or the current node. The arguments to the function
25966      * will be the args provided or the current node. If the function returns false at any point,
25967      * the iteration stops.
25968      * @param {Function} fn The function to call
25969      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25970      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25971      */
25972     eachChild : function(fn, scope, args){
25973         var cs = this.childNodes;
25974         for(var i = 0, len = cs.length; i < len; i++) {
25975                 if(fn.call(scope || this, args || cs[i]) === false){
25976                     break;
25977                 }
25978         }
25979     },
25980
25981     /**
25982      * Finds the first child that has the attribute with the specified value.
25983      * @param {String} attribute The attribute name
25984      * @param {Mixed} value The value to search for
25985      * @return {Node} The found child or null if none was found
25986      */
25987     findChild : function(attribute, value){
25988         var cs = this.childNodes;
25989         for(var i = 0, len = cs.length; i < len; i++) {
25990                 if(cs[i].attributes[attribute] == value){
25991                     return cs[i];
25992                 }
25993         }
25994         return null;
25995     },
25996
25997     /**
25998      * Finds the first child by a custom function. The child matches if the function passed
25999      * returns true.
26000      * @param {Function} fn
26001      * @param {Object} scope (optional)
26002      * @return {Node} The found child or null if none was found
26003      */
26004     findChildBy : function(fn, scope){
26005         var cs = this.childNodes;
26006         for(var i = 0, len = cs.length; i < len; i++) {
26007                 if(fn.call(scope||cs[i], cs[i]) === true){
26008                     return cs[i];
26009                 }
26010         }
26011         return null;
26012     },
26013
26014     /**
26015      * Sorts this nodes children using the supplied sort function
26016      * @param {Function} fn
26017      * @param {Object} scope (optional)
26018      */
26019     sort : function(fn, scope){
26020         var cs = this.childNodes;
26021         var len = cs.length;
26022         if(len > 0){
26023             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
26024             cs.sort(sortFn);
26025             for(var i = 0; i < len; i++){
26026                 var n = cs[i];
26027                 n.previousSibling = cs[i-1];
26028                 n.nextSibling = cs[i+1];
26029                 if(i == 0){
26030                     this.setFirstChild(n);
26031                 }
26032                 if(i == len-1){
26033                     this.setLastChild(n);
26034                 }
26035             }
26036         }
26037     },
26038
26039     /**
26040      * Returns true if this node is an ancestor (at any point) of the passed node.
26041      * @param {Node} node
26042      * @return {Boolean}
26043      */
26044     contains : function(node){
26045         return node.isAncestor(this);
26046     },
26047
26048     /**
26049      * Returns true if the passed node is an ancestor (at any point) of this node.
26050      * @param {Node} node
26051      * @return {Boolean}
26052      */
26053     isAncestor : function(node){
26054         var p = this.parentNode;
26055         while(p){
26056             if(p == node){
26057                 return true;
26058             }
26059             p = p.parentNode;
26060         }
26061         return false;
26062     },
26063
26064     toString : function(){
26065         return "[Node"+(this.id?" "+this.id:"")+"]";
26066     }
26067 });/*
26068  * Based on:
26069  * Ext JS Library 1.1.1
26070  * Copyright(c) 2006-2007, Ext JS, LLC.
26071  *
26072  * Originally Released Under LGPL - original licence link has changed is not relivant.
26073  *
26074  * Fork - LGPL
26075  * <script type="text/javascript">
26076  */
26077
26078
26079 /**
26080  * @class Roo.Shadow
26081  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26082  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26083  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26084  * @constructor
26085  * Create a new Shadow
26086  * @param {Object} config The config object
26087  */
26088 Roo.Shadow = function(config){
26089     Roo.apply(this, config);
26090     if(typeof this.mode != "string"){
26091         this.mode = this.defaultMode;
26092     }
26093     var o = this.offset, a = {h: 0};
26094     var rad = Math.floor(this.offset/2);
26095     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26096         case "drop":
26097             a.w = 0;
26098             a.l = a.t = o;
26099             a.t -= 1;
26100             if(Roo.isIE){
26101                 a.l -= this.offset + rad;
26102                 a.t -= this.offset + rad;
26103                 a.w -= rad;
26104                 a.h -= rad;
26105                 a.t += 1;
26106             }
26107         break;
26108         case "sides":
26109             a.w = (o*2);
26110             a.l = -o;
26111             a.t = o-1;
26112             if(Roo.isIE){
26113                 a.l -= (this.offset - rad);
26114                 a.t -= this.offset + rad;
26115                 a.l += 1;
26116                 a.w -= (this.offset - rad)*2;
26117                 a.w -= rad + 1;
26118                 a.h -= 1;
26119             }
26120         break;
26121         case "frame":
26122             a.w = a.h = (o*2);
26123             a.l = a.t = -o;
26124             a.t += 1;
26125             a.h -= 2;
26126             if(Roo.isIE){
26127                 a.l -= (this.offset - rad);
26128                 a.t -= (this.offset - rad);
26129                 a.l += 1;
26130                 a.w -= (this.offset + rad + 1);
26131                 a.h -= (this.offset + rad);
26132                 a.h += 1;
26133             }
26134         break;
26135     };
26136
26137     this.adjusts = a;
26138 };
26139
26140 Roo.Shadow.prototype = {
26141     /**
26142      * @cfg {String} mode
26143      * The shadow display mode.  Supports the following options:<br />
26144      * sides: Shadow displays on both sides and bottom only<br />
26145      * frame: Shadow displays equally on all four sides<br />
26146      * drop: Traditional bottom-right drop shadow (default)
26147      */
26148     /**
26149      * @cfg {String} offset
26150      * The number of pixels to offset the shadow from the element (defaults to 4)
26151      */
26152     offset: 4,
26153
26154     // private
26155     defaultMode: "drop",
26156
26157     /**
26158      * Displays the shadow under the target element
26159      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26160      */
26161     show : function(target){
26162         target = Roo.get(target);
26163         if(!this.el){
26164             this.el = Roo.Shadow.Pool.pull();
26165             if(this.el.dom.nextSibling != target.dom){
26166                 this.el.insertBefore(target);
26167             }
26168         }
26169         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26170         if(Roo.isIE){
26171             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26172         }
26173         this.realign(
26174             target.getLeft(true),
26175             target.getTop(true),
26176             target.getWidth(),
26177             target.getHeight()
26178         );
26179         this.el.dom.style.display = "block";
26180     },
26181
26182     /**
26183      * Returns true if the shadow is visible, else false
26184      */
26185     isVisible : function(){
26186         return this.el ? true : false;  
26187     },
26188
26189     /**
26190      * Direct alignment when values are already available. Show must be called at least once before
26191      * calling this method to ensure it is initialized.
26192      * @param {Number} left The target element left position
26193      * @param {Number} top The target element top position
26194      * @param {Number} width The target element width
26195      * @param {Number} height The target element height
26196      */
26197     realign : function(l, t, w, h){
26198         if(!this.el){
26199             return;
26200         }
26201         var a = this.adjusts, d = this.el.dom, s = d.style;
26202         var iea = 0;
26203         s.left = (l+a.l)+"px";
26204         s.top = (t+a.t)+"px";
26205         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26206  
26207         if(s.width != sws || s.height != shs){
26208             s.width = sws;
26209             s.height = shs;
26210             if(!Roo.isIE){
26211                 var cn = d.childNodes;
26212                 var sww = Math.max(0, (sw-12))+"px";
26213                 cn[0].childNodes[1].style.width = sww;
26214                 cn[1].childNodes[1].style.width = sww;
26215                 cn[2].childNodes[1].style.width = sww;
26216                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26217             }
26218         }
26219     },
26220
26221     /**
26222      * Hides this shadow
26223      */
26224     hide : function(){
26225         if(this.el){
26226             this.el.dom.style.display = "none";
26227             Roo.Shadow.Pool.push(this.el);
26228             delete this.el;
26229         }
26230     },
26231
26232     /**
26233      * Adjust the z-index of this shadow
26234      * @param {Number} zindex The new z-index
26235      */
26236     setZIndex : function(z){
26237         this.zIndex = z;
26238         if(this.el){
26239             this.el.setStyle("z-index", z);
26240         }
26241     }
26242 };
26243
26244 // Private utility class that manages the internal Shadow cache
26245 Roo.Shadow.Pool = function(){
26246     var p = [];
26247     var markup = Roo.isIE ?
26248                  '<div class="x-ie-shadow"></div>' :
26249                  '<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>';
26250     return {
26251         pull : function(){
26252             var sh = p.shift();
26253             if(!sh){
26254                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26255                 sh.autoBoxAdjust = false;
26256             }
26257             return sh;
26258         },
26259
26260         push : function(sh){
26261             p.push(sh);
26262         }
26263     };
26264 }();/*
26265  * Based on:
26266  * Ext JS Library 1.1.1
26267  * Copyright(c) 2006-2007, Ext JS, LLC.
26268  *
26269  * Originally Released Under LGPL - original licence link has changed is not relivant.
26270  *
26271  * Fork - LGPL
26272  * <script type="text/javascript">
26273  */
26274
26275
26276 /**
26277  * @class Roo.SplitBar
26278  * @extends Roo.util.Observable
26279  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26280  * <br><br>
26281  * Usage:
26282  * <pre><code>
26283 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26284                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26285 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26286 split.minSize = 100;
26287 split.maxSize = 600;
26288 split.animate = true;
26289 split.on('moved', splitterMoved);
26290 </code></pre>
26291  * @constructor
26292  * Create a new SplitBar
26293  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26294  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26295  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26296  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26297                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26298                         position of the SplitBar).
26299  */
26300 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26301     
26302     /** @private */
26303     this.el = Roo.get(dragElement, true);
26304     this.el.dom.unselectable = "on";
26305     /** @private */
26306     this.resizingEl = Roo.get(resizingElement, true);
26307
26308     /**
26309      * @private
26310      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26311      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26312      * @type Number
26313      */
26314     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26315     
26316     /**
26317      * The minimum size of the resizing element. (Defaults to 0)
26318      * @type Number
26319      */
26320     this.minSize = 0;
26321     
26322     /**
26323      * The maximum size of the resizing element. (Defaults to 2000)
26324      * @type Number
26325      */
26326     this.maxSize = 2000;
26327     
26328     /**
26329      * Whether to animate the transition to the new size
26330      * @type Boolean
26331      */
26332     this.animate = false;
26333     
26334     /**
26335      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26336      * @type Boolean
26337      */
26338     this.useShim = false;
26339     
26340     /** @private */
26341     this.shim = null;
26342     
26343     if(!existingProxy){
26344         /** @private */
26345         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26346     }else{
26347         this.proxy = Roo.get(existingProxy).dom;
26348     }
26349     /** @private */
26350     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26351     
26352     /** @private */
26353     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26354     
26355     /** @private */
26356     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26357     
26358     /** @private */
26359     this.dragSpecs = {};
26360     
26361     /**
26362      * @private The adapter to use to positon and resize elements
26363      */
26364     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26365     this.adapter.init(this);
26366     
26367     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26368         /** @private */
26369         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26370         this.el.addClass("x-splitbar-h");
26371     }else{
26372         /** @private */
26373         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26374         this.el.addClass("x-splitbar-v");
26375     }
26376     
26377     this.addEvents({
26378         /**
26379          * @event resize
26380          * Fires when the splitter is moved (alias for {@link #event-moved})
26381          * @param {Roo.SplitBar} this
26382          * @param {Number} newSize the new width or height
26383          */
26384         "resize" : true,
26385         /**
26386          * @event moved
26387          * Fires when the splitter is moved
26388          * @param {Roo.SplitBar} this
26389          * @param {Number} newSize the new width or height
26390          */
26391         "moved" : true,
26392         /**
26393          * @event beforeresize
26394          * Fires before the splitter is dragged
26395          * @param {Roo.SplitBar} this
26396          */
26397         "beforeresize" : true,
26398
26399         "beforeapply" : true
26400     });
26401
26402     Roo.util.Observable.call(this);
26403 };
26404
26405 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26406     onStartProxyDrag : function(x, y){
26407         this.fireEvent("beforeresize", this);
26408         if(!this.overlay){
26409             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26410             o.unselectable();
26411             o.enableDisplayMode("block");
26412             // all splitbars share the same overlay
26413             Roo.SplitBar.prototype.overlay = o;
26414         }
26415         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26416         this.overlay.show();
26417         Roo.get(this.proxy).setDisplayed("block");
26418         var size = this.adapter.getElementSize(this);
26419         this.activeMinSize = this.getMinimumSize();;
26420         this.activeMaxSize = this.getMaximumSize();;
26421         var c1 = size - this.activeMinSize;
26422         var c2 = Math.max(this.activeMaxSize - size, 0);
26423         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26424             this.dd.resetConstraints();
26425             this.dd.setXConstraint(
26426                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26427                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26428             );
26429             this.dd.setYConstraint(0, 0);
26430         }else{
26431             this.dd.resetConstraints();
26432             this.dd.setXConstraint(0, 0);
26433             this.dd.setYConstraint(
26434                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26435                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26436             );
26437          }
26438         this.dragSpecs.startSize = size;
26439         this.dragSpecs.startPoint = [x, y];
26440         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26441     },
26442     
26443     /** 
26444      * @private Called after the drag operation by the DDProxy
26445      */
26446     onEndProxyDrag : function(e){
26447         Roo.get(this.proxy).setDisplayed(false);
26448         var endPoint = Roo.lib.Event.getXY(e);
26449         if(this.overlay){
26450             this.overlay.hide();
26451         }
26452         var newSize;
26453         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26454             newSize = this.dragSpecs.startSize + 
26455                 (this.placement == Roo.SplitBar.LEFT ?
26456                     endPoint[0] - this.dragSpecs.startPoint[0] :
26457                     this.dragSpecs.startPoint[0] - endPoint[0]
26458                 );
26459         }else{
26460             newSize = this.dragSpecs.startSize + 
26461                 (this.placement == Roo.SplitBar.TOP ?
26462                     endPoint[1] - this.dragSpecs.startPoint[1] :
26463                     this.dragSpecs.startPoint[1] - endPoint[1]
26464                 );
26465         }
26466         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26467         if(newSize != this.dragSpecs.startSize){
26468             if(this.fireEvent('beforeapply', this, newSize) !== false){
26469                 this.adapter.setElementSize(this, newSize);
26470                 this.fireEvent("moved", this, newSize);
26471                 this.fireEvent("resize", this, newSize);
26472             }
26473         }
26474     },
26475     
26476     /**
26477      * Get the adapter this SplitBar uses
26478      * @return The adapter object
26479      */
26480     getAdapter : function(){
26481         return this.adapter;
26482     },
26483     
26484     /**
26485      * Set the adapter this SplitBar uses
26486      * @param {Object} adapter A SplitBar adapter object
26487      */
26488     setAdapter : function(adapter){
26489         this.adapter = adapter;
26490         this.adapter.init(this);
26491     },
26492     
26493     /**
26494      * Gets the minimum size for the resizing element
26495      * @return {Number} The minimum size
26496      */
26497     getMinimumSize : function(){
26498         return this.minSize;
26499     },
26500     
26501     /**
26502      * Sets the minimum size for the resizing element
26503      * @param {Number} minSize The minimum size
26504      */
26505     setMinimumSize : function(minSize){
26506         this.minSize = minSize;
26507     },
26508     
26509     /**
26510      * Gets the maximum size for the resizing element
26511      * @return {Number} The maximum size
26512      */
26513     getMaximumSize : function(){
26514         return this.maxSize;
26515     },
26516     
26517     /**
26518      * Sets the maximum size for the resizing element
26519      * @param {Number} maxSize The maximum size
26520      */
26521     setMaximumSize : function(maxSize){
26522         this.maxSize = maxSize;
26523     },
26524     
26525     /**
26526      * Sets the initialize size for the resizing element
26527      * @param {Number} size The initial size
26528      */
26529     setCurrentSize : function(size){
26530         var oldAnimate = this.animate;
26531         this.animate = false;
26532         this.adapter.setElementSize(this, size);
26533         this.animate = oldAnimate;
26534     },
26535     
26536     /**
26537      * Destroy this splitbar. 
26538      * @param {Boolean} removeEl True to remove the element
26539      */
26540     destroy : function(removeEl){
26541         if(this.shim){
26542             this.shim.remove();
26543         }
26544         this.dd.unreg();
26545         this.proxy.parentNode.removeChild(this.proxy);
26546         if(removeEl){
26547             this.el.remove();
26548         }
26549     }
26550 });
26551
26552 /**
26553  * @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.
26554  */
26555 Roo.SplitBar.createProxy = function(dir){
26556     var proxy = new Roo.Element(document.createElement("div"));
26557     proxy.unselectable();
26558     var cls = 'x-splitbar-proxy';
26559     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26560     document.body.appendChild(proxy.dom);
26561     return proxy.dom;
26562 };
26563
26564 /** 
26565  * @class Roo.SplitBar.BasicLayoutAdapter
26566  * Default Adapter. It assumes the splitter and resizing element are not positioned
26567  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26568  */
26569 Roo.SplitBar.BasicLayoutAdapter = function(){
26570 };
26571
26572 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26573     // do nothing for now
26574     init : function(s){
26575     
26576     },
26577     /**
26578      * Called before drag operations to get the current size of the resizing element. 
26579      * @param {Roo.SplitBar} s The SplitBar using this adapter
26580      */
26581      getElementSize : function(s){
26582         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26583             return s.resizingEl.getWidth();
26584         }else{
26585             return s.resizingEl.getHeight();
26586         }
26587     },
26588     
26589     /**
26590      * Called after drag operations to set the size of the resizing element.
26591      * @param {Roo.SplitBar} s The SplitBar using this adapter
26592      * @param {Number} newSize The new size to set
26593      * @param {Function} onComplete A function to be invoked when resizing is complete
26594      */
26595     setElementSize : function(s, newSize, onComplete){
26596         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26597             if(!s.animate){
26598                 s.resizingEl.setWidth(newSize);
26599                 if(onComplete){
26600                     onComplete(s, newSize);
26601                 }
26602             }else{
26603                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26604             }
26605         }else{
26606             
26607             if(!s.animate){
26608                 s.resizingEl.setHeight(newSize);
26609                 if(onComplete){
26610                     onComplete(s, newSize);
26611                 }
26612             }else{
26613                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26614             }
26615         }
26616     }
26617 };
26618
26619 /** 
26620  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26621  * @extends Roo.SplitBar.BasicLayoutAdapter
26622  * Adapter that  moves the splitter element to align with the resized sizing element. 
26623  * Used with an absolute positioned SplitBar.
26624  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26625  * document.body, make sure you assign an id to the body element.
26626  */
26627 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26628     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26629     this.container = Roo.get(container);
26630 };
26631
26632 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26633     init : function(s){
26634         this.basic.init(s);
26635     },
26636     
26637     getElementSize : function(s){
26638         return this.basic.getElementSize(s);
26639     },
26640     
26641     setElementSize : function(s, newSize, onComplete){
26642         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26643     },
26644     
26645     moveSplitter : function(s){
26646         var yes = Roo.SplitBar;
26647         switch(s.placement){
26648             case yes.LEFT:
26649                 s.el.setX(s.resizingEl.getRight());
26650                 break;
26651             case yes.RIGHT:
26652                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26653                 break;
26654             case yes.TOP:
26655                 s.el.setY(s.resizingEl.getBottom());
26656                 break;
26657             case yes.BOTTOM:
26658                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26659                 break;
26660         }
26661     }
26662 };
26663
26664 /**
26665  * Orientation constant - Create a vertical SplitBar
26666  * @static
26667  * @type Number
26668  */
26669 Roo.SplitBar.VERTICAL = 1;
26670
26671 /**
26672  * Orientation constant - Create a horizontal SplitBar
26673  * @static
26674  * @type Number
26675  */
26676 Roo.SplitBar.HORIZONTAL = 2;
26677
26678 /**
26679  * Placement constant - The resizing element is to the left of the splitter element
26680  * @static
26681  * @type Number
26682  */
26683 Roo.SplitBar.LEFT = 1;
26684
26685 /**
26686  * Placement constant - The resizing element is to the right of the splitter element
26687  * @static
26688  * @type Number
26689  */
26690 Roo.SplitBar.RIGHT = 2;
26691
26692 /**
26693  * Placement constant - The resizing element is positioned above the splitter element
26694  * @static
26695  * @type Number
26696  */
26697 Roo.SplitBar.TOP = 3;
26698
26699 /**
26700  * Placement constant - The resizing element is positioned under splitter element
26701  * @static
26702  * @type Number
26703  */
26704 Roo.SplitBar.BOTTOM = 4;
26705 /*
26706  * Based on:
26707  * Ext JS Library 1.1.1
26708  * Copyright(c) 2006-2007, Ext JS, LLC.
26709  *
26710  * Originally Released Under LGPL - original licence link has changed is not relivant.
26711  *
26712  * Fork - LGPL
26713  * <script type="text/javascript">
26714  */
26715
26716 /**
26717  * @class Roo.View
26718  * @extends Roo.util.Observable
26719  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26720  * This class also supports single and multi selection modes. <br>
26721  * Create a data model bound view:
26722  <pre><code>
26723  var store = new Roo.data.Store(...);
26724
26725  var view = new Roo.View({
26726     el : "my-element",
26727     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26728  
26729     singleSelect: true,
26730     selectedClass: "ydataview-selected",
26731     store: store
26732  });
26733
26734  // listen for node click?
26735  view.on("click", function(vw, index, node, e){
26736  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26737  });
26738
26739  // load XML data
26740  dataModel.load("foobar.xml");
26741  </code></pre>
26742  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26743  * <br><br>
26744  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26745  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26746  * 
26747  * Note: old style constructor is still suported (container, template, config)
26748  * 
26749  * @constructor
26750  * Create a new View
26751  * @param {Object} config The config object
26752  * 
26753  */
26754 Roo.View = function(config, depreciated_tpl, depreciated_config){
26755     
26756     this.parent = false;
26757     
26758     if (typeof(depreciated_tpl) == 'undefined') {
26759         // new way.. - universal constructor.
26760         Roo.apply(this, config);
26761         this.el  = Roo.get(this.el);
26762     } else {
26763         // old format..
26764         this.el  = Roo.get(config);
26765         this.tpl = depreciated_tpl;
26766         Roo.apply(this, depreciated_config);
26767     }
26768     this.wrapEl  = this.el.wrap().wrap();
26769     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26770     
26771     
26772     if(typeof(this.tpl) == "string"){
26773         this.tpl = new Roo.Template(this.tpl);
26774     } else {
26775         // support xtype ctors..
26776         this.tpl = new Roo.factory(this.tpl, Roo);
26777     }
26778     
26779     
26780     this.tpl.compile();
26781     
26782     /** @private */
26783     this.addEvents({
26784         /**
26785          * @event beforeclick
26786          * Fires before a click is processed. Returns false to cancel the default action.
26787          * @param {Roo.View} this
26788          * @param {Number} index The index of the target node
26789          * @param {HTMLElement} node The target node
26790          * @param {Roo.EventObject} e The raw event object
26791          */
26792             "beforeclick" : true,
26793         /**
26794          * @event click
26795          * Fires when a template node is clicked.
26796          * @param {Roo.View} this
26797          * @param {Number} index The index of the target node
26798          * @param {HTMLElement} node The target node
26799          * @param {Roo.EventObject} e The raw event object
26800          */
26801             "click" : true,
26802         /**
26803          * @event dblclick
26804          * Fires when a template node is double clicked.
26805          * @param {Roo.View} this
26806          * @param {Number} index The index of the target node
26807          * @param {HTMLElement} node The target node
26808          * @param {Roo.EventObject} e The raw event object
26809          */
26810             "dblclick" : true,
26811         /**
26812          * @event contextmenu
26813          * Fires when a template node is right clicked.
26814          * @param {Roo.View} this
26815          * @param {Number} index The index of the target node
26816          * @param {HTMLElement} node The target node
26817          * @param {Roo.EventObject} e The raw event object
26818          */
26819             "contextmenu" : true,
26820         /**
26821          * @event selectionchange
26822          * Fires when the selected nodes change.
26823          * @param {Roo.View} this
26824          * @param {Array} selections Array of the selected nodes
26825          */
26826             "selectionchange" : true,
26827     
26828         /**
26829          * @event beforeselect
26830          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26831          * @param {Roo.View} this
26832          * @param {HTMLElement} node The node to be selected
26833          * @param {Array} selections Array of currently selected nodes
26834          */
26835             "beforeselect" : true,
26836         /**
26837          * @event preparedata
26838          * Fires on every row to render, to allow you to change the data.
26839          * @param {Roo.View} this
26840          * @param {Object} data to be rendered (change this)
26841          */
26842           "preparedata" : true
26843           
26844           
26845         });
26846
26847
26848
26849     this.el.on({
26850         "click": this.onClick,
26851         "dblclick": this.onDblClick,
26852         "contextmenu": this.onContextMenu,
26853         scope:this
26854     });
26855
26856     this.selections = [];
26857     this.nodes = [];
26858     this.cmp = new Roo.CompositeElementLite([]);
26859     if(this.store){
26860         this.store = Roo.factory(this.store, Roo.data);
26861         this.setStore(this.store, true);
26862     }
26863     
26864     if ( this.footer && this.footer.xtype) {
26865            
26866          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26867         
26868         this.footer.dataSource = this.store;
26869         this.footer.container = fctr;
26870         this.footer = Roo.factory(this.footer, Roo);
26871         fctr.insertFirst(this.el);
26872         
26873         // this is a bit insane - as the paging toolbar seems to detach the el..
26874 //        dom.parentNode.parentNode.parentNode
26875          // they get detached?
26876     }
26877     
26878     
26879     Roo.View.superclass.constructor.call(this);
26880     
26881     
26882 };
26883
26884 Roo.extend(Roo.View, Roo.util.Observable, {
26885     
26886      /**
26887      * @cfg {Roo.data.Store} store Data store to load data from.
26888      */
26889     store : false,
26890     
26891     /**
26892      * @cfg {String|Roo.Element} el The container element.
26893      */
26894     el : '',
26895     
26896     /**
26897      * @cfg {String|Roo.Template} tpl The template used by this View 
26898      */
26899     tpl : false,
26900     /**
26901      * @cfg {String} dataName the named area of the template to use as the data area
26902      *                          Works with domtemplates roo-name="name"
26903      */
26904     dataName: false,
26905     /**
26906      * @cfg {String} selectedClass The css class to add to selected nodes
26907      */
26908     selectedClass : "x-view-selected",
26909      /**
26910      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26911      */
26912     emptyText : "",
26913     
26914     /**
26915      * @cfg {String} text to display on mask (default Loading)
26916      */
26917     mask : false,
26918     /**
26919      * @cfg {Boolean} multiSelect Allow multiple selection
26920      */
26921     multiSelect : false,
26922     /**
26923      * @cfg {Boolean} singleSelect Allow single selection
26924      */
26925     singleSelect:  false,
26926     
26927     /**
26928      * @cfg {Boolean} toggleSelect - selecting 
26929      */
26930     toggleSelect : false,
26931     
26932     /**
26933      * @cfg {Boolean} tickable - selecting 
26934      */
26935     tickable : false,
26936     
26937     /**
26938      * Returns the element this view is bound to.
26939      * @return {Roo.Element}
26940      */
26941     getEl : function(){
26942         return this.wrapEl;
26943     },
26944     
26945     
26946
26947     /**
26948      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26949      */
26950     refresh : function(){
26951         //Roo.log('refresh');
26952         var t = this.tpl;
26953         
26954         // if we are using something like 'domtemplate', then
26955         // the what gets used is:
26956         // t.applySubtemplate(NAME, data, wrapping data..)
26957         // the outer template then get' applied with
26958         //     the store 'extra data'
26959         // and the body get's added to the
26960         //      roo-name="data" node?
26961         //      <span class='roo-tpl-{name}'></span> ?????
26962         
26963         
26964         
26965         this.clearSelections();
26966         this.el.update("");
26967         var html = [];
26968         var records = this.store.getRange();
26969         if(records.length < 1) {
26970             
26971             // is this valid??  = should it render a template??
26972             
26973             this.el.update(this.emptyText);
26974             return;
26975         }
26976         var el = this.el;
26977         if (this.dataName) {
26978             this.el.update(t.apply(this.store.meta)); //????
26979             el = this.el.child('.roo-tpl-' + this.dataName);
26980         }
26981         
26982         for(var i = 0, len = records.length; i < len; i++){
26983             var data = this.prepareData(records[i].data, i, records[i]);
26984             this.fireEvent("preparedata", this, data, i, records[i]);
26985             
26986             var d = Roo.apply({}, data);
26987             
26988             if(this.tickable){
26989                 Roo.apply(d, {'roo-id' : Roo.id()});
26990                 
26991                 var _this = this;
26992             
26993                 Roo.each(this.parent.item, function(item){
26994                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26995                         return;
26996                     }
26997                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26998                 });
26999             }
27000             
27001             html[html.length] = Roo.util.Format.trim(
27002                 this.dataName ?
27003                     t.applySubtemplate(this.dataName, d, this.store.meta) :
27004                     t.apply(d)
27005             );
27006         }
27007         
27008         
27009         
27010         el.update(html.join(""));
27011         this.nodes = el.dom.childNodes;
27012         this.updateIndexes(0);
27013     },
27014     
27015
27016     /**
27017      * Function to override to reformat the data that is sent to
27018      * the template for each node.
27019      * DEPRICATED - use the preparedata event handler.
27020      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
27021      * a JSON object for an UpdateManager bound view).
27022      */
27023     prepareData : function(data, index, record)
27024     {
27025         this.fireEvent("preparedata", this, data, index, record);
27026         return data;
27027     },
27028
27029     onUpdate : function(ds, record){
27030         // Roo.log('on update');   
27031         this.clearSelections();
27032         var index = this.store.indexOf(record);
27033         var n = this.nodes[index];
27034         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
27035         n.parentNode.removeChild(n);
27036         this.updateIndexes(index, index);
27037     },
27038
27039     
27040     
27041 // --------- FIXME     
27042     onAdd : function(ds, records, index)
27043     {
27044         //Roo.log(['on Add', ds, records, index] );        
27045         this.clearSelections();
27046         if(this.nodes.length == 0){
27047             this.refresh();
27048             return;
27049         }
27050         var n = this.nodes[index];
27051         for(var i = 0, len = records.length; i < len; i++){
27052             var d = this.prepareData(records[i].data, i, records[i]);
27053             if(n){
27054                 this.tpl.insertBefore(n, d);
27055             }else{
27056                 
27057                 this.tpl.append(this.el, d);
27058             }
27059         }
27060         this.updateIndexes(index);
27061     },
27062
27063     onRemove : function(ds, record, index){
27064        // Roo.log('onRemove');
27065         this.clearSelections();
27066         var el = this.dataName  ?
27067             this.el.child('.roo-tpl-' + this.dataName) :
27068             this.el; 
27069         
27070         el.dom.removeChild(this.nodes[index]);
27071         this.updateIndexes(index);
27072     },
27073
27074     /**
27075      * Refresh an individual node.
27076      * @param {Number} index
27077      */
27078     refreshNode : function(index){
27079         this.onUpdate(this.store, this.store.getAt(index));
27080     },
27081
27082     updateIndexes : function(startIndex, endIndex){
27083         var ns = this.nodes;
27084         startIndex = startIndex || 0;
27085         endIndex = endIndex || ns.length - 1;
27086         for(var i = startIndex; i <= endIndex; i++){
27087             ns[i].nodeIndex = i;
27088         }
27089     },
27090
27091     /**
27092      * Changes the data store this view uses and refresh the view.
27093      * @param {Store} store
27094      */
27095     setStore : function(store, initial){
27096         if(!initial && this.store){
27097             this.store.un("datachanged", this.refresh);
27098             this.store.un("add", this.onAdd);
27099             this.store.un("remove", this.onRemove);
27100             this.store.un("update", this.onUpdate);
27101             this.store.un("clear", this.refresh);
27102             this.store.un("beforeload", this.onBeforeLoad);
27103             this.store.un("load", this.onLoad);
27104             this.store.un("loadexception", this.onLoad);
27105         }
27106         if(store){
27107           
27108             store.on("datachanged", this.refresh, this);
27109             store.on("add", this.onAdd, this);
27110             store.on("remove", this.onRemove, this);
27111             store.on("update", this.onUpdate, this);
27112             store.on("clear", this.refresh, this);
27113             store.on("beforeload", this.onBeforeLoad, this);
27114             store.on("load", this.onLoad, this);
27115             store.on("loadexception", this.onLoad, this);
27116         }
27117         
27118         if(store){
27119             this.refresh();
27120         }
27121     },
27122     /**
27123      * onbeforeLoad - masks the loading area.
27124      *
27125      */
27126     onBeforeLoad : function(store,opts)
27127     {
27128          //Roo.log('onBeforeLoad');   
27129         if (!opts.add) {
27130             this.el.update("");
27131         }
27132         this.el.mask(this.mask ? this.mask : "Loading" ); 
27133     },
27134     onLoad : function ()
27135     {
27136         this.el.unmask();
27137     },
27138     
27139
27140     /**
27141      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27142      * @param {HTMLElement} node
27143      * @return {HTMLElement} The template node
27144      */
27145     findItemFromChild : function(node){
27146         var el = this.dataName  ?
27147             this.el.child('.roo-tpl-' + this.dataName,true) :
27148             this.el.dom; 
27149         
27150         if(!node || node.parentNode == el){
27151                     return node;
27152             }
27153             var p = node.parentNode;
27154             while(p && p != el){
27155             if(p.parentNode == el){
27156                 return p;
27157             }
27158             p = p.parentNode;
27159         }
27160             return null;
27161     },
27162
27163     /** @ignore */
27164     onClick : function(e){
27165         var item = this.findItemFromChild(e.getTarget());
27166         if(item){
27167             var index = this.indexOf(item);
27168             if(this.onItemClick(item, index, e) !== false){
27169                 this.fireEvent("click", this, index, item, e);
27170             }
27171         }else{
27172             this.clearSelections();
27173         }
27174     },
27175
27176     /** @ignore */
27177     onContextMenu : function(e){
27178         var item = this.findItemFromChild(e.getTarget());
27179         if(item){
27180             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27181         }
27182     },
27183
27184     /** @ignore */
27185     onDblClick : function(e){
27186         var item = this.findItemFromChild(e.getTarget());
27187         if(item){
27188             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27189         }
27190     },
27191
27192     onItemClick : function(item, index, e)
27193     {
27194         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27195             return false;
27196         }
27197         if (this.toggleSelect) {
27198             var m = this.isSelected(item) ? 'unselect' : 'select';
27199             //Roo.log(m);
27200             var _t = this;
27201             _t[m](item, true, false);
27202             return true;
27203         }
27204         if(this.multiSelect || this.singleSelect){
27205             if(this.multiSelect && e.shiftKey && this.lastSelection){
27206                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27207             }else{
27208                 this.select(item, this.multiSelect && e.ctrlKey);
27209                 this.lastSelection = item;
27210             }
27211             
27212             if(!this.tickable){
27213                 e.preventDefault();
27214             }
27215             
27216         }
27217         return true;
27218     },
27219
27220     /**
27221      * Get the number of selected nodes.
27222      * @return {Number}
27223      */
27224     getSelectionCount : function(){
27225         return this.selections.length;
27226     },
27227
27228     /**
27229      * Get the currently selected nodes.
27230      * @return {Array} An array of HTMLElements
27231      */
27232     getSelectedNodes : function(){
27233         return this.selections;
27234     },
27235
27236     /**
27237      * Get the indexes of the selected nodes.
27238      * @return {Array}
27239      */
27240     getSelectedIndexes : function(){
27241         var indexes = [], s = this.selections;
27242         for(var i = 0, len = s.length; i < len; i++){
27243             indexes.push(s[i].nodeIndex);
27244         }
27245         return indexes;
27246     },
27247
27248     /**
27249      * Clear all selections
27250      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27251      */
27252     clearSelections : function(suppressEvent){
27253         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27254             this.cmp.elements = this.selections;
27255             this.cmp.removeClass(this.selectedClass);
27256             this.selections = [];
27257             if(!suppressEvent){
27258                 this.fireEvent("selectionchange", this, this.selections);
27259             }
27260         }
27261     },
27262
27263     /**
27264      * Returns true if the passed node is selected
27265      * @param {HTMLElement/Number} node The node or node index
27266      * @return {Boolean}
27267      */
27268     isSelected : function(node){
27269         var s = this.selections;
27270         if(s.length < 1){
27271             return false;
27272         }
27273         node = this.getNode(node);
27274         return s.indexOf(node) !== -1;
27275     },
27276
27277     /**
27278      * Selects nodes.
27279      * @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
27280      * @param {Boolean} keepExisting (optional) true to keep existing selections
27281      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27282      */
27283     select : function(nodeInfo, keepExisting, suppressEvent){
27284         if(nodeInfo instanceof Array){
27285             if(!keepExisting){
27286                 this.clearSelections(true);
27287             }
27288             for(var i = 0, len = nodeInfo.length; i < len; i++){
27289                 this.select(nodeInfo[i], true, true);
27290             }
27291             return;
27292         } 
27293         var node = this.getNode(nodeInfo);
27294         if(!node || this.isSelected(node)){
27295             return; // already selected.
27296         }
27297         if(!keepExisting){
27298             this.clearSelections(true);
27299         }
27300         
27301         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27302             Roo.fly(node).addClass(this.selectedClass);
27303             this.selections.push(node);
27304             if(!suppressEvent){
27305                 this.fireEvent("selectionchange", this, this.selections);
27306             }
27307         }
27308         
27309         
27310     },
27311       /**
27312      * Unselects nodes.
27313      * @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
27314      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27315      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27316      */
27317     unselect : function(nodeInfo, keepExisting, suppressEvent)
27318     {
27319         if(nodeInfo instanceof Array){
27320             Roo.each(this.selections, function(s) {
27321                 this.unselect(s, nodeInfo);
27322             }, this);
27323             return;
27324         }
27325         var node = this.getNode(nodeInfo);
27326         if(!node || !this.isSelected(node)){
27327             //Roo.log("not selected");
27328             return; // not selected.
27329         }
27330         // fireevent???
27331         var ns = [];
27332         Roo.each(this.selections, function(s) {
27333             if (s == node ) {
27334                 Roo.fly(node).removeClass(this.selectedClass);
27335
27336                 return;
27337             }
27338             ns.push(s);
27339         },this);
27340         
27341         this.selections= ns;
27342         this.fireEvent("selectionchange", this, this.selections);
27343     },
27344
27345     /**
27346      * Gets a template node.
27347      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27348      * @return {HTMLElement} The node or null if it wasn't found
27349      */
27350     getNode : function(nodeInfo){
27351         if(typeof nodeInfo == "string"){
27352             return document.getElementById(nodeInfo);
27353         }else if(typeof nodeInfo == "number"){
27354             return this.nodes[nodeInfo];
27355         }
27356         return nodeInfo;
27357     },
27358
27359     /**
27360      * Gets a range template nodes.
27361      * @param {Number} startIndex
27362      * @param {Number} endIndex
27363      * @return {Array} An array of nodes
27364      */
27365     getNodes : function(start, end){
27366         var ns = this.nodes;
27367         start = start || 0;
27368         end = typeof end == "undefined" ? ns.length - 1 : end;
27369         var nodes = [];
27370         if(start <= end){
27371             for(var i = start; i <= end; i++){
27372                 nodes.push(ns[i]);
27373             }
27374         } else{
27375             for(var i = start; i >= end; i--){
27376                 nodes.push(ns[i]);
27377             }
27378         }
27379         return nodes;
27380     },
27381
27382     /**
27383      * Finds the index of the passed node
27384      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27385      * @return {Number} The index of the node or -1
27386      */
27387     indexOf : function(node){
27388         node = this.getNode(node);
27389         if(typeof node.nodeIndex == "number"){
27390             return node.nodeIndex;
27391         }
27392         var ns = this.nodes;
27393         for(var i = 0, len = ns.length; i < len; i++){
27394             if(ns[i] == node){
27395                 return i;
27396             }
27397         }
27398         return -1;
27399     }
27400 });
27401 /*
27402  * Based on:
27403  * Ext JS Library 1.1.1
27404  * Copyright(c) 2006-2007, Ext JS, LLC.
27405  *
27406  * Originally Released Under LGPL - original licence link has changed is not relivant.
27407  *
27408  * Fork - LGPL
27409  * <script type="text/javascript">
27410  */
27411
27412 /**
27413  * @class Roo.JsonView
27414  * @extends Roo.View
27415  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27416 <pre><code>
27417 var view = new Roo.JsonView({
27418     container: "my-element",
27419     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27420     multiSelect: true, 
27421     jsonRoot: "data" 
27422 });
27423
27424 // listen for node click?
27425 view.on("click", function(vw, index, node, e){
27426     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27427 });
27428
27429 // direct load of JSON data
27430 view.load("foobar.php");
27431
27432 // Example from my blog list
27433 var tpl = new Roo.Template(
27434     '&lt;div class="entry"&gt;' +
27435     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27436     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27437     "&lt;/div&gt;&lt;hr /&gt;"
27438 );
27439
27440 var moreView = new Roo.JsonView({
27441     container :  "entry-list", 
27442     template : tpl,
27443     jsonRoot: "posts"
27444 });
27445 moreView.on("beforerender", this.sortEntries, this);
27446 moreView.load({
27447     url: "/blog/get-posts.php",
27448     params: "allposts=true",
27449     text: "Loading Blog Entries..."
27450 });
27451 </code></pre>
27452
27453 * Note: old code is supported with arguments : (container, template, config)
27454
27455
27456  * @constructor
27457  * Create a new JsonView
27458  * 
27459  * @param {Object} config The config object
27460  * 
27461  */
27462 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27463     
27464     
27465     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27466
27467     var um = this.el.getUpdateManager();
27468     um.setRenderer(this);
27469     um.on("update", this.onLoad, this);
27470     um.on("failure", this.onLoadException, this);
27471
27472     /**
27473      * @event beforerender
27474      * Fires before rendering of the downloaded JSON data.
27475      * @param {Roo.JsonView} this
27476      * @param {Object} data The JSON data loaded
27477      */
27478     /**
27479      * @event load
27480      * Fires when data is loaded.
27481      * @param {Roo.JsonView} this
27482      * @param {Object} data The JSON data loaded
27483      * @param {Object} response The raw Connect response object
27484      */
27485     /**
27486      * @event loadexception
27487      * Fires when loading fails.
27488      * @param {Roo.JsonView} this
27489      * @param {Object} response The raw Connect response object
27490      */
27491     this.addEvents({
27492         'beforerender' : true,
27493         'load' : true,
27494         'loadexception' : true
27495     });
27496 };
27497 Roo.extend(Roo.JsonView, Roo.View, {
27498     /**
27499      * @type {String} The root property in the loaded JSON object that contains the data
27500      */
27501     jsonRoot : "",
27502
27503     /**
27504      * Refreshes the view.
27505      */
27506     refresh : function(){
27507         this.clearSelections();
27508         this.el.update("");
27509         var html = [];
27510         var o = this.jsonData;
27511         if(o && o.length > 0){
27512             for(var i = 0, len = o.length; i < len; i++){
27513                 var data = this.prepareData(o[i], i, o);
27514                 html[html.length] = this.tpl.apply(data);
27515             }
27516         }else{
27517             html.push(this.emptyText);
27518         }
27519         this.el.update(html.join(""));
27520         this.nodes = this.el.dom.childNodes;
27521         this.updateIndexes(0);
27522     },
27523
27524     /**
27525      * 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.
27526      * @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:
27527      <pre><code>
27528      view.load({
27529          url: "your-url.php",
27530          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27531          callback: yourFunction,
27532          scope: yourObject, //(optional scope)
27533          discardUrl: false,
27534          nocache: false,
27535          text: "Loading...",
27536          timeout: 30,
27537          scripts: false
27538      });
27539      </code></pre>
27540      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27541      * 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.
27542      * @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}
27543      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27544      * @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.
27545      */
27546     load : function(){
27547         var um = this.el.getUpdateManager();
27548         um.update.apply(um, arguments);
27549     },
27550
27551     // note - render is a standard framework call...
27552     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27553     render : function(el, response){
27554         
27555         this.clearSelections();
27556         this.el.update("");
27557         var o;
27558         try{
27559             if (response != '') {
27560                 o = Roo.util.JSON.decode(response.responseText);
27561                 if(this.jsonRoot){
27562                     
27563                     o = o[this.jsonRoot];
27564                 }
27565             }
27566         } catch(e){
27567         }
27568         /**
27569          * The current JSON data or null
27570          */
27571         this.jsonData = o;
27572         this.beforeRender();
27573         this.refresh();
27574     },
27575
27576 /**
27577  * Get the number of records in the current JSON dataset
27578  * @return {Number}
27579  */
27580     getCount : function(){
27581         return this.jsonData ? this.jsonData.length : 0;
27582     },
27583
27584 /**
27585  * Returns the JSON object for the specified node(s)
27586  * @param {HTMLElement/Array} node The node or an array of nodes
27587  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27588  * you get the JSON object for the node
27589  */
27590     getNodeData : function(node){
27591         if(node instanceof Array){
27592             var data = [];
27593             for(var i = 0, len = node.length; i < len; i++){
27594                 data.push(this.getNodeData(node[i]));
27595             }
27596             return data;
27597         }
27598         return this.jsonData[this.indexOf(node)] || null;
27599     },
27600
27601     beforeRender : function(){
27602         this.snapshot = this.jsonData;
27603         if(this.sortInfo){
27604             this.sort.apply(this, this.sortInfo);
27605         }
27606         this.fireEvent("beforerender", this, this.jsonData);
27607     },
27608
27609     onLoad : function(el, o){
27610         this.fireEvent("load", this, this.jsonData, o);
27611     },
27612
27613     onLoadException : function(el, o){
27614         this.fireEvent("loadexception", this, o);
27615     },
27616
27617 /**
27618  * Filter the data by a specific property.
27619  * @param {String} property A property on your JSON objects
27620  * @param {String/RegExp} value Either string that the property values
27621  * should start with, or a RegExp to test against the property
27622  */
27623     filter : function(property, value){
27624         if(this.jsonData){
27625             var data = [];
27626             var ss = this.snapshot;
27627             if(typeof value == "string"){
27628                 var vlen = value.length;
27629                 if(vlen == 0){
27630                     this.clearFilter();
27631                     return;
27632                 }
27633                 value = value.toLowerCase();
27634                 for(var i = 0, len = ss.length; i < len; i++){
27635                     var o = ss[i];
27636                     if(o[property].substr(0, vlen).toLowerCase() == value){
27637                         data.push(o);
27638                     }
27639                 }
27640             } else if(value.exec){ // regex?
27641                 for(var i = 0, len = ss.length; i < len; i++){
27642                     var o = ss[i];
27643                     if(value.test(o[property])){
27644                         data.push(o);
27645                     }
27646                 }
27647             } else{
27648                 return;
27649             }
27650             this.jsonData = data;
27651             this.refresh();
27652         }
27653     },
27654
27655 /**
27656  * Filter by a function. The passed function will be called with each
27657  * object in the current dataset. If the function returns true the value is kept,
27658  * otherwise it is filtered.
27659  * @param {Function} fn
27660  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27661  */
27662     filterBy : function(fn, scope){
27663         if(this.jsonData){
27664             var data = [];
27665             var ss = this.snapshot;
27666             for(var i = 0, len = ss.length; i < len; i++){
27667                 var o = ss[i];
27668                 if(fn.call(scope || this, o)){
27669                     data.push(o);
27670                 }
27671             }
27672             this.jsonData = data;
27673             this.refresh();
27674         }
27675     },
27676
27677 /**
27678  * Clears the current filter.
27679  */
27680     clearFilter : function(){
27681         if(this.snapshot && this.jsonData != this.snapshot){
27682             this.jsonData = this.snapshot;
27683             this.refresh();
27684         }
27685     },
27686
27687
27688 /**
27689  * Sorts the data for this view and refreshes it.
27690  * @param {String} property A property on your JSON objects to sort on
27691  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27692  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27693  */
27694     sort : function(property, dir, sortType){
27695         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27696         if(this.jsonData){
27697             var p = property;
27698             var dsc = dir && dir.toLowerCase() == "desc";
27699             var f = function(o1, o2){
27700                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27701                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27702                 ;
27703                 if(v1 < v2){
27704                     return dsc ? +1 : -1;
27705                 } else if(v1 > v2){
27706                     return dsc ? -1 : +1;
27707                 } else{
27708                     return 0;
27709                 }
27710             };
27711             this.jsonData.sort(f);
27712             this.refresh();
27713             if(this.jsonData != this.snapshot){
27714                 this.snapshot.sort(f);
27715             }
27716         }
27717     }
27718 });/*
27719  * Based on:
27720  * Ext JS Library 1.1.1
27721  * Copyright(c) 2006-2007, Ext JS, LLC.
27722  *
27723  * Originally Released Under LGPL - original licence link has changed is not relivant.
27724  *
27725  * Fork - LGPL
27726  * <script type="text/javascript">
27727  */
27728  
27729
27730 /**
27731  * @class Roo.ColorPalette
27732  * @extends Roo.Component
27733  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27734  * Here's an example of typical usage:
27735  * <pre><code>
27736 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27737 cp.render('my-div');
27738
27739 cp.on('select', function(palette, selColor){
27740     // do something with selColor
27741 });
27742 </code></pre>
27743  * @constructor
27744  * Create a new ColorPalette
27745  * @param {Object} config The config object
27746  */
27747 Roo.ColorPalette = function(config){
27748     Roo.ColorPalette.superclass.constructor.call(this, config);
27749     this.addEvents({
27750         /**
27751              * @event select
27752              * Fires when a color is selected
27753              * @param {ColorPalette} this
27754              * @param {String} color The 6-digit color hex code (without the # symbol)
27755              */
27756         select: true
27757     });
27758
27759     if(this.handler){
27760         this.on("select", this.handler, this.scope, true);
27761     }
27762 };
27763 Roo.extend(Roo.ColorPalette, Roo.Component, {
27764     /**
27765      * @cfg {String} itemCls
27766      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27767      */
27768     itemCls : "x-color-palette",
27769     /**
27770      * @cfg {String} value
27771      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27772      * the hex codes are case-sensitive.
27773      */
27774     value : null,
27775     clickEvent:'click',
27776     // private
27777     ctype: "Roo.ColorPalette",
27778
27779     /**
27780      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27781      */
27782     allowReselect : false,
27783
27784     /**
27785      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27786      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27787      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27788      * of colors with the width setting until the box is symmetrical.</p>
27789      * <p>You can override individual colors if needed:</p>
27790      * <pre><code>
27791 var cp = new Roo.ColorPalette();
27792 cp.colors[0] = "FF0000";  // change the first box to red
27793 </code></pre>
27794
27795 Or you can provide a custom array of your own for complete control:
27796 <pre><code>
27797 var cp = new Roo.ColorPalette();
27798 cp.colors = ["000000", "993300", "333300"];
27799 </code></pre>
27800      * @type Array
27801      */
27802     colors : [
27803         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27804         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27805         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27806         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27807         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27808     ],
27809
27810     // private
27811     onRender : function(container, position){
27812         var t = new Roo.MasterTemplate(
27813             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27814         );
27815         var c = this.colors;
27816         for(var i = 0, len = c.length; i < len; i++){
27817             t.add([c[i]]);
27818         }
27819         var el = document.createElement("div");
27820         el.className = this.itemCls;
27821         t.overwrite(el);
27822         container.dom.insertBefore(el, position);
27823         this.el = Roo.get(el);
27824         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27825         if(this.clickEvent != 'click'){
27826             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27827         }
27828     },
27829
27830     // private
27831     afterRender : function(){
27832         Roo.ColorPalette.superclass.afterRender.call(this);
27833         if(this.value){
27834             var s = this.value;
27835             this.value = null;
27836             this.select(s);
27837         }
27838     },
27839
27840     // private
27841     handleClick : function(e, t){
27842         e.preventDefault();
27843         if(!this.disabled){
27844             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27845             this.select(c.toUpperCase());
27846         }
27847     },
27848
27849     /**
27850      * Selects the specified color in the palette (fires the select event)
27851      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27852      */
27853     select : function(color){
27854         color = color.replace("#", "");
27855         if(color != this.value || this.allowReselect){
27856             var el = this.el;
27857             if(this.value){
27858                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27859             }
27860             el.child("a.color-"+color).addClass("x-color-palette-sel");
27861             this.value = color;
27862             this.fireEvent("select", this, color);
27863         }
27864     }
27865 });/*
27866  * Based on:
27867  * Ext JS Library 1.1.1
27868  * Copyright(c) 2006-2007, Ext JS, LLC.
27869  *
27870  * Originally Released Under LGPL - original licence link has changed is not relivant.
27871  *
27872  * Fork - LGPL
27873  * <script type="text/javascript">
27874  */
27875  
27876 /**
27877  * @class Roo.DatePicker
27878  * @extends Roo.Component
27879  * Simple date picker class.
27880  * @constructor
27881  * Create a new DatePicker
27882  * @param {Object} config The config object
27883  */
27884 Roo.DatePicker = function(config){
27885     Roo.DatePicker.superclass.constructor.call(this, config);
27886
27887     this.value = config && config.value ?
27888                  config.value.clearTime() : new Date().clearTime();
27889
27890     this.addEvents({
27891         /**
27892              * @event select
27893              * Fires when a date is selected
27894              * @param {DatePicker} this
27895              * @param {Date} date The selected date
27896              */
27897         'select': true,
27898         /**
27899              * @event monthchange
27900              * Fires when the displayed month changes 
27901              * @param {DatePicker} this
27902              * @param {Date} date The selected month
27903              */
27904         'monthchange': true
27905     });
27906
27907     if(this.handler){
27908         this.on("select", this.handler,  this.scope || this);
27909     }
27910     // build the disabledDatesRE
27911     if(!this.disabledDatesRE && this.disabledDates){
27912         var dd = this.disabledDates;
27913         var re = "(?:";
27914         for(var i = 0; i < dd.length; i++){
27915             re += dd[i];
27916             if(i != dd.length-1) {
27917                 re += "|";
27918             }
27919         }
27920         this.disabledDatesRE = new RegExp(re + ")");
27921     }
27922 };
27923
27924 Roo.extend(Roo.DatePicker, Roo.Component, {
27925     /**
27926      * @cfg {String} todayText
27927      * The text to display on the button that selects the current date (defaults to "Today")
27928      */
27929     todayText : "Today",
27930     /**
27931      * @cfg {String} okText
27932      * The text to display on the ok button
27933      */
27934     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27935     /**
27936      * @cfg {String} cancelText
27937      * The text to display on the cancel button
27938      */
27939     cancelText : "Cancel",
27940     /**
27941      * @cfg {String} todayTip
27942      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27943      */
27944     todayTip : "{0} (Spacebar)",
27945     /**
27946      * @cfg {Date} minDate
27947      * Minimum allowable date (JavaScript date object, defaults to null)
27948      */
27949     minDate : null,
27950     /**
27951      * @cfg {Date} maxDate
27952      * Maximum allowable date (JavaScript date object, defaults to null)
27953      */
27954     maxDate : null,
27955     /**
27956      * @cfg {String} minText
27957      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27958      */
27959     minText : "This date is before the minimum date",
27960     /**
27961      * @cfg {String} maxText
27962      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27963      */
27964     maxText : "This date is after the maximum date",
27965     /**
27966      * @cfg {String} format
27967      * The default date format string which can be overriden for localization support.  The format must be
27968      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27969      */
27970     format : "m/d/y",
27971     /**
27972      * @cfg {Array} disabledDays
27973      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27974      */
27975     disabledDays : null,
27976     /**
27977      * @cfg {String} disabledDaysText
27978      * The tooltip to display when the date falls on a disabled day (defaults to "")
27979      */
27980     disabledDaysText : "",
27981     /**
27982      * @cfg {RegExp} disabledDatesRE
27983      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27984      */
27985     disabledDatesRE : null,
27986     /**
27987      * @cfg {String} disabledDatesText
27988      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27989      */
27990     disabledDatesText : "",
27991     /**
27992      * @cfg {Boolean} constrainToViewport
27993      * True to constrain the date picker to the viewport (defaults to true)
27994      */
27995     constrainToViewport : true,
27996     /**
27997      * @cfg {Array} monthNames
27998      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27999      */
28000     monthNames : Date.monthNames,
28001     /**
28002      * @cfg {Array} dayNames
28003      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
28004      */
28005     dayNames : Date.dayNames,
28006     /**
28007      * @cfg {String} nextText
28008      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
28009      */
28010     nextText: 'Next Month (Control+Right)',
28011     /**
28012      * @cfg {String} prevText
28013      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
28014      */
28015     prevText: 'Previous Month (Control+Left)',
28016     /**
28017      * @cfg {String} monthYearText
28018      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
28019      */
28020     monthYearText: 'Choose a month (Control+Up/Down to move years)',
28021     /**
28022      * @cfg {Number} startDay
28023      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
28024      */
28025     startDay : 0,
28026     /**
28027      * @cfg {Bool} showClear
28028      * Show a clear button (usefull for date form elements that can be blank.)
28029      */
28030     
28031     showClear: false,
28032     
28033     /**
28034      * Sets the value of the date field
28035      * @param {Date} value The date to set
28036      */
28037     setValue : function(value){
28038         var old = this.value;
28039         
28040         if (typeof(value) == 'string') {
28041          
28042             value = Date.parseDate(value, this.format);
28043         }
28044         if (!value) {
28045             value = new Date();
28046         }
28047         
28048         this.value = value.clearTime(true);
28049         if(this.el){
28050             this.update(this.value);
28051         }
28052     },
28053
28054     /**
28055      * Gets the current selected value of the date field
28056      * @return {Date} The selected date
28057      */
28058     getValue : function(){
28059         return this.value;
28060     },
28061
28062     // private
28063     focus : function(){
28064         if(this.el){
28065             this.update(this.activeDate);
28066         }
28067     },
28068
28069     // privateval
28070     onRender : function(container, position){
28071         
28072         var m = [
28073              '<table cellspacing="0">',
28074                 '<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>',
28075                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
28076         var dn = this.dayNames;
28077         for(var i = 0; i < 7; i++){
28078             var d = this.startDay+i;
28079             if(d > 6){
28080                 d = d-7;
28081             }
28082             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28083         }
28084         m[m.length] = "</tr></thead><tbody><tr>";
28085         for(var i = 0; i < 42; i++) {
28086             if(i % 7 == 0 && i != 0){
28087                 m[m.length] = "</tr><tr>";
28088             }
28089             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28090         }
28091         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28092             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28093
28094         var el = document.createElement("div");
28095         el.className = "x-date-picker";
28096         el.innerHTML = m.join("");
28097
28098         container.dom.insertBefore(el, position);
28099
28100         this.el = Roo.get(el);
28101         this.eventEl = Roo.get(el.firstChild);
28102
28103         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28104             handler: this.showPrevMonth,
28105             scope: this,
28106             preventDefault:true,
28107             stopDefault:true
28108         });
28109
28110         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28111             handler: this.showNextMonth,
28112             scope: this,
28113             preventDefault:true,
28114             stopDefault:true
28115         });
28116
28117         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28118
28119         this.monthPicker = this.el.down('div.x-date-mp');
28120         this.monthPicker.enableDisplayMode('block');
28121         
28122         var kn = new Roo.KeyNav(this.eventEl, {
28123             "left" : function(e){
28124                 e.ctrlKey ?
28125                     this.showPrevMonth() :
28126                     this.update(this.activeDate.add("d", -1));
28127             },
28128
28129             "right" : function(e){
28130                 e.ctrlKey ?
28131                     this.showNextMonth() :
28132                     this.update(this.activeDate.add("d", 1));
28133             },
28134
28135             "up" : function(e){
28136                 e.ctrlKey ?
28137                     this.showNextYear() :
28138                     this.update(this.activeDate.add("d", -7));
28139             },
28140
28141             "down" : function(e){
28142                 e.ctrlKey ?
28143                     this.showPrevYear() :
28144                     this.update(this.activeDate.add("d", 7));
28145             },
28146
28147             "pageUp" : function(e){
28148                 this.showNextMonth();
28149             },
28150
28151             "pageDown" : function(e){
28152                 this.showPrevMonth();
28153             },
28154
28155             "enter" : function(e){
28156                 e.stopPropagation();
28157                 return true;
28158             },
28159
28160             scope : this
28161         });
28162
28163         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28164
28165         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28166
28167         this.el.unselectable();
28168         
28169         this.cells = this.el.select("table.x-date-inner tbody td");
28170         this.textNodes = this.el.query("table.x-date-inner tbody span");
28171
28172         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28173             text: "&#160;",
28174             tooltip: this.monthYearText
28175         });
28176
28177         this.mbtn.on('click', this.showMonthPicker, this);
28178         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28179
28180
28181         var today = (new Date()).dateFormat(this.format);
28182         
28183         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28184         if (this.showClear) {
28185             baseTb.add( new Roo.Toolbar.Fill());
28186         }
28187         baseTb.add({
28188             text: String.format(this.todayText, today),
28189             tooltip: String.format(this.todayTip, today),
28190             handler: this.selectToday,
28191             scope: this
28192         });
28193         
28194         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28195             
28196         //});
28197         if (this.showClear) {
28198             
28199             baseTb.add( new Roo.Toolbar.Fill());
28200             baseTb.add({
28201                 text: '&#160;',
28202                 cls: 'x-btn-icon x-btn-clear',
28203                 handler: function() {
28204                     //this.value = '';
28205                     this.fireEvent("select", this, '');
28206                 },
28207                 scope: this
28208             });
28209         }
28210         
28211         
28212         if(Roo.isIE){
28213             this.el.repaint();
28214         }
28215         this.update(this.value);
28216     },
28217
28218     createMonthPicker : function(){
28219         if(!this.monthPicker.dom.firstChild){
28220             var buf = ['<table border="0" cellspacing="0">'];
28221             for(var i = 0; i < 6; i++){
28222                 buf.push(
28223                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28224                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28225                     i == 0 ?
28226                     '<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>' :
28227                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28228                 );
28229             }
28230             buf.push(
28231                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28232                     this.okText,
28233                     '</button><button type="button" class="x-date-mp-cancel">',
28234                     this.cancelText,
28235                     '</button></td></tr>',
28236                 '</table>'
28237             );
28238             this.monthPicker.update(buf.join(''));
28239             this.monthPicker.on('click', this.onMonthClick, this);
28240             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28241
28242             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28243             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28244
28245             this.mpMonths.each(function(m, a, i){
28246                 i += 1;
28247                 if((i%2) == 0){
28248                     m.dom.xmonth = 5 + Math.round(i * .5);
28249                 }else{
28250                     m.dom.xmonth = Math.round((i-1) * .5);
28251                 }
28252             });
28253         }
28254     },
28255
28256     showMonthPicker : function(){
28257         this.createMonthPicker();
28258         var size = this.el.getSize();
28259         this.monthPicker.setSize(size);
28260         this.monthPicker.child('table').setSize(size);
28261
28262         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28263         this.updateMPMonth(this.mpSelMonth);
28264         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28265         this.updateMPYear(this.mpSelYear);
28266
28267         this.monthPicker.slideIn('t', {duration:.2});
28268     },
28269
28270     updateMPYear : function(y){
28271         this.mpyear = y;
28272         var ys = this.mpYears.elements;
28273         for(var i = 1; i <= 10; i++){
28274             var td = ys[i-1], y2;
28275             if((i%2) == 0){
28276                 y2 = y + Math.round(i * .5);
28277                 td.firstChild.innerHTML = y2;
28278                 td.xyear = y2;
28279             }else{
28280                 y2 = y - (5-Math.round(i * .5));
28281                 td.firstChild.innerHTML = y2;
28282                 td.xyear = y2;
28283             }
28284             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28285         }
28286     },
28287
28288     updateMPMonth : function(sm){
28289         this.mpMonths.each(function(m, a, i){
28290             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28291         });
28292     },
28293
28294     selectMPMonth: function(m){
28295         
28296     },
28297
28298     onMonthClick : function(e, t){
28299         e.stopEvent();
28300         var el = new Roo.Element(t), pn;
28301         if(el.is('button.x-date-mp-cancel')){
28302             this.hideMonthPicker();
28303         }
28304         else if(el.is('button.x-date-mp-ok')){
28305             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28306             this.hideMonthPicker();
28307         }
28308         else if(pn = el.up('td.x-date-mp-month', 2)){
28309             this.mpMonths.removeClass('x-date-mp-sel');
28310             pn.addClass('x-date-mp-sel');
28311             this.mpSelMonth = pn.dom.xmonth;
28312         }
28313         else if(pn = el.up('td.x-date-mp-year', 2)){
28314             this.mpYears.removeClass('x-date-mp-sel');
28315             pn.addClass('x-date-mp-sel');
28316             this.mpSelYear = pn.dom.xyear;
28317         }
28318         else if(el.is('a.x-date-mp-prev')){
28319             this.updateMPYear(this.mpyear-10);
28320         }
28321         else if(el.is('a.x-date-mp-next')){
28322             this.updateMPYear(this.mpyear+10);
28323         }
28324     },
28325
28326     onMonthDblClick : function(e, t){
28327         e.stopEvent();
28328         var el = new Roo.Element(t), pn;
28329         if(pn = el.up('td.x-date-mp-month', 2)){
28330             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28331             this.hideMonthPicker();
28332         }
28333         else if(pn = el.up('td.x-date-mp-year', 2)){
28334             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28335             this.hideMonthPicker();
28336         }
28337     },
28338
28339     hideMonthPicker : function(disableAnim){
28340         if(this.monthPicker){
28341             if(disableAnim === true){
28342                 this.monthPicker.hide();
28343             }else{
28344                 this.monthPicker.slideOut('t', {duration:.2});
28345             }
28346         }
28347     },
28348
28349     // private
28350     showPrevMonth : function(e){
28351         this.update(this.activeDate.add("mo", -1));
28352     },
28353
28354     // private
28355     showNextMonth : function(e){
28356         this.update(this.activeDate.add("mo", 1));
28357     },
28358
28359     // private
28360     showPrevYear : function(){
28361         this.update(this.activeDate.add("y", -1));
28362     },
28363
28364     // private
28365     showNextYear : function(){
28366         this.update(this.activeDate.add("y", 1));
28367     },
28368
28369     // private
28370     handleMouseWheel : function(e){
28371         var delta = e.getWheelDelta();
28372         if(delta > 0){
28373             this.showPrevMonth();
28374             e.stopEvent();
28375         } else if(delta < 0){
28376             this.showNextMonth();
28377             e.stopEvent();
28378         }
28379     },
28380
28381     // private
28382     handleDateClick : function(e, t){
28383         e.stopEvent();
28384         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28385             this.setValue(new Date(t.dateValue));
28386             this.fireEvent("select", this, this.value);
28387         }
28388     },
28389
28390     // private
28391     selectToday : function(){
28392         this.setValue(new Date().clearTime());
28393         this.fireEvent("select", this, this.value);
28394     },
28395
28396     // private
28397     update : function(date)
28398     {
28399         var vd = this.activeDate;
28400         this.activeDate = date;
28401         if(vd && this.el){
28402             var t = date.getTime();
28403             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28404                 this.cells.removeClass("x-date-selected");
28405                 this.cells.each(function(c){
28406                    if(c.dom.firstChild.dateValue == t){
28407                        c.addClass("x-date-selected");
28408                        setTimeout(function(){
28409                             try{c.dom.firstChild.focus();}catch(e){}
28410                        }, 50);
28411                        return false;
28412                    }
28413                 });
28414                 return;
28415             }
28416         }
28417         
28418         var days = date.getDaysInMonth();
28419         var firstOfMonth = date.getFirstDateOfMonth();
28420         var startingPos = firstOfMonth.getDay()-this.startDay;
28421
28422         if(startingPos <= this.startDay){
28423             startingPos += 7;
28424         }
28425
28426         var pm = date.add("mo", -1);
28427         var prevStart = pm.getDaysInMonth()-startingPos;
28428
28429         var cells = this.cells.elements;
28430         var textEls = this.textNodes;
28431         days += startingPos;
28432
28433         // convert everything to numbers so it's fast
28434         var day = 86400000;
28435         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28436         var today = new Date().clearTime().getTime();
28437         var sel = date.clearTime().getTime();
28438         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28439         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28440         var ddMatch = this.disabledDatesRE;
28441         var ddText = this.disabledDatesText;
28442         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28443         var ddaysText = this.disabledDaysText;
28444         var format = this.format;
28445
28446         var setCellClass = function(cal, cell){
28447             cell.title = "";
28448             var t = d.getTime();
28449             cell.firstChild.dateValue = t;
28450             if(t == today){
28451                 cell.className += " x-date-today";
28452                 cell.title = cal.todayText;
28453             }
28454             if(t == sel){
28455                 cell.className += " x-date-selected";
28456                 setTimeout(function(){
28457                     try{cell.firstChild.focus();}catch(e){}
28458                 }, 50);
28459             }
28460             // disabling
28461             if(t < min) {
28462                 cell.className = " x-date-disabled";
28463                 cell.title = cal.minText;
28464                 return;
28465             }
28466             if(t > max) {
28467                 cell.className = " x-date-disabled";
28468                 cell.title = cal.maxText;
28469                 return;
28470             }
28471             if(ddays){
28472                 if(ddays.indexOf(d.getDay()) != -1){
28473                     cell.title = ddaysText;
28474                     cell.className = " x-date-disabled";
28475                 }
28476             }
28477             if(ddMatch && format){
28478                 var fvalue = d.dateFormat(format);
28479                 if(ddMatch.test(fvalue)){
28480                     cell.title = ddText.replace("%0", fvalue);
28481                     cell.className = " x-date-disabled";
28482                 }
28483             }
28484         };
28485
28486         var i = 0;
28487         for(; i < startingPos; i++) {
28488             textEls[i].innerHTML = (++prevStart);
28489             d.setDate(d.getDate()+1);
28490             cells[i].className = "x-date-prevday";
28491             setCellClass(this, cells[i]);
28492         }
28493         for(; i < days; i++){
28494             intDay = i - startingPos + 1;
28495             textEls[i].innerHTML = (intDay);
28496             d.setDate(d.getDate()+1);
28497             cells[i].className = "x-date-active";
28498             setCellClass(this, cells[i]);
28499         }
28500         var extraDays = 0;
28501         for(; i < 42; i++) {
28502              textEls[i].innerHTML = (++extraDays);
28503              d.setDate(d.getDate()+1);
28504              cells[i].className = "x-date-nextday";
28505              setCellClass(this, cells[i]);
28506         }
28507
28508         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28509         this.fireEvent('monthchange', this, date);
28510         
28511         if(!this.internalRender){
28512             var main = this.el.dom.firstChild;
28513             var w = main.offsetWidth;
28514             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28515             Roo.fly(main).setWidth(w);
28516             this.internalRender = true;
28517             // opera does not respect the auto grow header center column
28518             // then, after it gets a width opera refuses to recalculate
28519             // without a second pass
28520             if(Roo.isOpera && !this.secondPass){
28521                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28522                 this.secondPass = true;
28523                 this.update.defer(10, this, [date]);
28524             }
28525         }
28526         
28527         
28528     }
28529 });        /*
28530  * Based on:
28531  * Ext JS Library 1.1.1
28532  * Copyright(c) 2006-2007, Ext JS, LLC.
28533  *
28534  * Originally Released Under LGPL - original licence link has changed is not relivant.
28535  *
28536  * Fork - LGPL
28537  * <script type="text/javascript">
28538  */
28539 /**
28540  * @class Roo.TabPanel
28541  * @extends Roo.util.Observable
28542  * A lightweight tab container.
28543  * <br><br>
28544  * Usage:
28545  * <pre><code>
28546 // basic tabs 1, built from existing content
28547 var tabs = new Roo.TabPanel("tabs1");
28548 tabs.addTab("script", "View Script");
28549 tabs.addTab("markup", "View Markup");
28550 tabs.activate("script");
28551
28552 // more advanced tabs, built from javascript
28553 var jtabs = new Roo.TabPanel("jtabs");
28554 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28555
28556 // set up the UpdateManager
28557 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28558 var updater = tab2.getUpdateManager();
28559 updater.setDefaultUrl("ajax1.htm");
28560 tab2.on('activate', updater.refresh, updater, true);
28561
28562 // Use setUrl for Ajax loading
28563 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28564 tab3.setUrl("ajax2.htm", null, true);
28565
28566 // Disabled tab
28567 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28568 tab4.disable();
28569
28570 jtabs.activate("jtabs-1");
28571  * </code></pre>
28572  * @constructor
28573  * Create a new TabPanel.
28574  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28575  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28576  */
28577 Roo.TabPanel = function(container, config){
28578     /**
28579     * The container element for this TabPanel.
28580     * @type Roo.Element
28581     */
28582     this.el = Roo.get(container, true);
28583     if(config){
28584         if(typeof config == "boolean"){
28585             this.tabPosition = config ? "bottom" : "top";
28586         }else{
28587             Roo.apply(this, config);
28588         }
28589     }
28590     if(this.tabPosition == "bottom"){
28591         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28592         this.el.addClass("x-tabs-bottom");
28593     }
28594     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28595     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28596     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28597     if(Roo.isIE){
28598         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28599     }
28600     if(this.tabPosition != "bottom"){
28601         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28602          * @type Roo.Element
28603          */
28604         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28605         this.el.addClass("x-tabs-top");
28606     }
28607     this.items = [];
28608
28609     this.bodyEl.setStyle("position", "relative");
28610
28611     this.active = null;
28612     this.activateDelegate = this.activate.createDelegate(this);
28613
28614     this.addEvents({
28615         /**
28616          * @event tabchange
28617          * Fires when the active tab changes
28618          * @param {Roo.TabPanel} this
28619          * @param {Roo.TabPanelItem} activePanel The new active tab
28620          */
28621         "tabchange": true,
28622         /**
28623          * @event beforetabchange
28624          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28625          * @param {Roo.TabPanel} this
28626          * @param {Object} e Set cancel to true on this object to cancel the tab change
28627          * @param {Roo.TabPanelItem} tab The tab being changed to
28628          */
28629         "beforetabchange" : true
28630     });
28631
28632     Roo.EventManager.onWindowResize(this.onResize, this);
28633     this.cpad = this.el.getPadding("lr");
28634     this.hiddenCount = 0;
28635
28636
28637     // toolbar on the tabbar support...
28638     if (this.toolbar) {
28639         var tcfg = this.toolbar;
28640         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28641         this.toolbar = new Roo.Toolbar(tcfg);
28642         if (Roo.isSafari) {
28643             var tbl = tcfg.container.child('table', true);
28644             tbl.setAttribute('width', '100%');
28645         }
28646         
28647     }
28648    
28649
28650
28651     Roo.TabPanel.superclass.constructor.call(this);
28652 };
28653
28654 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28655     /*
28656      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28657      */
28658     tabPosition : "top",
28659     /*
28660      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28661      */
28662     currentTabWidth : 0,
28663     /*
28664      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28665      */
28666     minTabWidth : 40,
28667     /*
28668      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28669      */
28670     maxTabWidth : 250,
28671     /*
28672      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28673      */
28674     preferredTabWidth : 175,
28675     /*
28676      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28677      */
28678     resizeTabs : false,
28679     /*
28680      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28681      */
28682     monitorResize : true,
28683     /*
28684      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28685      */
28686     toolbar : false,
28687
28688     /**
28689      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28690      * @param {String} id The id of the div to use <b>or create</b>
28691      * @param {String} text The text for the tab
28692      * @param {String} content (optional) Content to put in the TabPanelItem body
28693      * @param {Boolean} closable (optional) True to create a close icon on the tab
28694      * @return {Roo.TabPanelItem} The created TabPanelItem
28695      */
28696     addTab : function(id, text, content, closable){
28697         var item = new Roo.TabPanelItem(this, id, text, closable);
28698         this.addTabItem(item);
28699         if(content){
28700             item.setContent(content);
28701         }
28702         return item;
28703     },
28704
28705     /**
28706      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28707      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28708      * @return {Roo.TabPanelItem}
28709      */
28710     getTab : function(id){
28711         return this.items[id];
28712     },
28713
28714     /**
28715      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28716      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28717      */
28718     hideTab : function(id){
28719         var t = this.items[id];
28720         if(!t.isHidden()){
28721            t.setHidden(true);
28722            this.hiddenCount++;
28723            this.autoSizeTabs();
28724         }
28725     },
28726
28727     /**
28728      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28729      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28730      */
28731     unhideTab : function(id){
28732         var t = this.items[id];
28733         if(t.isHidden()){
28734            t.setHidden(false);
28735            this.hiddenCount--;
28736            this.autoSizeTabs();
28737         }
28738     },
28739
28740     /**
28741      * Adds an existing {@link Roo.TabPanelItem}.
28742      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28743      */
28744     addTabItem : function(item){
28745         this.items[item.id] = item;
28746         this.items.push(item);
28747         if(this.resizeTabs){
28748            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28749            this.autoSizeTabs();
28750         }else{
28751             item.autoSize();
28752         }
28753     },
28754
28755     /**
28756      * Removes a {@link Roo.TabPanelItem}.
28757      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28758      */
28759     removeTab : function(id){
28760         var items = this.items;
28761         var tab = items[id];
28762         if(!tab) { return; }
28763         var index = items.indexOf(tab);
28764         if(this.active == tab && items.length > 1){
28765             var newTab = this.getNextAvailable(index);
28766             if(newTab) {
28767                 newTab.activate();
28768             }
28769         }
28770         this.stripEl.dom.removeChild(tab.pnode.dom);
28771         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28772             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28773         }
28774         items.splice(index, 1);
28775         delete this.items[tab.id];
28776         tab.fireEvent("close", tab);
28777         tab.purgeListeners();
28778         this.autoSizeTabs();
28779     },
28780
28781     getNextAvailable : function(start){
28782         var items = this.items;
28783         var index = start;
28784         // look for a next tab that will slide over to
28785         // replace the one being removed
28786         while(index < items.length){
28787             var item = items[++index];
28788             if(item && !item.isHidden()){
28789                 return item;
28790             }
28791         }
28792         // if one isn't found select the previous tab (on the left)
28793         index = start;
28794         while(index >= 0){
28795             var item = items[--index];
28796             if(item && !item.isHidden()){
28797                 return item;
28798             }
28799         }
28800         return null;
28801     },
28802
28803     /**
28804      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28805      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28806      */
28807     disableTab : function(id){
28808         var tab = this.items[id];
28809         if(tab && this.active != tab){
28810             tab.disable();
28811         }
28812     },
28813
28814     /**
28815      * Enables a {@link Roo.TabPanelItem} that is disabled.
28816      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28817      */
28818     enableTab : function(id){
28819         var tab = this.items[id];
28820         tab.enable();
28821     },
28822
28823     /**
28824      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28825      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28826      * @return {Roo.TabPanelItem} The TabPanelItem.
28827      */
28828     activate : function(id){
28829         var tab = this.items[id];
28830         if(!tab){
28831             return null;
28832         }
28833         if(tab == this.active || tab.disabled){
28834             return tab;
28835         }
28836         var e = {};
28837         this.fireEvent("beforetabchange", this, e, tab);
28838         if(e.cancel !== true && !tab.disabled){
28839             if(this.active){
28840                 this.active.hide();
28841             }
28842             this.active = this.items[id];
28843             this.active.show();
28844             this.fireEvent("tabchange", this, this.active);
28845         }
28846         return tab;
28847     },
28848
28849     /**
28850      * Gets the active {@link Roo.TabPanelItem}.
28851      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28852      */
28853     getActiveTab : function(){
28854         return this.active;
28855     },
28856
28857     /**
28858      * Updates the tab body element to fit the height of the container element
28859      * for overflow scrolling
28860      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28861      */
28862     syncHeight : function(targetHeight){
28863         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28864         var bm = this.bodyEl.getMargins();
28865         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28866         this.bodyEl.setHeight(newHeight);
28867         return newHeight;
28868     },
28869
28870     onResize : function(){
28871         if(this.monitorResize){
28872             this.autoSizeTabs();
28873         }
28874     },
28875
28876     /**
28877      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28878      */
28879     beginUpdate : function(){
28880         this.updating = true;
28881     },
28882
28883     /**
28884      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28885      */
28886     endUpdate : function(){
28887         this.updating = false;
28888         this.autoSizeTabs();
28889     },
28890
28891     /**
28892      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28893      */
28894     autoSizeTabs : function(){
28895         var count = this.items.length;
28896         var vcount = count - this.hiddenCount;
28897         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28898             return;
28899         }
28900         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28901         var availWidth = Math.floor(w / vcount);
28902         var b = this.stripBody;
28903         if(b.getWidth() > w){
28904             var tabs = this.items;
28905             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28906             if(availWidth < this.minTabWidth){
28907                 /*if(!this.sleft){    // incomplete scrolling code
28908                     this.createScrollButtons();
28909                 }
28910                 this.showScroll();
28911                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28912             }
28913         }else{
28914             if(this.currentTabWidth < this.preferredTabWidth){
28915                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28916             }
28917         }
28918     },
28919
28920     /**
28921      * Returns the number of tabs in this TabPanel.
28922      * @return {Number}
28923      */
28924      getCount : function(){
28925          return this.items.length;
28926      },
28927
28928     /**
28929      * Resizes all the tabs to the passed width
28930      * @param {Number} The new width
28931      */
28932     setTabWidth : function(width){
28933         this.currentTabWidth = width;
28934         for(var i = 0, len = this.items.length; i < len; i++) {
28935                 if(!this.items[i].isHidden()) {
28936                 this.items[i].setWidth(width);
28937             }
28938         }
28939     },
28940
28941     /**
28942      * Destroys this TabPanel
28943      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28944      */
28945     destroy : function(removeEl){
28946         Roo.EventManager.removeResizeListener(this.onResize, this);
28947         for(var i = 0, len = this.items.length; i < len; i++){
28948             this.items[i].purgeListeners();
28949         }
28950         if(removeEl === true){
28951             this.el.update("");
28952             this.el.remove();
28953         }
28954     }
28955 });
28956
28957 /**
28958  * @class Roo.TabPanelItem
28959  * @extends Roo.util.Observable
28960  * Represents an individual item (tab plus body) in a TabPanel.
28961  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28962  * @param {String} id The id of this TabPanelItem
28963  * @param {String} text The text for the tab of this TabPanelItem
28964  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28965  */
28966 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28967     /**
28968      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28969      * @type Roo.TabPanel
28970      */
28971     this.tabPanel = tabPanel;
28972     /**
28973      * The id for this TabPanelItem
28974      * @type String
28975      */
28976     this.id = id;
28977     /** @private */
28978     this.disabled = false;
28979     /** @private */
28980     this.text = text;
28981     /** @private */
28982     this.loaded = false;
28983     this.closable = closable;
28984
28985     /**
28986      * The body element for this TabPanelItem.
28987      * @type Roo.Element
28988      */
28989     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28990     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28991     this.bodyEl.setStyle("display", "block");
28992     this.bodyEl.setStyle("zoom", "1");
28993     this.hideAction();
28994
28995     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28996     /** @private */
28997     this.el = Roo.get(els.el, true);
28998     this.inner = Roo.get(els.inner, true);
28999     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
29000     this.pnode = Roo.get(els.el.parentNode, true);
29001     this.el.on("mousedown", this.onTabMouseDown, this);
29002     this.el.on("click", this.onTabClick, this);
29003     /** @private */
29004     if(closable){
29005         var c = Roo.get(els.close, true);
29006         c.dom.title = this.closeText;
29007         c.addClassOnOver("close-over");
29008         c.on("click", this.closeClick, this);
29009      }
29010
29011     this.addEvents({
29012          /**
29013          * @event activate
29014          * Fires when this tab becomes the active tab.
29015          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29016          * @param {Roo.TabPanelItem} this
29017          */
29018         "activate": true,
29019         /**
29020          * @event beforeclose
29021          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
29022          * @param {Roo.TabPanelItem} this
29023          * @param {Object} e Set cancel to true on this object to cancel the close.
29024          */
29025         "beforeclose": true,
29026         /**
29027          * @event close
29028          * Fires when this tab is closed.
29029          * @param {Roo.TabPanelItem} this
29030          */
29031          "close": true,
29032         /**
29033          * @event deactivate
29034          * Fires when this tab is no longer the active tab.
29035          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29036          * @param {Roo.TabPanelItem} this
29037          */
29038          "deactivate" : true
29039     });
29040     this.hidden = false;
29041
29042     Roo.TabPanelItem.superclass.constructor.call(this);
29043 };
29044
29045 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
29046     purgeListeners : function(){
29047        Roo.util.Observable.prototype.purgeListeners.call(this);
29048        this.el.removeAllListeners();
29049     },
29050     /**
29051      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
29052      */
29053     show : function(){
29054         this.pnode.addClass("on");
29055         this.showAction();
29056         if(Roo.isOpera){
29057             this.tabPanel.stripWrap.repaint();
29058         }
29059         this.fireEvent("activate", this.tabPanel, this);
29060     },
29061
29062     /**
29063      * Returns true if this tab is the active tab.
29064      * @return {Boolean}
29065      */
29066     isActive : function(){
29067         return this.tabPanel.getActiveTab() == this;
29068     },
29069
29070     /**
29071      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
29072      */
29073     hide : function(){
29074         this.pnode.removeClass("on");
29075         this.hideAction();
29076         this.fireEvent("deactivate", this.tabPanel, this);
29077     },
29078
29079     hideAction : function(){
29080         this.bodyEl.hide();
29081         this.bodyEl.setStyle("position", "absolute");
29082         this.bodyEl.setLeft("-20000px");
29083         this.bodyEl.setTop("-20000px");
29084     },
29085
29086     showAction : function(){
29087         this.bodyEl.setStyle("position", "relative");
29088         this.bodyEl.setTop("");
29089         this.bodyEl.setLeft("");
29090         this.bodyEl.show();
29091     },
29092
29093     /**
29094      * Set the tooltip for the tab.
29095      * @param {String} tooltip The tab's tooltip
29096      */
29097     setTooltip : function(text){
29098         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29099             this.textEl.dom.qtip = text;
29100             this.textEl.dom.removeAttribute('title');
29101         }else{
29102             this.textEl.dom.title = text;
29103         }
29104     },
29105
29106     onTabClick : function(e){
29107         e.preventDefault();
29108         this.tabPanel.activate(this.id);
29109     },
29110
29111     onTabMouseDown : function(e){
29112         e.preventDefault();
29113         this.tabPanel.activate(this.id);
29114     },
29115
29116     getWidth : function(){
29117         return this.inner.getWidth();
29118     },
29119
29120     setWidth : function(width){
29121         var iwidth = width - this.pnode.getPadding("lr");
29122         this.inner.setWidth(iwidth);
29123         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29124         this.pnode.setWidth(width);
29125     },
29126
29127     /**
29128      * Show or hide the tab
29129      * @param {Boolean} hidden True to hide or false to show.
29130      */
29131     setHidden : function(hidden){
29132         this.hidden = hidden;
29133         this.pnode.setStyle("display", hidden ? "none" : "");
29134     },
29135
29136     /**
29137      * Returns true if this tab is "hidden"
29138      * @return {Boolean}
29139      */
29140     isHidden : function(){
29141         return this.hidden;
29142     },
29143
29144     /**
29145      * Returns the text for this tab
29146      * @return {String}
29147      */
29148     getText : function(){
29149         return this.text;
29150     },
29151
29152     autoSize : function(){
29153         //this.el.beginMeasure();
29154         this.textEl.setWidth(1);
29155         /*
29156          *  #2804 [new] Tabs in Roojs
29157          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29158          */
29159         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29160         //this.el.endMeasure();
29161     },
29162
29163     /**
29164      * Sets the text for the tab (Note: this also sets the tooltip text)
29165      * @param {String} text The tab's text and tooltip
29166      */
29167     setText : function(text){
29168         this.text = text;
29169         this.textEl.update(text);
29170         this.setTooltip(text);
29171         if(!this.tabPanel.resizeTabs){
29172             this.autoSize();
29173         }
29174     },
29175     /**
29176      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29177      */
29178     activate : function(){
29179         this.tabPanel.activate(this.id);
29180     },
29181
29182     /**
29183      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29184      */
29185     disable : function(){
29186         if(this.tabPanel.active != this){
29187             this.disabled = true;
29188             this.pnode.addClass("disabled");
29189         }
29190     },
29191
29192     /**
29193      * Enables this TabPanelItem if it was previously disabled.
29194      */
29195     enable : function(){
29196         this.disabled = false;
29197         this.pnode.removeClass("disabled");
29198     },
29199
29200     /**
29201      * Sets the content for this TabPanelItem.
29202      * @param {String} content The content
29203      * @param {Boolean} loadScripts true to look for and load scripts
29204      */
29205     setContent : function(content, loadScripts){
29206         this.bodyEl.update(content, loadScripts);
29207     },
29208
29209     /**
29210      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29211      * @return {Roo.UpdateManager} The UpdateManager
29212      */
29213     getUpdateManager : function(){
29214         return this.bodyEl.getUpdateManager();
29215     },
29216
29217     /**
29218      * Set a URL to be used to load the content for this TabPanelItem.
29219      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29220      * @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)
29221      * @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)
29222      * @return {Roo.UpdateManager} The UpdateManager
29223      */
29224     setUrl : function(url, params, loadOnce){
29225         if(this.refreshDelegate){
29226             this.un('activate', this.refreshDelegate);
29227         }
29228         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29229         this.on("activate", this.refreshDelegate);
29230         return this.bodyEl.getUpdateManager();
29231     },
29232
29233     /** @private */
29234     _handleRefresh : function(url, params, loadOnce){
29235         if(!loadOnce || !this.loaded){
29236             var updater = this.bodyEl.getUpdateManager();
29237             updater.update(url, params, this._setLoaded.createDelegate(this));
29238         }
29239     },
29240
29241     /**
29242      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29243      *   Will fail silently if the setUrl method has not been called.
29244      *   This does not activate the panel, just updates its content.
29245      */
29246     refresh : function(){
29247         if(this.refreshDelegate){
29248            this.loaded = false;
29249            this.refreshDelegate();
29250         }
29251     },
29252
29253     /** @private */
29254     _setLoaded : function(){
29255         this.loaded = true;
29256     },
29257
29258     /** @private */
29259     closeClick : function(e){
29260         var o = {};
29261         e.stopEvent();
29262         this.fireEvent("beforeclose", this, o);
29263         if(o.cancel !== true){
29264             this.tabPanel.removeTab(this.id);
29265         }
29266     },
29267     /**
29268      * The text displayed in the tooltip for the close icon.
29269      * @type String
29270      */
29271     closeText : "Close this tab"
29272 });
29273
29274 /** @private */
29275 Roo.TabPanel.prototype.createStrip = function(container){
29276     var strip = document.createElement("div");
29277     strip.className = "x-tabs-wrap";
29278     container.appendChild(strip);
29279     return strip;
29280 };
29281 /** @private */
29282 Roo.TabPanel.prototype.createStripList = function(strip){
29283     // div wrapper for retard IE
29284     // returns the "tr" element.
29285     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29286         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29287         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29288     return strip.firstChild.firstChild.firstChild.firstChild;
29289 };
29290 /** @private */
29291 Roo.TabPanel.prototype.createBody = function(container){
29292     var body = document.createElement("div");
29293     Roo.id(body, "tab-body");
29294     Roo.fly(body).addClass("x-tabs-body");
29295     container.appendChild(body);
29296     return body;
29297 };
29298 /** @private */
29299 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29300     var body = Roo.getDom(id);
29301     if(!body){
29302         body = document.createElement("div");
29303         body.id = id;
29304     }
29305     Roo.fly(body).addClass("x-tabs-item-body");
29306     bodyEl.insertBefore(body, bodyEl.firstChild);
29307     return body;
29308 };
29309 /** @private */
29310 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29311     var td = document.createElement("td");
29312     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29313     //stripEl.appendChild(td);
29314     if(closable){
29315         td.className = "x-tabs-closable";
29316         if(!this.closeTpl){
29317             this.closeTpl = new Roo.Template(
29318                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29319                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29320                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29321             );
29322         }
29323         var el = this.closeTpl.overwrite(td, {"text": text});
29324         var close = el.getElementsByTagName("div")[0];
29325         var inner = el.getElementsByTagName("em")[0];
29326         return {"el": el, "close": close, "inner": inner};
29327     } else {
29328         if(!this.tabTpl){
29329             this.tabTpl = new Roo.Template(
29330                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29331                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29332             );
29333         }
29334         var el = this.tabTpl.overwrite(td, {"text": text});
29335         var inner = el.getElementsByTagName("em")[0];
29336         return {"el": el, "inner": inner};
29337     }
29338 };/*
29339  * Based on:
29340  * Ext JS Library 1.1.1
29341  * Copyright(c) 2006-2007, Ext JS, LLC.
29342  *
29343  * Originally Released Under LGPL - original licence link has changed is not relivant.
29344  *
29345  * Fork - LGPL
29346  * <script type="text/javascript">
29347  */
29348
29349 /**
29350  * @class Roo.Button
29351  * @extends Roo.util.Observable
29352  * Simple Button class
29353  * @cfg {String} text The button text
29354  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29355  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29356  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29357  * @cfg {Object} scope The scope of the handler
29358  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29359  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29360  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29361  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29362  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29363  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29364    applies if enableToggle = true)
29365  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29366  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29367   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29368  * @constructor
29369  * Create a new button
29370  * @param {Object} config The config object
29371  */
29372 Roo.Button = function(renderTo, config)
29373 {
29374     if (!config) {
29375         config = renderTo;
29376         renderTo = config.renderTo || false;
29377     }
29378     
29379     Roo.apply(this, config);
29380     this.addEvents({
29381         /**
29382              * @event click
29383              * Fires when this button is clicked
29384              * @param {Button} this
29385              * @param {EventObject} e The click event
29386              */
29387             "click" : true,
29388         /**
29389              * @event toggle
29390              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29391              * @param {Button} this
29392              * @param {Boolean} pressed
29393              */
29394             "toggle" : true,
29395         /**
29396              * @event mouseover
29397              * Fires when the mouse hovers over the button
29398              * @param {Button} this
29399              * @param {Event} e The event object
29400              */
29401         'mouseover' : true,
29402         /**
29403              * @event mouseout
29404              * Fires when the mouse exits the button
29405              * @param {Button} this
29406              * @param {Event} e The event object
29407              */
29408         'mouseout': true,
29409          /**
29410              * @event render
29411              * Fires when the button is rendered
29412              * @param {Button} this
29413              */
29414         'render': true
29415     });
29416     if(this.menu){
29417         this.menu = Roo.menu.MenuMgr.get(this.menu);
29418     }
29419     // register listeners first!!  - so render can be captured..
29420     Roo.util.Observable.call(this);
29421     if(renderTo){
29422         this.render(renderTo);
29423     }
29424     
29425   
29426 };
29427
29428 Roo.extend(Roo.Button, Roo.util.Observable, {
29429     /**
29430      * 
29431      */
29432     
29433     /**
29434      * Read-only. True if this button is hidden
29435      * @type Boolean
29436      */
29437     hidden : false,
29438     /**
29439      * Read-only. True if this button is disabled
29440      * @type Boolean
29441      */
29442     disabled : false,
29443     /**
29444      * Read-only. True if this button is pressed (only if enableToggle = true)
29445      * @type Boolean
29446      */
29447     pressed : false,
29448
29449     /**
29450      * @cfg {Number} tabIndex 
29451      * The DOM tabIndex for this button (defaults to undefined)
29452      */
29453     tabIndex : undefined,
29454
29455     /**
29456      * @cfg {Boolean} enableToggle
29457      * True to enable pressed/not pressed toggling (defaults to false)
29458      */
29459     enableToggle: false,
29460     /**
29461      * @cfg {Mixed} menu
29462      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29463      */
29464     menu : undefined,
29465     /**
29466      * @cfg {String} menuAlign
29467      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29468      */
29469     menuAlign : "tl-bl?",
29470
29471     /**
29472      * @cfg {String} iconCls
29473      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29474      */
29475     iconCls : undefined,
29476     /**
29477      * @cfg {String} type
29478      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29479      */
29480     type : 'button',
29481
29482     // private
29483     menuClassTarget: 'tr',
29484
29485     /**
29486      * @cfg {String} clickEvent
29487      * The type of event to map to the button's event handler (defaults to 'click')
29488      */
29489     clickEvent : 'click',
29490
29491     /**
29492      * @cfg {Boolean} handleMouseEvents
29493      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29494      */
29495     handleMouseEvents : true,
29496
29497     /**
29498      * @cfg {String} tooltipType
29499      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29500      */
29501     tooltipType : 'qtip',
29502
29503     /**
29504      * @cfg {String} cls
29505      * A CSS class to apply to the button's main element.
29506      */
29507     
29508     /**
29509      * @cfg {Roo.Template} template (Optional)
29510      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29511      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29512      * require code modifications if required elements (e.g. a button) aren't present.
29513      */
29514
29515     // private
29516     render : function(renderTo){
29517         var btn;
29518         if(this.hideParent){
29519             this.parentEl = Roo.get(renderTo);
29520         }
29521         if(!this.dhconfig){
29522             if(!this.template){
29523                 if(!Roo.Button.buttonTemplate){
29524                     // hideous table template
29525                     Roo.Button.buttonTemplate = new Roo.Template(
29526                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29527                         '<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>',
29528                         "</tr></tbody></table>");
29529                 }
29530                 this.template = Roo.Button.buttonTemplate;
29531             }
29532             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29533             var btnEl = btn.child("button:first");
29534             btnEl.on('focus', this.onFocus, this);
29535             btnEl.on('blur', this.onBlur, this);
29536             if(this.cls){
29537                 btn.addClass(this.cls);
29538             }
29539             if(this.icon){
29540                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29541             }
29542             if(this.iconCls){
29543                 btnEl.addClass(this.iconCls);
29544                 if(!this.cls){
29545                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29546                 }
29547             }
29548             if(this.tabIndex !== undefined){
29549                 btnEl.dom.tabIndex = this.tabIndex;
29550             }
29551             if(this.tooltip){
29552                 if(typeof this.tooltip == 'object'){
29553                     Roo.QuickTips.tips(Roo.apply({
29554                           target: btnEl.id
29555                     }, this.tooltip));
29556                 } else {
29557                     btnEl.dom[this.tooltipType] = this.tooltip;
29558                 }
29559             }
29560         }else{
29561             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29562         }
29563         this.el = btn;
29564         if(this.id){
29565             this.el.dom.id = this.el.id = this.id;
29566         }
29567         if(this.menu){
29568             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29569             this.menu.on("show", this.onMenuShow, this);
29570             this.menu.on("hide", this.onMenuHide, this);
29571         }
29572         btn.addClass("x-btn");
29573         if(Roo.isIE && !Roo.isIE7){
29574             this.autoWidth.defer(1, this);
29575         }else{
29576             this.autoWidth();
29577         }
29578         if(this.handleMouseEvents){
29579             btn.on("mouseover", this.onMouseOver, this);
29580             btn.on("mouseout", this.onMouseOut, this);
29581             btn.on("mousedown", this.onMouseDown, this);
29582         }
29583         btn.on(this.clickEvent, this.onClick, this);
29584         //btn.on("mouseup", this.onMouseUp, this);
29585         if(this.hidden){
29586             this.hide();
29587         }
29588         if(this.disabled){
29589             this.disable();
29590         }
29591         Roo.ButtonToggleMgr.register(this);
29592         if(this.pressed){
29593             this.el.addClass("x-btn-pressed");
29594         }
29595         if(this.repeat){
29596             var repeater = new Roo.util.ClickRepeater(btn,
29597                 typeof this.repeat == "object" ? this.repeat : {}
29598             );
29599             repeater.on("click", this.onClick,  this);
29600         }
29601         
29602         this.fireEvent('render', this);
29603         
29604     },
29605     /**
29606      * Returns the button's underlying element
29607      * @return {Roo.Element} The element
29608      */
29609     getEl : function(){
29610         return this.el;  
29611     },
29612     
29613     /**
29614      * Destroys this Button and removes any listeners.
29615      */
29616     destroy : function(){
29617         Roo.ButtonToggleMgr.unregister(this);
29618         this.el.removeAllListeners();
29619         this.purgeListeners();
29620         this.el.remove();
29621     },
29622
29623     // private
29624     autoWidth : function(){
29625         if(this.el){
29626             this.el.setWidth("auto");
29627             if(Roo.isIE7 && Roo.isStrict){
29628                 var ib = this.el.child('button');
29629                 if(ib && ib.getWidth() > 20){
29630                     ib.clip();
29631                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29632                 }
29633             }
29634             if(this.minWidth){
29635                 if(this.hidden){
29636                     this.el.beginMeasure();
29637                 }
29638                 if(this.el.getWidth() < this.minWidth){
29639                     this.el.setWidth(this.minWidth);
29640                 }
29641                 if(this.hidden){
29642                     this.el.endMeasure();
29643                 }
29644             }
29645         }
29646     },
29647
29648     /**
29649      * Assigns this button's click handler
29650      * @param {Function} handler The function to call when the button is clicked
29651      * @param {Object} scope (optional) Scope for the function passed in
29652      */
29653     setHandler : function(handler, scope){
29654         this.handler = handler;
29655         this.scope = scope;  
29656     },
29657     
29658     /**
29659      * Sets this button's text
29660      * @param {String} text The button text
29661      */
29662     setText : function(text){
29663         this.text = text;
29664         if(this.el){
29665             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29666         }
29667         this.autoWidth();
29668     },
29669     
29670     /**
29671      * Gets the text for this button
29672      * @return {String} The button text
29673      */
29674     getText : function(){
29675         return this.text;  
29676     },
29677     
29678     /**
29679      * Show this button
29680      */
29681     show: function(){
29682         this.hidden = false;
29683         if(this.el){
29684             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29685         }
29686     },
29687     
29688     /**
29689      * Hide this button
29690      */
29691     hide: function(){
29692         this.hidden = true;
29693         if(this.el){
29694             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29695         }
29696     },
29697     
29698     /**
29699      * Convenience function for boolean show/hide
29700      * @param {Boolean} visible True to show, false to hide
29701      */
29702     setVisible: function(visible){
29703         if(visible) {
29704             this.show();
29705         }else{
29706             this.hide();
29707         }
29708     },
29709     
29710     /**
29711      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29712      * @param {Boolean} state (optional) Force a particular state
29713      */
29714     toggle : function(state){
29715         state = state === undefined ? !this.pressed : state;
29716         if(state != this.pressed){
29717             if(state){
29718                 this.el.addClass("x-btn-pressed");
29719                 this.pressed = true;
29720                 this.fireEvent("toggle", this, true);
29721             }else{
29722                 this.el.removeClass("x-btn-pressed");
29723                 this.pressed = false;
29724                 this.fireEvent("toggle", this, false);
29725             }
29726             if(this.toggleHandler){
29727                 this.toggleHandler.call(this.scope || this, this, state);
29728             }
29729         }
29730     },
29731     
29732     /**
29733      * Focus the button
29734      */
29735     focus : function(){
29736         this.el.child('button:first').focus();
29737     },
29738     
29739     /**
29740      * Disable this button
29741      */
29742     disable : function(){
29743         if(this.el){
29744             this.el.addClass("x-btn-disabled");
29745         }
29746         this.disabled = true;
29747     },
29748     
29749     /**
29750      * Enable this button
29751      */
29752     enable : function(){
29753         if(this.el){
29754             this.el.removeClass("x-btn-disabled");
29755         }
29756         this.disabled = false;
29757     },
29758
29759     /**
29760      * Convenience function for boolean enable/disable
29761      * @param {Boolean} enabled True to enable, false to disable
29762      */
29763     setDisabled : function(v){
29764         this[v !== true ? "enable" : "disable"]();
29765     },
29766
29767     // private
29768     onClick : function(e)
29769     {
29770         if(e){
29771             e.preventDefault();
29772         }
29773         if(e.button != 0){
29774             return;
29775         }
29776         if(!this.disabled){
29777             if(this.enableToggle){
29778                 this.toggle();
29779             }
29780             if(this.menu && !this.menu.isVisible()){
29781                 this.menu.show(this.el, this.menuAlign);
29782             }
29783             this.fireEvent("click", this, e);
29784             if(this.handler){
29785                 this.el.removeClass("x-btn-over");
29786                 this.handler.call(this.scope || this, this, e);
29787             }
29788         }
29789     },
29790     // private
29791     onMouseOver : function(e){
29792         if(!this.disabled){
29793             this.el.addClass("x-btn-over");
29794             this.fireEvent('mouseover', this, e);
29795         }
29796     },
29797     // private
29798     onMouseOut : function(e){
29799         if(!e.within(this.el,  true)){
29800             this.el.removeClass("x-btn-over");
29801             this.fireEvent('mouseout', this, e);
29802         }
29803     },
29804     // private
29805     onFocus : function(e){
29806         if(!this.disabled){
29807             this.el.addClass("x-btn-focus");
29808         }
29809     },
29810     // private
29811     onBlur : function(e){
29812         this.el.removeClass("x-btn-focus");
29813     },
29814     // private
29815     onMouseDown : function(e){
29816         if(!this.disabled && e.button == 0){
29817             this.el.addClass("x-btn-click");
29818             Roo.get(document).on('mouseup', this.onMouseUp, this);
29819         }
29820     },
29821     // private
29822     onMouseUp : function(e){
29823         if(e.button == 0){
29824             this.el.removeClass("x-btn-click");
29825             Roo.get(document).un('mouseup', this.onMouseUp, this);
29826         }
29827     },
29828     // private
29829     onMenuShow : function(e){
29830         this.el.addClass("x-btn-menu-active");
29831     },
29832     // private
29833     onMenuHide : function(e){
29834         this.el.removeClass("x-btn-menu-active");
29835     }   
29836 });
29837
29838 // Private utility class used by Button
29839 Roo.ButtonToggleMgr = function(){
29840    var groups = {};
29841    
29842    function toggleGroup(btn, state){
29843        if(state){
29844            var g = groups[btn.toggleGroup];
29845            for(var i = 0, l = g.length; i < l; i++){
29846                if(g[i] != btn){
29847                    g[i].toggle(false);
29848                }
29849            }
29850        }
29851    }
29852    
29853    return {
29854        register : function(btn){
29855            if(!btn.toggleGroup){
29856                return;
29857            }
29858            var g = groups[btn.toggleGroup];
29859            if(!g){
29860                g = groups[btn.toggleGroup] = [];
29861            }
29862            g.push(btn);
29863            btn.on("toggle", toggleGroup);
29864        },
29865        
29866        unregister : function(btn){
29867            if(!btn.toggleGroup){
29868                return;
29869            }
29870            var g = groups[btn.toggleGroup];
29871            if(g){
29872                g.remove(btn);
29873                btn.un("toggle", toggleGroup);
29874            }
29875        }
29876    };
29877 }();/*
29878  * Based on:
29879  * Ext JS Library 1.1.1
29880  * Copyright(c) 2006-2007, Ext JS, LLC.
29881  *
29882  * Originally Released Under LGPL - original licence link has changed is not relivant.
29883  *
29884  * Fork - LGPL
29885  * <script type="text/javascript">
29886  */
29887  
29888 /**
29889  * @class Roo.SplitButton
29890  * @extends Roo.Button
29891  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29892  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29893  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29894  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29895  * @cfg {String} arrowTooltip The title attribute of the arrow
29896  * @constructor
29897  * Create a new menu button
29898  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29899  * @param {Object} config The config object
29900  */
29901 Roo.SplitButton = function(renderTo, config){
29902     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29903     /**
29904      * @event arrowclick
29905      * Fires when this button's arrow is clicked
29906      * @param {SplitButton} this
29907      * @param {EventObject} e The click event
29908      */
29909     this.addEvents({"arrowclick":true});
29910 };
29911
29912 Roo.extend(Roo.SplitButton, Roo.Button, {
29913     render : function(renderTo){
29914         // this is one sweet looking template!
29915         var tpl = new Roo.Template(
29916             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29917             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29918             '<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>',
29919             "</tbody></table></td><td>",
29920             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29921             '<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>',
29922             "</tbody></table></td></tr></table>"
29923         );
29924         var btn = tpl.append(renderTo, [this.text, this.type], true);
29925         var btnEl = btn.child("button");
29926         if(this.cls){
29927             btn.addClass(this.cls);
29928         }
29929         if(this.icon){
29930             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29931         }
29932         if(this.iconCls){
29933             btnEl.addClass(this.iconCls);
29934             if(!this.cls){
29935                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29936             }
29937         }
29938         this.el = btn;
29939         if(this.handleMouseEvents){
29940             btn.on("mouseover", this.onMouseOver, this);
29941             btn.on("mouseout", this.onMouseOut, this);
29942             btn.on("mousedown", this.onMouseDown, this);
29943             btn.on("mouseup", this.onMouseUp, this);
29944         }
29945         btn.on(this.clickEvent, this.onClick, this);
29946         if(this.tooltip){
29947             if(typeof this.tooltip == 'object'){
29948                 Roo.QuickTips.tips(Roo.apply({
29949                       target: btnEl.id
29950                 }, this.tooltip));
29951             } else {
29952                 btnEl.dom[this.tooltipType] = this.tooltip;
29953             }
29954         }
29955         if(this.arrowTooltip){
29956             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29957         }
29958         if(this.hidden){
29959             this.hide();
29960         }
29961         if(this.disabled){
29962             this.disable();
29963         }
29964         if(this.pressed){
29965             this.el.addClass("x-btn-pressed");
29966         }
29967         if(Roo.isIE && !Roo.isIE7){
29968             this.autoWidth.defer(1, this);
29969         }else{
29970             this.autoWidth();
29971         }
29972         if(this.menu){
29973             this.menu.on("show", this.onMenuShow, this);
29974             this.menu.on("hide", this.onMenuHide, this);
29975         }
29976         this.fireEvent('render', this);
29977     },
29978
29979     // private
29980     autoWidth : function(){
29981         if(this.el){
29982             var tbl = this.el.child("table:first");
29983             var tbl2 = this.el.child("table:last");
29984             this.el.setWidth("auto");
29985             tbl.setWidth("auto");
29986             if(Roo.isIE7 && Roo.isStrict){
29987                 var ib = this.el.child('button:first');
29988                 if(ib && ib.getWidth() > 20){
29989                     ib.clip();
29990                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29991                 }
29992             }
29993             if(this.minWidth){
29994                 if(this.hidden){
29995                     this.el.beginMeasure();
29996                 }
29997                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29998                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29999                 }
30000                 if(this.hidden){
30001                     this.el.endMeasure();
30002                 }
30003             }
30004             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
30005         } 
30006     },
30007     /**
30008      * Sets this button's click handler
30009      * @param {Function} handler The function to call when the button is clicked
30010      * @param {Object} scope (optional) Scope for the function passed above
30011      */
30012     setHandler : function(handler, scope){
30013         this.handler = handler;
30014         this.scope = scope;  
30015     },
30016     
30017     /**
30018      * Sets this button's arrow click handler
30019      * @param {Function} handler The function to call when the arrow is clicked
30020      * @param {Object} scope (optional) Scope for the function passed above
30021      */
30022     setArrowHandler : function(handler, scope){
30023         this.arrowHandler = handler;
30024         this.scope = scope;  
30025     },
30026     
30027     /**
30028      * Focus the button
30029      */
30030     focus : function(){
30031         if(this.el){
30032             this.el.child("button:first").focus();
30033         }
30034     },
30035
30036     // private
30037     onClick : function(e){
30038         e.preventDefault();
30039         if(!this.disabled){
30040             if(e.getTarget(".x-btn-menu-arrow-wrap")){
30041                 if(this.menu && !this.menu.isVisible()){
30042                     this.menu.show(this.el, this.menuAlign);
30043                 }
30044                 this.fireEvent("arrowclick", this, e);
30045                 if(this.arrowHandler){
30046                     this.arrowHandler.call(this.scope || this, this, e);
30047                 }
30048             }else{
30049                 this.fireEvent("click", this, e);
30050                 if(this.handler){
30051                     this.handler.call(this.scope || this, this, e);
30052                 }
30053             }
30054         }
30055     },
30056     // private
30057     onMouseDown : function(e){
30058         if(!this.disabled){
30059             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
30060         }
30061     },
30062     // private
30063     onMouseUp : function(e){
30064         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
30065     }   
30066 });
30067
30068
30069 // backwards compat
30070 Roo.MenuButton = Roo.SplitButton;/*
30071  * Based on:
30072  * Ext JS Library 1.1.1
30073  * Copyright(c) 2006-2007, Ext JS, LLC.
30074  *
30075  * Originally Released Under LGPL - original licence link has changed is not relivant.
30076  *
30077  * Fork - LGPL
30078  * <script type="text/javascript">
30079  */
30080
30081 /**
30082  * @class Roo.Toolbar
30083  * Basic Toolbar class.
30084  * @constructor
30085  * Creates a new Toolbar
30086  * @param {Object} container The config object
30087  */ 
30088 Roo.Toolbar = function(container, buttons, config)
30089 {
30090     /// old consturctor format still supported..
30091     if(container instanceof Array){ // omit the container for later rendering
30092         buttons = container;
30093         config = buttons;
30094         container = null;
30095     }
30096     if (typeof(container) == 'object' && container.xtype) {
30097         config = container;
30098         container = config.container;
30099         buttons = config.buttons || []; // not really - use items!!
30100     }
30101     var xitems = [];
30102     if (config && config.items) {
30103         xitems = config.items;
30104         delete config.items;
30105     }
30106     Roo.apply(this, config);
30107     this.buttons = buttons;
30108     
30109     if(container){
30110         this.render(container);
30111     }
30112     this.xitems = xitems;
30113     Roo.each(xitems, function(b) {
30114         this.add(b);
30115     }, this);
30116     
30117 };
30118
30119 Roo.Toolbar.prototype = {
30120     /**
30121      * @cfg {Array} items
30122      * array of button configs or elements to add (will be converted to a MixedCollection)
30123      */
30124     
30125     /**
30126      * @cfg {String/HTMLElement/Element} container
30127      * The id or element that will contain the toolbar
30128      */
30129     // private
30130     render : function(ct){
30131         this.el = Roo.get(ct);
30132         if(this.cls){
30133             this.el.addClass(this.cls);
30134         }
30135         // using a table allows for vertical alignment
30136         // 100% width is needed by Safari...
30137         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30138         this.tr = this.el.child("tr", true);
30139         var autoId = 0;
30140         this.items = new Roo.util.MixedCollection(false, function(o){
30141             return o.id || ("item" + (++autoId));
30142         });
30143         if(this.buttons){
30144             this.add.apply(this, this.buttons);
30145             delete this.buttons;
30146         }
30147     },
30148
30149     /**
30150      * Adds element(s) to the toolbar -- this function takes a variable number of 
30151      * arguments of mixed type and adds them to the toolbar.
30152      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30153      * <ul>
30154      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30155      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30156      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30157      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30158      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30159      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30160      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30161      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30162      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30163      * </ul>
30164      * @param {Mixed} arg2
30165      * @param {Mixed} etc.
30166      */
30167     add : function(){
30168         var a = arguments, l = a.length;
30169         for(var i = 0; i < l; i++){
30170             this._add(a[i]);
30171         }
30172     },
30173     // private..
30174     _add : function(el) {
30175         
30176         if (el.xtype) {
30177             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30178         }
30179         
30180         if (el.applyTo){ // some kind of form field
30181             return this.addField(el);
30182         } 
30183         if (el.render){ // some kind of Toolbar.Item
30184             return this.addItem(el);
30185         }
30186         if (typeof el == "string"){ // string
30187             if(el == "separator" || el == "-"){
30188                 return this.addSeparator();
30189             }
30190             if (el == " "){
30191                 return this.addSpacer();
30192             }
30193             if(el == "->"){
30194                 return this.addFill();
30195             }
30196             return this.addText(el);
30197             
30198         }
30199         if(el.tagName){ // element
30200             return this.addElement(el);
30201         }
30202         if(typeof el == "object"){ // must be button config?
30203             return this.addButton(el);
30204         }
30205         // and now what?!?!
30206         return false;
30207         
30208     },
30209     
30210     /**
30211      * Add an Xtype element
30212      * @param {Object} xtype Xtype Object
30213      * @return {Object} created Object
30214      */
30215     addxtype : function(e){
30216         return this.add(e);  
30217     },
30218     
30219     /**
30220      * Returns the Element for this toolbar.
30221      * @return {Roo.Element}
30222      */
30223     getEl : function(){
30224         return this.el;  
30225     },
30226     
30227     /**
30228      * Adds a separator
30229      * @return {Roo.Toolbar.Item} The separator item
30230      */
30231     addSeparator : function(){
30232         return this.addItem(new Roo.Toolbar.Separator());
30233     },
30234
30235     /**
30236      * Adds a spacer element
30237      * @return {Roo.Toolbar.Spacer} The spacer item
30238      */
30239     addSpacer : function(){
30240         return this.addItem(new Roo.Toolbar.Spacer());
30241     },
30242
30243     /**
30244      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30245      * @return {Roo.Toolbar.Fill} The fill item
30246      */
30247     addFill : function(){
30248         return this.addItem(new Roo.Toolbar.Fill());
30249     },
30250
30251     /**
30252      * Adds any standard HTML element to the toolbar
30253      * @param {String/HTMLElement/Element} el The element or id of the element to add
30254      * @return {Roo.Toolbar.Item} The element's item
30255      */
30256     addElement : function(el){
30257         return this.addItem(new Roo.Toolbar.Item(el));
30258     },
30259     /**
30260      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30261      * @type Roo.util.MixedCollection  
30262      */
30263     items : false,
30264      
30265     /**
30266      * Adds any Toolbar.Item or subclass
30267      * @param {Roo.Toolbar.Item} item
30268      * @return {Roo.Toolbar.Item} The item
30269      */
30270     addItem : function(item){
30271         var td = this.nextBlock();
30272         item.render(td);
30273         this.items.add(item);
30274         return item;
30275     },
30276     
30277     /**
30278      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30279      * @param {Object/Array} config A button config or array of configs
30280      * @return {Roo.Toolbar.Button/Array}
30281      */
30282     addButton : function(config){
30283         if(config instanceof Array){
30284             var buttons = [];
30285             for(var i = 0, len = config.length; i < len; i++) {
30286                 buttons.push(this.addButton(config[i]));
30287             }
30288             return buttons;
30289         }
30290         var b = config;
30291         if(!(config instanceof Roo.Toolbar.Button)){
30292             b = config.split ?
30293                 new Roo.Toolbar.SplitButton(config) :
30294                 new Roo.Toolbar.Button(config);
30295         }
30296         var td = this.nextBlock();
30297         b.render(td);
30298         this.items.add(b);
30299         return b;
30300     },
30301     
30302     /**
30303      * Adds text to the toolbar
30304      * @param {String} text The text to add
30305      * @return {Roo.Toolbar.Item} The element's item
30306      */
30307     addText : function(text){
30308         return this.addItem(new Roo.Toolbar.TextItem(text));
30309     },
30310     
30311     /**
30312      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30313      * @param {Number} index The index where the item is to be inserted
30314      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30315      * @return {Roo.Toolbar.Button/Item}
30316      */
30317     insertButton : function(index, item){
30318         if(item instanceof Array){
30319             var buttons = [];
30320             for(var i = 0, len = item.length; i < len; i++) {
30321                buttons.push(this.insertButton(index + i, item[i]));
30322             }
30323             return buttons;
30324         }
30325         if (!(item instanceof Roo.Toolbar.Button)){
30326            item = new Roo.Toolbar.Button(item);
30327         }
30328         var td = document.createElement("td");
30329         this.tr.insertBefore(td, this.tr.childNodes[index]);
30330         item.render(td);
30331         this.items.insert(index, item);
30332         return item;
30333     },
30334     
30335     /**
30336      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30337      * @param {Object} config
30338      * @return {Roo.Toolbar.Item} The element's item
30339      */
30340     addDom : function(config, returnEl){
30341         var td = this.nextBlock();
30342         Roo.DomHelper.overwrite(td, config);
30343         var ti = new Roo.Toolbar.Item(td.firstChild);
30344         ti.render(td);
30345         this.items.add(ti);
30346         return ti;
30347     },
30348
30349     /**
30350      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30351      * @type Roo.util.MixedCollection  
30352      */
30353     fields : false,
30354     
30355     /**
30356      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30357      * Note: the field should not have been rendered yet. For a field that has already been
30358      * rendered, use {@link #addElement}.
30359      * @param {Roo.form.Field} field
30360      * @return {Roo.ToolbarItem}
30361      */
30362      
30363       
30364     addField : function(field) {
30365         if (!this.fields) {
30366             var autoId = 0;
30367             this.fields = new Roo.util.MixedCollection(false, function(o){
30368                 return o.id || ("item" + (++autoId));
30369             });
30370
30371         }
30372         
30373         var td = this.nextBlock();
30374         field.render(td);
30375         var ti = new Roo.Toolbar.Item(td.firstChild);
30376         ti.render(td);
30377         this.items.add(ti);
30378         this.fields.add(field);
30379         return ti;
30380     },
30381     /**
30382      * Hide the toolbar
30383      * @method hide
30384      */
30385      
30386       
30387     hide : function()
30388     {
30389         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30390         this.el.child('div').hide();
30391     },
30392     /**
30393      * Show the toolbar
30394      * @method show
30395      */
30396     show : function()
30397     {
30398         this.el.child('div').show();
30399     },
30400       
30401     // private
30402     nextBlock : function(){
30403         var td = document.createElement("td");
30404         this.tr.appendChild(td);
30405         return td;
30406     },
30407
30408     // private
30409     destroy : function(){
30410         if(this.items){ // rendered?
30411             Roo.destroy.apply(Roo, this.items.items);
30412         }
30413         if(this.fields){ // rendered?
30414             Roo.destroy.apply(Roo, this.fields.items);
30415         }
30416         Roo.Element.uncache(this.el, this.tr);
30417     }
30418 };
30419
30420 /**
30421  * @class Roo.Toolbar.Item
30422  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30423  * @constructor
30424  * Creates a new Item
30425  * @param {HTMLElement} el 
30426  */
30427 Roo.Toolbar.Item = function(el){
30428     var cfg = {};
30429     if (typeof (el.xtype) != 'undefined') {
30430         cfg = el;
30431         el = cfg.el;
30432     }
30433     
30434     this.el = Roo.getDom(el);
30435     this.id = Roo.id(this.el);
30436     this.hidden = false;
30437     
30438     this.addEvents({
30439          /**
30440              * @event render
30441              * Fires when the button is rendered
30442              * @param {Button} this
30443              */
30444         'render': true
30445     });
30446     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30447 };
30448 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30449 //Roo.Toolbar.Item.prototype = {
30450     
30451     /**
30452      * Get this item's HTML Element
30453      * @return {HTMLElement}
30454      */
30455     getEl : function(){
30456        return this.el;  
30457     },
30458
30459     // private
30460     render : function(td){
30461         
30462          this.td = td;
30463         td.appendChild(this.el);
30464         
30465         this.fireEvent('render', this);
30466     },
30467     
30468     /**
30469      * Removes and destroys this item.
30470      */
30471     destroy : function(){
30472         this.td.parentNode.removeChild(this.td);
30473     },
30474     
30475     /**
30476      * Shows this item.
30477      */
30478     show: function(){
30479         this.hidden = false;
30480         this.td.style.display = "";
30481     },
30482     
30483     /**
30484      * Hides this item.
30485      */
30486     hide: function(){
30487         this.hidden = true;
30488         this.td.style.display = "none";
30489     },
30490     
30491     /**
30492      * Convenience function for boolean show/hide.
30493      * @param {Boolean} visible true to show/false to hide
30494      */
30495     setVisible: function(visible){
30496         if(visible) {
30497             this.show();
30498         }else{
30499             this.hide();
30500         }
30501     },
30502     
30503     /**
30504      * Try to focus this item.
30505      */
30506     focus : function(){
30507         Roo.fly(this.el).focus();
30508     },
30509     
30510     /**
30511      * Disables this item.
30512      */
30513     disable : function(){
30514         Roo.fly(this.td).addClass("x-item-disabled");
30515         this.disabled = true;
30516         this.el.disabled = true;
30517     },
30518     
30519     /**
30520      * Enables this item.
30521      */
30522     enable : function(){
30523         Roo.fly(this.td).removeClass("x-item-disabled");
30524         this.disabled = false;
30525         this.el.disabled = false;
30526     }
30527 });
30528
30529
30530 /**
30531  * @class Roo.Toolbar.Separator
30532  * @extends Roo.Toolbar.Item
30533  * A simple toolbar separator class
30534  * @constructor
30535  * Creates a new Separator
30536  */
30537 Roo.Toolbar.Separator = function(cfg){
30538     
30539     var s = document.createElement("span");
30540     s.className = "ytb-sep";
30541     if (cfg) {
30542         cfg.el = s;
30543     }
30544     
30545     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30546 };
30547 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30548     enable:Roo.emptyFn,
30549     disable:Roo.emptyFn,
30550     focus:Roo.emptyFn
30551 });
30552
30553 /**
30554  * @class Roo.Toolbar.Spacer
30555  * @extends Roo.Toolbar.Item
30556  * A simple element that adds extra horizontal space to a toolbar.
30557  * @constructor
30558  * Creates a new Spacer
30559  */
30560 Roo.Toolbar.Spacer = function(cfg){
30561     var s = document.createElement("div");
30562     s.className = "ytb-spacer";
30563     if (cfg) {
30564         cfg.el = s;
30565     }
30566     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30567 };
30568 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30569     enable:Roo.emptyFn,
30570     disable:Roo.emptyFn,
30571     focus:Roo.emptyFn
30572 });
30573
30574 /**
30575  * @class Roo.Toolbar.Fill
30576  * @extends Roo.Toolbar.Spacer
30577  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30578  * @constructor
30579  * Creates a new Spacer
30580  */
30581 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30582     // private
30583     render : function(td){
30584         td.style.width = '100%';
30585         Roo.Toolbar.Fill.superclass.render.call(this, td);
30586     }
30587 });
30588
30589 /**
30590  * @class Roo.Toolbar.TextItem
30591  * @extends Roo.Toolbar.Item
30592  * A simple class that renders text directly into a toolbar.
30593  * @constructor
30594  * Creates a new TextItem
30595  * @cfg {string} text 
30596  */
30597 Roo.Toolbar.TextItem = function(cfg){
30598     var  text = cfg || "";
30599     if (typeof(cfg) == 'object') {
30600         text = cfg.text || "";
30601     }  else {
30602         cfg = null;
30603     }
30604     var s = document.createElement("span");
30605     s.className = "ytb-text";
30606     s.innerHTML = text;
30607     if (cfg) {
30608         cfg.el  = s;
30609     }
30610     
30611     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30612 };
30613 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30614     
30615      
30616     enable:Roo.emptyFn,
30617     disable:Roo.emptyFn,
30618     focus:Roo.emptyFn
30619 });
30620
30621 /**
30622  * @class Roo.Toolbar.Button
30623  * @extends Roo.Button
30624  * A button that renders into a toolbar.
30625  * @constructor
30626  * Creates a new Button
30627  * @param {Object} config A standard {@link Roo.Button} config object
30628  */
30629 Roo.Toolbar.Button = function(config){
30630     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30631 };
30632 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30633     render : function(td){
30634         this.td = td;
30635         Roo.Toolbar.Button.superclass.render.call(this, td);
30636     },
30637     
30638     /**
30639      * Removes and destroys this button
30640      */
30641     destroy : function(){
30642         Roo.Toolbar.Button.superclass.destroy.call(this);
30643         this.td.parentNode.removeChild(this.td);
30644     },
30645     
30646     /**
30647      * Shows this button
30648      */
30649     show: function(){
30650         this.hidden = false;
30651         this.td.style.display = "";
30652     },
30653     
30654     /**
30655      * Hides this button
30656      */
30657     hide: function(){
30658         this.hidden = true;
30659         this.td.style.display = "none";
30660     },
30661
30662     /**
30663      * Disables this item
30664      */
30665     disable : function(){
30666         Roo.fly(this.td).addClass("x-item-disabled");
30667         this.disabled = true;
30668     },
30669
30670     /**
30671      * Enables this item
30672      */
30673     enable : function(){
30674         Roo.fly(this.td).removeClass("x-item-disabled");
30675         this.disabled = false;
30676     }
30677 });
30678 // backwards compat
30679 Roo.ToolbarButton = Roo.Toolbar.Button;
30680
30681 /**
30682  * @class Roo.Toolbar.SplitButton
30683  * @extends Roo.SplitButton
30684  * A menu button that renders into a toolbar.
30685  * @constructor
30686  * Creates a new SplitButton
30687  * @param {Object} config A standard {@link Roo.SplitButton} config object
30688  */
30689 Roo.Toolbar.SplitButton = function(config){
30690     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30691 };
30692 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30693     render : function(td){
30694         this.td = td;
30695         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30696     },
30697     
30698     /**
30699      * Removes and destroys this button
30700      */
30701     destroy : function(){
30702         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30703         this.td.parentNode.removeChild(this.td);
30704     },
30705     
30706     /**
30707      * Shows this button
30708      */
30709     show: function(){
30710         this.hidden = false;
30711         this.td.style.display = "";
30712     },
30713     
30714     /**
30715      * Hides this button
30716      */
30717     hide: function(){
30718         this.hidden = true;
30719         this.td.style.display = "none";
30720     }
30721 });
30722
30723 // backwards compat
30724 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30725  * Based on:
30726  * Ext JS Library 1.1.1
30727  * Copyright(c) 2006-2007, Ext JS, LLC.
30728  *
30729  * Originally Released Under LGPL - original licence link has changed is not relivant.
30730  *
30731  * Fork - LGPL
30732  * <script type="text/javascript">
30733  */
30734  
30735 /**
30736  * @class Roo.PagingToolbar
30737  * @extends Roo.Toolbar
30738  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30739  * @constructor
30740  * Create a new PagingToolbar
30741  * @param {Object} config The config object
30742  */
30743 Roo.PagingToolbar = function(el, ds, config)
30744 {
30745     // old args format still supported... - xtype is prefered..
30746     if (typeof(el) == 'object' && el.xtype) {
30747         // created from xtype...
30748         config = el;
30749         ds = el.dataSource;
30750         el = config.container;
30751     }
30752     var items = [];
30753     if (config.items) {
30754         items = config.items;
30755         config.items = [];
30756     }
30757     
30758     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30759     this.ds = ds;
30760     this.cursor = 0;
30761     this.renderButtons(this.el);
30762     this.bind(ds);
30763     
30764     // supprot items array.
30765    
30766     Roo.each(items, function(e) {
30767         this.add(Roo.factory(e));
30768     },this);
30769     
30770 };
30771
30772 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30773     /**
30774      * @cfg {Roo.data.Store} dataSource
30775      * The underlying data store providing the paged data
30776      */
30777     /**
30778      * @cfg {String/HTMLElement/Element} container
30779      * container The id or element that will contain the toolbar
30780      */
30781     /**
30782      * @cfg {Boolean} displayInfo
30783      * True to display the displayMsg (defaults to false)
30784      */
30785     /**
30786      * @cfg {Number} pageSize
30787      * The number of records to display per page (defaults to 20)
30788      */
30789     pageSize: 20,
30790     /**
30791      * @cfg {String} displayMsg
30792      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30793      */
30794     displayMsg : 'Displaying {0} - {1} of {2}',
30795     /**
30796      * @cfg {String} emptyMsg
30797      * The message to display when no records are found (defaults to "No data to display")
30798      */
30799     emptyMsg : 'No data to display',
30800     /**
30801      * Customizable piece of the default paging text (defaults to "Page")
30802      * @type String
30803      */
30804     beforePageText : "Page",
30805     /**
30806      * Customizable piece of the default paging text (defaults to "of %0")
30807      * @type String
30808      */
30809     afterPageText : "of {0}",
30810     /**
30811      * Customizable piece of the default paging text (defaults to "First Page")
30812      * @type String
30813      */
30814     firstText : "First Page",
30815     /**
30816      * Customizable piece of the default paging text (defaults to "Previous Page")
30817      * @type String
30818      */
30819     prevText : "Previous Page",
30820     /**
30821      * Customizable piece of the default paging text (defaults to "Next Page")
30822      * @type String
30823      */
30824     nextText : "Next Page",
30825     /**
30826      * Customizable piece of the default paging text (defaults to "Last Page")
30827      * @type String
30828      */
30829     lastText : "Last Page",
30830     /**
30831      * Customizable piece of the default paging text (defaults to "Refresh")
30832      * @type String
30833      */
30834     refreshText : "Refresh",
30835
30836     // private
30837     renderButtons : function(el){
30838         Roo.PagingToolbar.superclass.render.call(this, el);
30839         this.first = this.addButton({
30840             tooltip: this.firstText,
30841             cls: "x-btn-icon x-grid-page-first",
30842             disabled: true,
30843             handler: this.onClick.createDelegate(this, ["first"])
30844         });
30845         this.prev = this.addButton({
30846             tooltip: this.prevText,
30847             cls: "x-btn-icon x-grid-page-prev",
30848             disabled: true,
30849             handler: this.onClick.createDelegate(this, ["prev"])
30850         });
30851         //this.addSeparator();
30852         this.add(this.beforePageText);
30853         this.field = Roo.get(this.addDom({
30854            tag: "input",
30855            type: "text",
30856            size: "3",
30857            value: "1",
30858            cls: "x-grid-page-number"
30859         }).el);
30860         this.field.on("keydown", this.onPagingKeydown, this);
30861         this.field.on("focus", function(){this.dom.select();});
30862         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30863         this.field.setHeight(18);
30864         //this.addSeparator();
30865         this.next = this.addButton({
30866             tooltip: this.nextText,
30867             cls: "x-btn-icon x-grid-page-next",
30868             disabled: true,
30869             handler: this.onClick.createDelegate(this, ["next"])
30870         });
30871         this.last = this.addButton({
30872             tooltip: this.lastText,
30873             cls: "x-btn-icon x-grid-page-last",
30874             disabled: true,
30875             handler: this.onClick.createDelegate(this, ["last"])
30876         });
30877         //this.addSeparator();
30878         this.loading = this.addButton({
30879             tooltip: this.refreshText,
30880             cls: "x-btn-icon x-grid-loading",
30881             handler: this.onClick.createDelegate(this, ["refresh"])
30882         });
30883
30884         if(this.displayInfo){
30885             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30886         }
30887     },
30888
30889     // private
30890     updateInfo : function(){
30891         if(this.displayEl){
30892             var count = this.ds.getCount();
30893             var msg = count == 0 ?
30894                 this.emptyMsg :
30895                 String.format(
30896                     this.displayMsg,
30897                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30898                 );
30899             this.displayEl.update(msg);
30900         }
30901     },
30902
30903     // private
30904     onLoad : function(ds, r, o){
30905        this.cursor = o.params ? o.params.start : 0;
30906        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30907
30908        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30909        this.field.dom.value = ap;
30910        this.first.setDisabled(ap == 1);
30911        this.prev.setDisabled(ap == 1);
30912        this.next.setDisabled(ap == ps);
30913        this.last.setDisabled(ap == ps);
30914        this.loading.enable();
30915        this.updateInfo();
30916     },
30917
30918     // private
30919     getPageData : function(){
30920         var total = this.ds.getTotalCount();
30921         return {
30922             total : total,
30923             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30924             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30925         };
30926     },
30927
30928     // private
30929     onLoadError : function(){
30930         this.loading.enable();
30931     },
30932
30933     // private
30934     onPagingKeydown : function(e){
30935         var k = e.getKey();
30936         var d = this.getPageData();
30937         if(k == e.RETURN){
30938             var v = this.field.dom.value, pageNum;
30939             if(!v || isNaN(pageNum = parseInt(v, 10))){
30940                 this.field.dom.value = d.activePage;
30941                 return;
30942             }
30943             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30944             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30945             e.stopEvent();
30946         }
30947         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))
30948         {
30949           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30950           this.field.dom.value = pageNum;
30951           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30952           e.stopEvent();
30953         }
30954         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30955         {
30956           var v = this.field.dom.value, pageNum; 
30957           var increment = (e.shiftKey) ? 10 : 1;
30958           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30959             increment *= -1;
30960           }
30961           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30962             this.field.dom.value = d.activePage;
30963             return;
30964           }
30965           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30966           {
30967             this.field.dom.value = parseInt(v, 10) + increment;
30968             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30969             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30970           }
30971           e.stopEvent();
30972         }
30973     },
30974
30975     // private
30976     beforeLoad : function(){
30977         if(this.loading){
30978             this.loading.disable();
30979         }
30980     },
30981
30982     // private
30983     onClick : function(which){
30984         var ds = this.ds;
30985         switch(which){
30986             case "first":
30987                 ds.load({params:{start: 0, limit: this.pageSize}});
30988             break;
30989             case "prev":
30990                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30991             break;
30992             case "next":
30993                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30994             break;
30995             case "last":
30996                 var total = ds.getTotalCount();
30997                 var extra = total % this.pageSize;
30998                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30999                 ds.load({params:{start: lastStart, limit: this.pageSize}});
31000             break;
31001             case "refresh":
31002                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
31003             break;
31004         }
31005     },
31006
31007     /**
31008      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
31009      * @param {Roo.data.Store} store The data store to unbind
31010      */
31011     unbind : function(ds){
31012         ds.un("beforeload", this.beforeLoad, this);
31013         ds.un("load", this.onLoad, this);
31014         ds.un("loadexception", this.onLoadError, this);
31015         ds.un("remove", this.updateInfo, this);
31016         ds.un("add", this.updateInfo, this);
31017         this.ds = undefined;
31018     },
31019
31020     /**
31021      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31022      * @param {Roo.data.Store} store The data store to bind
31023      */
31024     bind : function(ds){
31025         ds.on("beforeload", this.beforeLoad, this);
31026         ds.on("load", this.onLoad, this);
31027         ds.on("loadexception", this.onLoadError, this);
31028         ds.on("remove", this.updateInfo, this);
31029         ds.on("add", this.updateInfo, this);
31030         this.ds = ds;
31031     }
31032 });/*
31033  * Based on:
31034  * Ext JS Library 1.1.1
31035  * Copyright(c) 2006-2007, Ext JS, LLC.
31036  *
31037  * Originally Released Under LGPL - original licence link has changed is not relivant.
31038  *
31039  * Fork - LGPL
31040  * <script type="text/javascript">
31041  */
31042
31043 /**
31044  * @class Roo.Resizable
31045  * @extends Roo.util.Observable
31046  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
31047  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
31048  * 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
31049  * the element will be wrapped for you automatically.</p>
31050  * <p>Here is the list of valid resize handles:</p>
31051  * <pre>
31052 Value   Description
31053 ------  -------------------
31054  'n'     north
31055  's'     south
31056  'e'     east
31057  'w'     west
31058  'nw'    northwest
31059  'sw'    southwest
31060  'se'    southeast
31061  'ne'    northeast
31062  'hd'    horizontal drag
31063  'all'   all
31064 </pre>
31065  * <p>Here's an example showing the creation of a typical Resizable:</p>
31066  * <pre><code>
31067 var resizer = new Roo.Resizable("element-id", {
31068     handles: 'all',
31069     minWidth: 200,
31070     minHeight: 100,
31071     maxWidth: 500,
31072     maxHeight: 400,
31073     pinned: true
31074 });
31075 resizer.on("resize", myHandler);
31076 </code></pre>
31077  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
31078  * resizer.east.setDisplayed(false);</p>
31079  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
31080  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
31081  * resize operation's new size (defaults to [0, 0])
31082  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31083  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31084  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31085  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31086  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31087  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31088  * @cfg {Number} width The width of the element in pixels (defaults to null)
31089  * @cfg {Number} height The height of the element in pixels (defaults to null)
31090  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31091  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31092  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31093  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31094  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31095  * in favor of the handles config option (defaults to false)
31096  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31097  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31098  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31099  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31100  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31101  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31102  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31103  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31104  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31105  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31106  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31107  * @constructor
31108  * Create a new resizable component
31109  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31110  * @param {Object} config configuration options
31111   */
31112 Roo.Resizable = function(el, config)
31113 {
31114     this.el = Roo.get(el);
31115
31116     if(config && config.wrap){
31117         config.resizeChild = this.el;
31118         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31119         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31120         this.el.setStyle("overflow", "hidden");
31121         this.el.setPositioning(config.resizeChild.getPositioning());
31122         config.resizeChild.clearPositioning();
31123         if(!config.width || !config.height){
31124             var csize = config.resizeChild.getSize();
31125             this.el.setSize(csize.width, csize.height);
31126         }
31127         if(config.pinned && !config.adjustments){
31128             config.adjustments = "auto";
31129         }
31130     }
31131
31132     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31133     this.proxy.unselectable();
31134     this.proxy.enableDisplayMode('block');
31135
31136     Roo.apply(this, config);
31137
31138     if(this.pinned){
31139         this.disableTrackOver = true;
31140         this.el.addClass("x-resizable-pinned");
31141     }
31142     // if the element isn't positioned, make it relative
31143     var position = this.el.getStyle("position");
31144     if(position != "absolute" && position != "fixed"){
31145         this.el.setStyle("position", "relative");
31146     }
31147     if(!this.handles){ // no handles passed, must be legacy style
31148         this.handles = 's,e,se';
31149         if(this.multiDirectional){
31150             this.handles += ',n,w';
31151         }
31152     }
31153     if(this.handles == "all"){
31154         this.handles = "n s e w ne nw se sw";
31155     }
31156     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31157     var ps = Roo.Resizable.positions;
31158     for(var i = 0, len = hs.length; i < len; i++){
31159         if(hs[i] && ps[hs[i]]){
31160             var pos = ps[hs[i]];
31161             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31162         }
31163     }
31164     // legacy
31165     this.corner = this.southeast;
31166     
31167     // updateBox = the box can move..
31168     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31169         this.updateBox = true;
31170     }
31171
31172     this.activeHandle = null;
31173
31174     if(this.resizeChild){
31175         if(typeof this.resizeChild == "boolean"){
31176             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31177         }else{
31178             this.resizeChild = Roo.get(this.resizeChild, true);
31179         }
31180     }
31181     
31182     if(this.adjustments == "auto"){
31183         var rc = this.resizeChild;
31184         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31185         if(rc && (hw || hn)){
31186             rc.position("relative");
31187             rc.setLeft(hw ? hw.el.getWidth() : 0);
31188             rc.setTop(hn ? hn.el.getHeight() : 0);
31189         }
31190         this.adjustments = [
31191             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31192             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31193         ];
31194     }
31195
31196     if(this.draggable){
31197         this.dd = this.dynamic ?
31198             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31199         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31200     }
31201
31202     // public events
31203     this.addEvents({
31204         /**
31205          * @event beforeresize
31206          * Fired before resize is allowed. Set enabled to false to cancel resize.
31207          * @param {Roo.Resizable} this
31208          * @param {Roo.EventObject} e The mousedown event
31209          */
31210         "beforeresize" : true,
31211         /**
31212          * @event resizing
31213          * Fired a resizing.
31214          * @param {Roo.Resizable} this
31215          * @param {Number} x The new x position
31216          * @param {Number} y The new y position
31217          * @param {Number} w The new w width
31218          * @param {Number} h The new h hight
31219          * @param {Roo.EventObject} e The mouseup event
31220          */
31221         "resizing" : true,
31222         /**
31223          * @event resize
31224          * Fired after a resize.
31225          * @param {Roo.Resizable} this
31226          * @param {Number} width The new width
31227          * @param {Number} height The new height
31228          * @param {Roo.EventObject} e The mouseup event
31229          */
31230         "resize" : true
31231     });
31232
31233     if(this.width !== null && this.height !== null){
31234         this.resizeTo(this.width, this.height);
31235     }else{
31236         this.updateChildSize();
31237     }
31238     if(Roo.isIE){
31239         this.el.dom.style.zoom = 1;
31240     }
31241     Roo.Resizable.superclass.constructor.call(this);
31242 };
31243
31244 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31245         resizeChild : false,
31246         adjustments : [0, 0],
31247         minWidth : 5,
31248         minHeight : 5,
31249         maxWidth : 10000,
31250         maxHeight : 10000,
31251         enabled : true,
31252         animate : false,
31253         duration : .35,
31254         dynamic : false,
31255         handles : false,
31256         multiDirectional : false,
31257         disableTrackOver : false,
31258         easing : 'easeOutStrong',
31259         widthIncrement : 0,
31260         heightIncrement : 0,
31261         pinned : false,
31262         width : null,
31263         height : null,
31264         preserveRatio : false,
31265         transparent: false,
31266         minX: 0,
31267         minY: 0,
31268         draggable: false,
31269
31270         /**
31271          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31272          */
31273         constrainTo: undefined,
31274         /**
31275          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31276          */
31277         resizeRegion: undefined,
31278
31279
31280     /**
31281      * Perform a manual resize
31282      * @param {Number} width
31283      * @param {Number} height
31284      */
31285     resizeTo : function(width, height){
31286         this.el.setSize(width, height);
31287         this.updateChildSize();
31288         this.fireEvent("resize", this, width, height, null);
31289     },
31290
31291     // private
31292     startSizing : function(e, handle){
31293         this.fireEvent("beforeresize", this, e);
31294         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31295
31296             if(!this.overlay){
31297                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31298                 this.overlay.unselectable();
31299                 this.overlay.enableDisplayMode("block");
31300                 this.overlay.on("mousemove", this.onMouseMove, this);
31301                 this.overlay.on("mouseup", this.onMouseUp, this);
31302             }
31303             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31304
31305             this.resizing = true;
31306             this.startBox = this.el.getBox();
31307             this.startPoint = e.getXY();
31308             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31309                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31310
31311             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31312             this.overlay.show();
31313
31314             if(this.constrainTo) {
31315                 var ct = Roo.get(this.constrainTo);
31316                 this.resizeRegion = ct.getRegion().adjust(
31317                     ct.getFrameWidth('t'),
31318                     ct.getFrameWidth('l'),
31319                     -ct.getFrameWidth('b'),
31320                     -ct.getFrameWidth('r')
31321                 );
31322             }
31323
31324             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31325             this.proxy.show();
31326             this.proxy.setBox(this.startBox);
31327             if(!this.dynamic){
31328                 this.proxy.setStyle('visibility', 'visible');
31329             }
31330         }
31331     },
31332
31333     // private
31334     onMouseDown : function(handle, e){
31335         if(this.enabled){
31336             e.stopEvent();
31337             this.activeHandle = handle;
31338             this.startSizing(e, handle);
31339         }
31340     },
31341
31342     // private
31343     onMouseUp : function(e){
31344         var size = this.resizeElement();
31345         this.resizing = false;
31346         this.handleOut();
31347         this.overlay.hide();
31348         this.proxy.hide();
31349         this.fireEvent("resize", this, size.width, size.height, e);
31350     },
31351
31352     // private
31353     updateChildSize : function(){
31354         
31355         if(this.resizeChild){
31356             var el = this.el;
31357             var child = this.resizeChild;
31358             var adj = this.adjustments;
31359             if(el.dom.offsetWidth){
31360                 var b = el.getSize(true);
31361                 child.setSize(b.width+adj[0], b.height+adj[1]);
31362             }
31363             // Second call here for IE
31364             // The first call enables instant resizing and
31365             // the second call corrects scroll bars if they
31366             // exist
31367             if(Roo.isIE){
31368                 setTimeout(function(){
31369                     if(el.dom.offsetWidth){
31370                         var b = el.getSize(true);
31371                         child.setSize(b.width+adj[0], b.height+adj[1]);
31372                     }
31373                 }, 10);
31374             }
31375         }
31376     },
31377
31378     // private
31379     snap : function(value, inc, min){
31380         if(!inc || !value) {
31381             return value;
31382         }
31383         var newValue = value;
31384         var m = value % inc;
31385         if(m > 0){
31386             if(m > (inc/2)){
31387                 newValue = value + (inc-m);
31388             }else{
31389                 newValue = value - m;
31390             }
31391         }
31392         return Math.max(min, newValue);
31393     },
31394
31395     // private
31396     resizeElement : function(){
31397         var box = this.proxy.getBox();
31398         if(this.updateBox){
31399             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31400         }else{
31401             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31402         }
31403         this.updateChildSize();
31404         if(!this.dynamic){
31405             this.proxy.hide();
31406         }
31407         return box;
31408     },
31409
31410     // private
31411     constrain : function(v, diff, m, mx){
31412         if(v - diff < m){
31413             diff = v - m;
31414         }else if(v - diff > mx){
31415             diff = mx - v;
31416         }
31417         return diff;
31418     },
31419
31420     // private
31421     onMouseMove : function(e){
31422         
31423         if(this.enabled){
31424             try{// try catch so if something goes wrong the user doesn't get hung
31425
31426             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31427                 return;
31428             }
31429
31430             //var curXY = this.startPoint;
31431             var curSize = this.curSize || this.startBox;
31432             var x = this.startBox.x, y = this.startBox.y;
31433             var ox = x, oy = y;
31434             var w = curSize.width, h = curSize.height;
31435             var ow = w, oh = h;
31436             var mw = this.minWidth, mh = this.minHeight;
31437             var mxw = this.maxWidth, mxh = this.maxHeight;
31438             var wi = this.widthIncrement;
31439             var hi = this.heightIncrement;
31440
31441             var eventXY = e.getXY();
31442             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31443             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31444
31445             var pos = this.activeHandle.position;
31446
31447             switch(pos){
31448                 case "east":
31449                     w += diffX;
31450                     w = Math.min(Math.max(mw, w), mxw);
31451                     break;
31452              
31453                 case "south":
31454                     h += diffY;
31455                     h = Math.min(Math.max(mh, h), mxh);
31456                     break;
31457                 case "southeast":
31458                     w += diffX;
31459                     h += diffY;
31460                     w = Math.min(Math.max(mw, w), mxw);
31461                     h = Math.min(Math.max(mh, h), mxh);
31462                     break;
31463                 case "north":
31464                     diffY = this.constrain(h, diffY, mh, mxh);
31465                     y += diffY;
31466                     h -= diffY;
31467                     break;
31468                 case "hdrag":
31469                     
31470                     if (wi) {
31471                         var adiffX = Math.abs(diffX);
31472                         var sub = (adiffX % wi); // how much 
31473                         if (sub > (wi/2)) { // far enough to snap
31474                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31475                         } else {
31476                             // remove difference.. 
31477                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31478                         }
31479                     }
31480                     x += diffX;
31481                     x = Math.max(this.minX, x);
31482                     break;
31483                 case "west":
31484                     diffX = this.constrain(w, diffX, mw, mxw);
31485                     x += diffX;
31486                     w -= diffX;
31487                     break;
31488                 case "northeast":
31489                     w += diffX;
31490                     w = Math.min(Math.max(mw, w), mxw);
31491                     diffY = this.constrain(h, diffY, mh, mxh);
31492                     y += diffY;
31493                     h -= diffY;
31494                     break;
31495                 case "northwest":
31496                     diffX = this.constrain(w, diffX, mw, mxw);
31497                     diffY = this.constrain(h, diffY, mh, mxh);
31498                     y += diffY;
31499                     h -= diffY;
31500                     x += diffX;
31501                     w -= diffX;
31502                     break;
31503                case "southwest":
31504                     diffX = this.constrain(w, diffX, mw, mxw);
31505                     h += diffY;
31506                     h = Math.min(Math.max(mh, h), mxh);
31507                     x += diffX;
31508                     w -= diffX;
31509                     break;
31510             }
31511
31512             var sw = this.snap(w, wi, mw);
31513             var sh = this.snap(h, hi, mh);
31514             if(sw != w || sh != h){
31515                 switch(pos){
31516                     case "northeast":
31517                         y -= sh - h;
31518                     break;
31519                     case "north":
31520                         y -= sh - h;
31521                         break;
31522                     case "southwest":
31523                         x -= sw - w;
31524                     break;
31525                     case "west":
31526                         x -= sw - w;
31527                         break;
31528                     case "northwest":
31529                         x -= sw - w;
31530                         y -= sh - h;
31531                     break;
31532                 }
31533                 w = sw;
31534                 h = sh;
31535             }
31536
31537             if(this.preserveRatio){
31538                 switch(pos){
31539                     case "southeast":
31540                     case "east":
31541                         h = oh * (w/ow);
31542                         h = Math.min(Math.max(mh, h), mxh);
31543                         w = ow * (h/oh);
31544                        break;
31545                     case "south":
31546                         w = ow * (h/oh);
31547                         w = Math.min(Math.max(mw, w), mxw);
31548                         h = oh * (w/ow);
31549                         break;
31550                     case "northeast":
31551                         w = ow * (h/oh);
31552                         w = Math.min(Math.max(mw, w), mxw);
31553                         h = oh * (w/ow);
31554                     break;
31555                     case "north":
31556                         var tw = w;
31557                         w = ow * (h/oh);
31558                         w = Math.min(Math.max(mw, w), mxw);
31559                         h = oh * (w/ow);
31560                         x += (tw - w) / 2;
31561                         break;
31562                     case "southwest":
31563                         h = oh * (w/ow);
31564                         h = Math.min(Math.max(mh, h), mxh);
31565                         var tw = w;
31566                         w = ow * (h/oh);
31567                         x += tw - w;
31568                         break;
31569                     case "west":
31570                         var th = h;
31571                         h = oh * (w/ow);
31572                         h = Math.min(Math.max(mh, h), mxh);
31573                         y += (th - h) / 2;
31574                         var tw = w;
31575                         w = ow * (h/oh);
31576                         x += tw - w;
31577                        break;
31578                     case "northwest":
31579                         var tw = w;
31580                         var th = h;
31581                         h = oh * (w/ow);
31582                         h = Math.min(Math.max(mh, h), mxh);
31583                         w = ow * (h/oh);
31584                         y += th - h;
31585                         x += tw - w;
31586                        break;
31587
31588                 }
31589             }
31590             if (pos == 'hdrag') {
31591                 w = ow;
31592             }
31593             this.proxy.setBounds(x, y, w, h);
31594             if(this.dynamic){
31595                 this.resizeElement();
31596             }
31597             }catch(e){}
31598         }
31599         this.fireEvent("resizing", this, x, y, w, h, e);
31600     },
31601
31602     // private
31603     handleOver : function(){
31604         if(this.enabled){
31605             this.el.addClass("x-resizable-over");
31606         }
31607     },
31608
31609     // private
31610     handleOut : function(){
31611         if(!this.resizing){
31612             this.el.removeClass("x-resizable-over");
31613         }
31614     },
31615
31616     /**
31617      * Returns the element this component is bound to.
31618      * @return {Roo.Element}
31619      */
31620     getEl : function(){
31621         return this.el;
31622     },
31623
31624     /**
31625      * Returns the resizeChild element (or null).
31626      * @return {Roo.Element}
31627      */
31628     getResizeChild : function(){
31629         return this.resizeChild;
31630     },
31631     groupHandler : function()
31632     {
31633         
31634     },
31635     /**
31636      * Destroys this resizable. If the element was wrapped and
31637      * removeEl is not true then the element remains.
31638      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31639      */
31640     destroy : function(removeEl){
31641         this.proxy.remove();
31642         if(this.overlay){
31643             this.overlay.removeAllListeners();
31644             this.overlay.remove();
31645         }
31646         var ps = Roo.Resizable.positions;
31647         for(var k in ps){
31648             if(typeof ps[k] != "function" && this[ps[k]]){
31649                 var h = this[ps[k]];
31650                 h.el.removeAllListeners();
31651                 h.el.remove();
31652             }
31653         }
31654         if(removeEl){
31655             this.el.update("");
31656             this.el.remove();
31657         }
31658     }
31659 });
31660
31661 // private
31662 // hash to map config positions to true positions
31663 Roo.Resizable.positions = {
31664     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31665     hd: "hdrag"
31666 };
31667
31668 // private
31669 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31670     if(!this.tpl){
31671         // only initialize the template if resizable is used
31672         var tpl = Roo.DomHelper.createTemplate(
31673             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31674         );
31675         tpl.compile();
31676         Roo.Resizable.Handle.prototype.tpl = tpl;
31677     }
31678     this.position = pos;
31679     this.rz = rz;
31680     // show north drag fro topdra
31681     var handlepos = pos == 'hdrag' ? 'north' : pos;
31682     
31683     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31684     if (pos == 'hdrag') {
31685         this.el.setStyle('cursor', 'pointer');
31686     }
31687     this.el.unselectable();
31688     if(transparent){
31689         this.el.setOpacity(0);
31690     }
31691     this.el.on("mousedown", this.onMouseDown, this);
31692     if(!disableTrackOver){
31693         this.el.on("mouseover", this.onMouseOver, this);
31694         this.el.on("mouseout", this.onMouseOut, this);
31695     }
31696 };
31697
31698 // private
31699 Roo.Resizable.Handle.prototype = {
31700     afterResize : function(rz){
31701         Roo.log('after?');
31702         // do nothing
31703     },
31704     // private
31705     onMouseDown : function(e){
31706         this.rz.onMouseDown(this, e);
31707     },
31708     // private
31709     onMouseOver : function(e){
31710         this.rz.handleOver(this, e);
31711     },
31712     // private
31713     onMouseOut : function(e){
31714         this.rz.handleOut(this, e);
31715     }
31716 };/*
31717  * Based on:
31718  * Ext JS Library 1.1.1
31719  * Copyright(c) 2006-2007, Ext JS, LLC.
31720  *
31721  * Originally Released Under LGPL - original licence link has changed is not relivant.
31722  *
31723  * Fork - LGPL
31724  * <script type="text/javascript">
31725  */
31726
31727 /**
31728  * @class Roo.Editor
31729  * @extends Roo.Component
31730  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31731  * @constructor
31732  * Create a new Editor
31733  * @param {Roo.form.Field} field The Field object (or descendant)
31734  * @param {Object} config The config object
31735  */
31736 Roo.Editor = function(field, config){
31737     Roo.Editor.superclass.constructor.call(this, config);
31738     this.field = field;
31739     this.addEvents({
31740         /**
31741              * @event beforestartedit
31742              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31743              * false from the handler of this event.
31744              * @param {Editor} this
31745              * @param {Roo.Element} boundEl The underlying element bound to this editor
31746              * @param {Mixed} value The field value being set
31747              */
31748         "beforestartedit" : true,
31749         /**
31750              * @event startedit
31751              * Fires when this editor is displayed
31752              * @param {Roo.Element} boundEl The underlying element bound to this editor
31753              * @param {Mixed} value The starting field value
31754              */
31755         "startedit" : true,
31756         /**
31757              * @event beforecomplete
31758              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31759              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31760              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31761              * event will not fire since no edit actually occurred.
31762              * @param {Editor} this
31763              * @param {Mixed} value The current field value
31764              * @param {Mixed} startValue The original field value
31765              */
31766         "beforecomplete" : true,
31767         /**
31768              * @event complete
31769              * Fires after editing is complete and any changed value has been written to the underlying field.
31770              * @param {Editor} this
31771              * @param {Mixed} value The current field value
31772              * @param {Mixed} startValue The original field value
31773              */
31774         "complete" : true,
31775         /**
31776          * @event specialkey
31777          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31778          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31779          * @param {Roo.form.Field} this
31780          * @param {Roo.EventObject} e The event object
31781          */
31782         "specialkey" : true
31783     });
31784 };
31785
31786 Roo.extend(Roo.Editor, Roo.Component, {
31787     /**
31788      * @cfg {Boolean/String} autosize
31789      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31790      * or "height" to adopt the height only (defaults to false)
31791      */
31792     /**
31793      * @cfg {Boolean} revertInvalid
31794      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31795      * validation fails (defaults to true)
31796      */
31797     /**
31798      * @cfg {Boolean} ignoreNoChange
31799      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31800      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31801      * will never be ignored.
31802      */
31803     /**
31804      * @cfg {Boolean} hideEl
31805      * False to keep the bound element visible while the editor is displayed (defaults to true)
31806      */
31807     /**
31808      * @cfg {Mixed} value
31809      * The data value of the underlying field (defaults to "")
31810      */
31811     value : "",
31812     /**
31813      * @cfg {String} alignment
31814      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31815      */
31816     alignment: "c-c?",
31817     /**
31818      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31819      * for bottom-right shadow (defaults to "frame")
31820      */
31821     shadow : "frame",
31822     /**
31823      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31824      */
31825     constrain : false,
31826     /**
31827      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31828      */
31829     completeOnEnter : false,
31830     /**
31831      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31832      */
31833     cancelOnEsc : false,
31834     /**
31835      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31836      */
31837     updateEl : false,
31838
31839     // private
31840     onRender : function(ct, position){
31841         this.el = new Roo.Layer({
31842             shadow: this.shadow,
31843             cls: "x-editor",
31844             parentEl : ct,
31845             shim : this.shim,
31846             shadowOffset:4,
31847             id: this.id,
31848             constrain: this.constrain
31849         });
31850         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31851         if(this.field.msgTarget != 'title'){
31852             this.field.msgTarget = 'qtip';
31853         }
31854         this.field.render(this.el);
31855         if(Roo.isGecko){
31856             this.field.el.dom.setAttribute('autocomplete', 'off');
31857         }
31858         this.field.on("specialkey", this.onSpecialKey, this);
31859         if(this.swallowKeys){
31860             this.field.el.swallowEvent(['keydown','keypress']);
31861         }
31862         this.field.show();
31863         this.field.on("blur", this.onBlur, this);
31864         if(this.field.grow){
31865             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31866         }
31867     },
31868
31869     onSpecialKey : function(field, e)
31870     {
31871         //Roo.log('editor onSpecialKey');
31872         if(this.completeOnEnter && e.getKey() == e.ENTER){
31873             e.stopEvent();
31874             this.completeEdit();
31875             return;
31876         }
31877         // do not fire special key otherwise it might hide close the editor...
31878         if(e.getKey() == e.ENTER){    
31879             return;
31880         }
31881         if(this.cancelOnEsc && e.getKey() == e.ESC){
31882             this.cancelEdit();
31883             return;
31884         } 
31885         this.fireEvent('specialkey', field, e);
31886     
31887     },
31888
31889     /**
31890      * Starts the editing process and shows the editor.
31891      * @param {String/HTMLElement/Element} el The element to edit
31892      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31893       * to the innerHTML of el.
31894      */
31895     startEdit : function(el, value){
31896         if(this.editing){
31897             this.completeEdit();
31898         }
31899         this.boundEl = Roo.get(el);
31900         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31901         if(!this.rendered){
31902             this.render(this.parentEl || document.body);
31903         }
31904         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31905             return;
31906         }
31907         this.startValue = v;
31908         this.field.setValue(v);
31909         if(this.autoSize){
31910             var sz = this.boundEl.getSize();
31911             switch(this.autoSize){
31912                 case "width":
31913                 this.setSize(sz.width,  "");
31914                 break;
31915                 case "height":
31916                 this.setSize("",  sz.height);
31917                 break;
31918                 default:
31919                 this.setSize(sz.width,  sz.height);
31920             }
31921         }
31922         this.el.alignTo(this.boundEl, this.alignment);
31923         this.editing = true;
31924         if(Roo.QuickTips){
31925             Roo.QuickTips.disable();
31926         }
31927         this.show();
31928     },
31929
31930     /**
31931      * Sets the height and width of this editor.
31932      * @param {Number} width The new width
31933      * @param {Number} height The new height
31934      */
31935     setSize : function(w, h){
31936         this.field.setSize(w, h);
31937         if(this.el){
31938             this.el.sync();
31939         }
31940     },
31941
31942     /**
31943      * Realigns the editor to the bound field based on the current alignment config value.
31944      */
31945     realign : function(){
31946         this.el.alignTo(this.boundEl, this.alignment);
31947     },
31948
31949     /**
31950      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31951      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31952      */
31953     completeEdit : function(remainVisible){
31954         if(!this.editing){
31955             return;
31956         }
31957         var v = this.getValue();
31958         if(this.revertInvalid !== false && !this.field.isValid()){
31959             v = this.startValue;
31960             this.cancelEdit(true);
31961         }
31962         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31963             this.editing = false;
31964             this.hide();
31965             return;
31966         }
31967         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31968             this.editing = false;
31969             if(this.updateEl && this.boundEl){
31970                 this.boundEl.update(v);
31971             }
31972             if(remainVisible !== true){
31973                 this.hide();
31974             }
31975             this.fireEvent("complete", this, v, this.startValue);
31976         }
31977     },
31978
31979     // private
31980     onShow : function(){
31981         this.el.show();
31982         if(this.hideEl !== false){
31983             this.boundEl.hide();
31984         }
31985         this.field.show();
31986         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31987             this.fixIEFocus = true;
31988             this.deferredFocus.defer(50, this);
31989         }else{
31990             this.field.focus();
31991         }
31992         this.fireEvent("startedit", this.boundEl, this.startValue);
31993     },
31994
31995     deferredFocus : function(){
31996         if(this.editing){
31997             this.field.focus();
31998         }
31999     },
32000
32001     /**
32002      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
32003      * reverted to the original starting value.
32004      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
32005      * cancel (defaults to false)
32006      */
32007     cancelEdit : function(remainVisible){
32008         if(this.editing){
32009             this.setValue(this.startValue);
32010             if(remainVisible !== true){
32011                 this.hide();
32012             }
32013         }
32014     },
32015
32016     // private
32017     onBlur : function(){
32018         if(this.allowBlur !== true && this.editing){
32019             this.completeEdit();
32020         }
32021     },
32022
32023     // private
32024     onHide : function(){
32025         if(this.editing){
32026             this.completeEdit();
32027             return;
32028         }
32029         this.field.blur();
32030         if(this.field.collapse){
32031             this.field.collapse();
32032         }
32033         this.el.hide();
32034         if(this.hideEl !== false){
32035             this.boundEl.show();
32036         }
32037         if(Roo.QuickTips){
32038             Roo.QuickTips.enable();
32039         }
32040     },
32041
32042     /**
32043      * Sets the data value of the editor
32044      * @param {Mixed} value Any valid value supported by the underlying field
32045      */
32046     setValue : function(v){
32047         this.field.setValue(v);
32048     },
32049
32050     /**
32051      * Gets the data value of the editor
32052      * @return {Mixed} The data value
32053      */
32054     getValue : function(){
32055         return this.field.getValue();
32056     }
32057 });/*
32058  * Based on:
32059  * Ext JS Library 1.1.1
32060  * Copyright(c) 2006-2007, Ext JS, LLC.
32061  *
32062  * Originally Released Under LGPL - original licence link has changed is not relivant.
32063  *
32064  * Fork - LGPL
32065  * <script type="text/javascript">
32066  */
32067  
32068 /**
32069  * @class Roo.BasicDialog
32070  * @extends Roo.util.Observable
32071  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
32072  * <pre><code>
32073 var dlg = new Roo.BasicDialog("my-dlg", {
32074     height: 200,
32075     width: 300,
32076     minHeight: 100,
32077     minWidth: 150,
32078     modal: true,
32079     proxyDrag: true,
32080     shadow: true
32081 });
32082 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32083 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32084 dlg.addButton('Cancel', dlg.hide, dlg);
32085 dlg.show();
32086 </code></pre>
32087   <b>A Dialog should always be a direct child of the body element.</b>
32088  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32089  * @cfg {String} title Default text to display in the title bar (defaults to null)
32090  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32091  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32092  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32093  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32094  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32095  * (defaults to null with no animation)
32096  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32097  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32098  * property for valid values (defaults to 'all')
32099  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32100  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32101  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32102  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32103  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32104  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32105  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32106  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32107  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32108  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32109  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32110  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32111  * draggable = true (defaults to false)
32112  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32113  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32114  * shadow (defaults to false)
32115  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32116  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32117  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32118  * @cfg {Array} buttons Array of buttons
32119  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32120  * @constructor
32121  * Create a new BasicDialog.
32122  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32123  * @param {Object} config Configuration options
32124  */
32125 Roo.BasicDialog = function(el, config){
32126     this.el = Roo.get(el);
32127     var dh = Roo.DomHelper;
32128     if(!this.el && config && config.autoCreate){
32129         if(typeof config.autoCreate == "object"){
32130             if(!config.autoCreate.id){
32131                 config.autoCreate.id = el;
32132             }
32133             this.el = dh.append(document.body,
32134                         config.autoCreate, true);
32135         }else{
32136             this.el = dh.append(document.body,
32137                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32138         }
32139     }
32140     el = this.el;
32141     el.setDisplayed(true);
32142     el.hide = this.hideAction;
32143     this.id = el.id;
32144     el.addClass("x-dlg");
32145
32146     Roo.apply(this, config);
32147
32148     this.proxy = el.createProxy("x-dlg-proxy");
32149     this.proxy.hide = this.hideAction;
32150     this.proxy.setOpacity(.5);
32151     this.proxy.hide();
32152
32153     if(config.width){
32154         el.setWidth(config.width);
32155     }
32156     if(config.height){
32157         el.setHeight(config.height);
32158     }
32159     this.size = el.getSize();
32160     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32161         this.xy = [config.x,config.y];
32162     }else{
32163         this.xy = el.getCenterXY(true);
32164     }
32165     /** The header element @type Roo.Element */
32166     this.header = el.child("> .x-dlg-hd");
32167     /** The body element @type Roo.Element */
32168     this.body = el.child("> .x-dlg-bd");
32169     /** The footer element @type Roo.Element */
32170     this.footer = el.child("> .x-dlg-ft");
32171
32172     if(!this.header){
32173         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32174     }
32175     if(!this.body){
32176         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32177     }
32178
32179     this.header.unselectable();
32180     if(this.title){
32181         this.header.update(this.title);
32182     }
32183     // this element allows the dialog to be focused for keyboard event
32184     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32185     this.focusEl.swallowEvent("click", true);
32186
32187     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32188
32189     // wrap the body and footer for special rendering
32190     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32191     if(this.footer){
32192         this.bwrap.dom.appendChild(this.footer.dom);
32193     }
32194
32195     this.bg = this.el.createChild({
32196         tag: "div", cls:"x-dlg-bg",
32197         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32198     });
32199     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32200
32201
32202     if(this.autoScroll !== false && !this.autoTabs){
32203         this.body.setStyle("overflow", "auto");
32204     }
32205
32206     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32207
32208     if(this.closable !== false){
32209         this.el.addClass("x-dlg-closable");
32210         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32211         this.close.on("click", this.closeClick, this);
32212         this.close.addClassOnOver("x-dlg-close-over");
32213     }
32214     if(this.collapsible !== false){
32215         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32216         this.collapseBtn.on("click", this.collapseClick, this);
32217         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32218         this.header.on("dblclick", this.collapseClick, this);
32219     }
32220     if(this.resizable !== false){
32221         this.el.addClass("x-dlg-resizable");
32222         this.resizer = new Roo.Resizable(el, {
32223             minWidth: this.minWidth || 80,
32224             minHeight:this.minHeight || 80,
32225             handles: this.resizeHandles || "all",
32226             pinned: true
32227         });
32228         this.resizer.on("beforeresize", this.beforeResize, this);
32229         this.resizer.on("resize", this.onResize, this);
32230     }
32231     if(this.draggable !== false){
32232         el.addClass("x-dlg-draggable");
32233         if (!this.proxyDrag) {
32234             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32235         }
32236         else {
32237             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32238         }
32239         dd.setHandleElId(this.header.id);
32240         dd.endDrag = this.endMove.createDelegate(this);
32241         dd.startDrag = this.startMove.createDelegate(this);
32242         dd.onDrag = this.onDrag.createDelegate(this);
32243         dd.scroll = false;
32244         this.dd = dd;
32245     }
32246     if(this.modal){
32247         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32248         this.mask.enableDisplayMode("block");
32249         this.mask.hide();
32250         this.el.addClass("x-dlg-modal");
32251     }
32252     if(this.shadow){
32253         this.shadow = new Roo.Shadow({
32254             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32255             offset : this.shadowOffset
32256         });
32257     }else{
32258         this.shadowOffset = 0;
32259     }
32260     if(Roo.useShims && this.shim !== false){
32261         this.shim = this.el.createShim();
32262         this.shim.hide = this.hideAction;
32263         this.shim.hide();
32264     }else{
32265         this.shim = false;
32266     }
32267     if(this.autoTabs){
32268         this.initTabs();
32269     }
32270     if (this.buttons) { 
32271         var bts= this.buttons;
32272         this.buttons = [];
32273         Roo.each(bts, function(b) {
32274             this.addButton(b);
32275         }, this);
32276     }
32277     
32278     
32279     this.addEvents({
32280         /**
32281          * @event keydown
32282          * Fires when a key is pressed
32283          * @param {Roo.BasicDialog} this
32284          * @param {Roo.EventObject} e
32285          */
32286         "keydown" : true,
32287         /**
32288          * @event move
32289          * Fires when this dialog is moved by the user.
32290          * @param {Roo.BasicDialog} this
32291          * @param {Number} x The new page X
32292          * @param {Number} y The new page Y
32293          */
32294         "move" : true,
32295         /**
32296          * @event resize
32297          * Fires when this dialog is resized by the user.
32298          * @param {Roo.BasicDialog} this
32299          * @param {Number} width The new width
32300          * @param {Number} height The new height
32301          */
32302         "resize" : true,
32303         /**
32304          * @event beforehide
32305          * Fires before this dialog is hidden.
32306          * @param {Roo.BasicDialog} this
32307          */
32308         "beforehide" : true,
32309         /**
32310          * @event hide
32311          * Fires when this dialog is hidden.
32312          * @param {Roo.BasicDialog} this
32313          */
32314         "hide" : true,
32315         /**
32316          * @event beforeshow
32317          * Fires before this dialog is shown.
32318          * @param {Roo.BasicDialog} this
32319          */
32320         "beforeshow" : true,
32321         /**
32322          * @event show
32323          * Fires when this dialog is shown.
32324          * @param {Roo.BasicDialog} this
32325          */
32326         "show" : true
32327     });
32328     el.on("keydown", this.onKeyDown, this);
32329     el.on("mousedown", this.toFront, this);
32330     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32331     this.el.hide();
32332     Roo.DialogManager.register(this);
32333     Roo.BasicDialog.superclass.constructor.call(this);
32334 };
32335
32336 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32337     shadowOffset: Roo.isIE ? 6 : 5,
32338     minHeight: 80,
32339     minWidth: 200,
32340     minButtonWidth: 75,
32341     defaultButton: null,
32342     buttonAlign: "right",
32343     tabTag: 'div',
32344     firstShow: true,
32345
32346     /**
32347      * Sets the dialog title text
32348      * @param {String} text The title text to display
32349      * @return {Roo.BasicDialog} this
32350      */
32351     setTitle : function(text){
32352         this.header.update(text);
32353         return this;
32354     },
32355
32356     // private
32357     closeClick : function(){
32358         this.hide();
32359     },
32360
32361     // private
32362     collapseClick : function(){
32363         this[this.collapsed ? "expand" : "collapse"]();
32364     },
32365
32366     /**
32367      * Collapses the dialog to its minimized state (only the title bar is visible).
32368      * Equivalent to the user clicking the collapse dialog button.
32369      */
32370     collapse : function(){
32371         if(!this.collapsed){
32372             this.collapsed = true;
32373             this.el.addClass("x-dlg-collapsed");
32374             this.restoreHeight = this.el.getHeight();
32375             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32376         }
32377     },
32378
32379     /**
32380      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32381      * clicking the expand dialog button.
32382      */
32383     expand : function(){
32384         if(this.collapsed){
32385             this.collapsed = false;
32386             this.el.removeClass("x-dlg-collapsed");
32387             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32388         }
32389     },
32390
32391     /**
32392      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32393      * @return {Roo.TabPanel} The tabs component
32394      */
32395     initTabs : function(){
32396         var tabs = this.getTabs();
32397         while(tabs.getTab(0)){
32398             tabs.removeTab(0);
32399         }
32400         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32401             var dom = el.dom;
32402             tabs.addTab(Roo.id(dom), dom.title);
32403             dom.title = "";
32404         });
32405         tabs.activate(0);
32406         return tabs;
32407     },
32408
32409     // private
32410     beforeResize : function(){
32411         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32412     },
32413
32414     // private
32415     onResize : function(){
32416         this.refreshSize();
32417         this.syncBodyHeight();
32418         this.adjustAssets();
32419         this.focus();
32420         this.fireEvent("resize", this, this.size.width, this.size.height);
32421     },
32422
32423     // private
32424     onKeyDown : function(e){
32425         if(this.isVisible()){
32426             this.fireEvent("keydown", this, e);
32427         }
32428     },
32429
32430     /**
32431      * Resizes the dialog.
32432      * @param {Number} width
32433      * @param {Number} height
32434      * @return {Roo.BasicDialog} this
32435      */
32436     resizeTo : function(width, height){
32437         this.el.setSize(width, height);
32438         this.size = {width: width, height: height};
32439         this.syncBodyHeight();
32440         if(this.fixedcenter){
32441             this.center();
32442         }
32443         if(this.isVisible()){
32444             this.constrainXY();
32445             this.adjustAssets();
32446         }
32447         this.fireEvent("resize", this, width, height);
32448         return this;
32449     },
32450
32451
32452     /**
32453      * Resizes the dialog to fit the specified content size.
32454      * @param {Number} width
32455      * @param {Number} height
32456      * @return {Roo.BasicDialog} this
32457      */
32458     setContentSize : function(w, h){
32459         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32460         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32461         //if(!this.el.isBorderBox()){
32462             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32463             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32464         //}
32465         if(this.tabs){
32466             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32467             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32468         }
32469         this.resizeTo(w, h);
32470         return this;
32471     },
32472
32473     /**
32474      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32475      * executed in response to a particular key being pressed while the dialog is active.
32476      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32477      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32478      * @param {Function} fn The function to call
32479      * @param {Object} scope (optional) The scope of the function
32480      * @return {Roo.BasicDialog} this
32481      */
32482     addKeyListener : function(key, fn, scope){
32483         var keyCode, shift, ctrl, alt;
32484         if(typeof key == "object" && !(key instanceof Array)){
32485             keyCode = key["key"];
32486             shift = key["shift"];
32487             ctrl = key["ctrl"];
32488             alt = key["alt"];
32489         }else{
32490             keyCode = key;
32491         }
32492         var handler = function(dlg, e){
32493             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32494                 var k = e.getKey();
32495                 if(keyCode instanceof Array){
32496                     for(var i = 0, len = keyCode.length; i < len; i++){
32497                         if(keyCode[i] == k){
32498                           fn.call(scope || window, dlg, k, e);
32499                           return;
32500                         }
32501                     }
32502                 }else{
32503                     if(k == keyCode){
32504                         fn.call(scope || window, dlg, k, e);
32505                     }
32506                 }
32507             }
32508         };
32509         this.on("keydown", handler);
32510         return this;
32511     },
32512
32513     /**
32514      * Returns the TabPanel component (creates it if it doesn't exist).
32515      * Note: If you wish to simply check for the existence of tabs without creating them,
32516      * check for a null 'tabs' property.
32517      * @return {Roo.TabPanel} The tabs component
32518      */
32519     getTabs : function(){
32520         if(!this.tabs){
32521             this.el.addClass("x-dlg-auto-tabs");
32522             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32523             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32524         }
32525         return this.tabs;
32526     },
32527
32528     /**
32529      * Adds a button to the footer section of the dialog.
32530      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32531      * object or a valid Roo.DomHelper element config
32532      * @param {Function} handler The function called when the button is clicked
32533      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32534      * @return {Roo.Button} The new button
32535      */
32536     addButton : function(config, handler, scope){
32537         var dh = Roo.DomHelper;
32538         if(!this.footer){
32539             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32540         }
32541         if(!this.btnContainer){
32542             var tb = this.footer.createChild({
32543
32544                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32545                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32546             }, null, true);
32547             this.btnContainer = tb.firstChild.firstChild.firstChild;
32548         }
32549         var bconfig = {
32550             handler: handler,
32551             scope: scope,
32552             minWidth: this.minButtonWidth,
32553             hideParent:true
32554         };
32555         if(typeof config == "string"){
32556             bconfig.text = config;
32557         }else{
32558             if(config.tag){
32559                 bconfig.dhconfig = config;
32560             }else{
32561                 Roo.apply(bconfig, config);
32562             }
32563         }
32564         var fc = false;
32565         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32566             bconfig.position = Math.max(0, bconfig.position);
32567             fc = this.btnContainer.childNodes[bconfig.position];
32568         }
32569          
32570         var btn = new Roo.Button(
32571             fc ? 
32572                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32573                 : this.btnContainer.appendChild(document.createElement("td")),
32574             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32575             bconfig
32576         );
32577         this.syncBodyHeight();
32578         if(!this.buttons){
32579             /**
32580              * Array of all the buttons that have been added to this dialog via addButton
32581              * @type Array
32582              */
32583             this.buttons = [];
32584         }
32585         this.buttons.push(btn);
32586         return btn;
32587     },
32588
32589     /**
32590      * Sets the default button to be focused when the dialog is displayed.
32591      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32592      * @return {Roo.BasicDialog} this
32593      */
32594     setDefaultButton : function(btn){
32595         this.defaultButton = btn;
32596         return this;
32597     },
32598
32599     // private
32600     getHeaderFooterHeight : function(safe){
32601         var height = 0;
32602         if(this.header){
32603            height += this.header.getHeight();
32604         }
32605         if(this.footer){
32606            var fm = this.footer.getMargins();
32607             height += (this.footer.getHeight()+fm.top+fm.bottom);
32608         }
32609         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32610         height += this.centerBg.getPadding("tb");
32611         return height;
32612     },
32613
32614     // private
32615     syncBodyHeight : function()
32616     {
32617         var bd = this.body, // the text
32618             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32619             bw = this.bwrap;
32620         var height = this.size.height - this.getHeaderFooterHeight(false);
32621         bd.setHeight(height-bd.getMargins("tb"));
32622         var hh = this.header.getHeight();
32623         var h = this.size.height-hh;
32624         cb.setHeight(h);
32625         
32626         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32627         bw.setHeight(h-cb.getPadding("tb"));
32628         
32629         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32630         bd.setWidth(bw.getWidth(true));
32631         if(this.tabs){
32632             this.tabs.syncHeight();
32633             if(Roo.isIE){
32634                 this.tabs.el.repaint();
32635             }
32636         }
32637     },
32638
32639     /**
32640      * Restores the previous state of the dialog if Roo.state is configured.
32641      * @return {Roo.BasicDialog} this
32642      */
32643     restoreState : function(){
32644         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32645         if(box && box.width){
32646             this.xy = [box.x, box.y];
32647             this.resizeTo(box.width, box.height);
32648         }
32649         return this;
32650     },
32651
32652     // private
32653     beforeShow : function(){
32654         this.expand();
32655         if(this.fixedcenter){
32656             this.xy = this.el.getCenterXY(true);
32657         }
32658         if(this.modal){
32659             Roo.get(document.body).addClass("x-body-masked");
32660             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32661             this.mask.show();
32662         }
32663         this.constrainXY();
32664     },
32665
32666     // private
32667     animShow : function(){
32668         var b = Roo.get(this.animateTarget).getBox();
32669         this.proxy.setSize(b.width, b.height);
32670         this.proxy.setLocation(b.x, b.y);
32671         this.proxy.show();
32672         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32673                     true, .35, this.showEl.createDelegate(this));
32674     },
32675
32676     /**
32677      * Shows the dialog.
32678      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32679      * @return {Roo.BasicDialog} this
32680      */
32681     show : function(animateTarget){
32682         if (this.fireEvent("beforeshow", this) === false){
32683             return;
32684         }
32685         if(this.syncHeightBeforeShow){
32686             this.syncBodyHeight();
32687         }else if(this.firstShow){
32688             this.firstShow = false;
32689             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32690         }
32691         this.animateTarget = animateTarget || this.animateTarget;
32692         if(!this.el.isVisible()){
32693             this.beforeShow();
32694             if(this.animateTarget && Roo.get(this.animateTarget)){
32695                 this.animShow();
32696             }else{
32697                 this.showEl();
32698             }
32699         }
32700         return this;
32701     },
32702
32703     // private
32704     showEl : function(){
32705         this.proxy.hide();
32706         this.el.setXY(this.xy);
32707         this.el.show();
32708         this.adjustAssets(true);
32709         this.toFront();
32710         this.focus();
32711         // IE peekaboo bug - fix found by Dave Fenwick
32712         if(Roo.isIE){
32713             this.el.repaint();
32714         }
32715         this.fireEvent("show", this);
32716     },
32717
32718     /**
32719      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32720      * dialog itself will receive focus.
32721      */
32722     focus : function(){
32723         if(this.defaultButton){
32724             this.defaultButton.focus();
32725         }else{
32726             this.focusEl.focus();
32727         }
32728     },
32729
32730     // private
32731     constrainXY : function(){
32732         if(this.constraintoviewport !== false){
32733             if(!this.viewSize){
32734                 if(this.container){
32735                     var s = this.container.getSize();
32736                     this.viewSize = [s.width, s.height];
32737                 }else{
32738                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32739                 }
32740             }
32741             var s = Roo.get(this.container||document).getScroll();
32742
32743             var x = this.xy[0], y = this.xy[1];
32744             var w = this.size.width, h = this.size.height;
32745             var vw = this.viewSize[0], vh = this.viewSize[1];
32746             // only move it if it needs it
32747             var moved = false;
32748             // first validate right/bottom
32749             if(x + w > vw+s.left){
32750                 x = vw - w;
32751                 moved = true;
32752             }
32753             if(y + h > vh+s.top){
32754                 y = vh - h;
32755                 moved = true;
32756             }
32757             // then make sure top/left isn't negative
32758             if(x < s.left){
32759                 x = s.left;
32760                 moved = true;
32761             }
32762             if(y < s.top){
32763                 y = s.top;
32764                 moved = true;
32765             }
32766             if(moved){
32767                 // cache xy
32768                 this.xy = [x, y];
32769                 if(this.isVisible()){
32770                     this.el.setLocation(x, y);
32771                     this.adjustAssets();
32772                 }
32773             }
32774         }
32775     },
32776
32777     // private
32778     onDrag : function(){
32779         if(!this.proxyDrag){
32780             this.xy = this.el.getXY();
32781             this.adjustAssets();
32782         }
32783     },
32784
32785     // private
32786     adjustAssets : function(doShow){
32787         var x = this.xy[0], y = this.xy[1];
32788         var w = this.size.width, h = this.size.height;
32789         if(doShow === true){
32790             if(this.shadow){
32791                 this.shadow.show(this.el);
32792             }
32793             if(this.shim){
32794                 this.shim.show();
32795             }
32796         }
32797         if(this.shadow && this.shadow.isVisible()){
32798             this.shadow.show(this.el);
32799         }
32800         if(this.shim && this.shim.isVisible()){
32801             this.shim.setBounds(x, y, w, h);
32802         }
32803     },
32804
32805     // private
32806     adjustViewport : function(w, h){
32807         if(!w || !h){
32808             w = Roo.lib.Dom.getViewWidth();
32809             h = Roo.lib.Dom.getViewHeight();
32810         }
32811         // cache the size
32812         this.viewSize = [w, h];
32813         if(this.modal && this.mask.isVisible()){
32814             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32815             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32816         }
32817         if(this.isVisible()){
32818             this.constrainXY();
32819         }
32820     },
32821
32822     /**
32823      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32824      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32825      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32826      */
32827     destroy : function(removeEl){
32828         if(this.isVisible()){
32829             this.animateTarget = null;
32830             this.hide();
32831         }
32832         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32833         if(this.tabs){
32834             this.tabs.destroy(removeEl);
32835         }
32836         Roo.destroy(
32837              this.shim,
32838              this.proxy,
32839              this.resizer,
32840              this.close,
32841              this.mask
32842         );
32843         if(this.dd){
32844             this.dd.unreg();
32845         }
32846         if(this.buttons){
32847            for(var i = 0, len = this.buttons.length; i < len; i++){
32848                this.buttons[i].destroy();
32849            }
32850         }
32851         this.el.removeAllListeners();
32852         if(removeEl === true){
32853             this.el.update("");
32854             this.el.remove();
32855         }
32856         Roo.DialogManager.unregister(this);
32857     },
32858
32859     // private
32860     startMove : function(){
32861         if(this.proxyDrag){
32862             this.proxy.show();
32863         }
32864         if(this.constraintoviewport !== false){
32865             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32866         }
32867     },
32868
32869     // private
32870     endMove : function(){
32871         if(!this.proxyDrag){
32872             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32873         }else{
32874             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32875             this.proxy.hide();
32876         }
32877         this.refreshSize();
32878         this.adjustAssets();
32879         this.focus();
32880         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32881     },
32882
32883     /**
32884      * Brings this dialog to the front of any other visible dialogs
32885      * @return {Roo.BasicDialog} this
32886      */
32887     toFront : function(){
32888         Roo.DialogManager.bringToFront(this);
32889         return this;
32890     },
32891
32892     /**
32893      * Sends this dialog to the back (under) of any other visible dialogs
32894      * @return {Roo.BasicDialog} this
32895      */
32896     toBack : function(){
32897         Roo.DialogManager.sendToBack(this);
32898         return this;
32899     },
32900
32901     /**
32902      * Centers this dialog in the viewport
32903      * @return {Roo.BasicDialog} this
32904      */
32905     center : function(){
32906         var xy = this.el.getCenterXY(true);
32907         this.moveTo(xy[0], xy[1]);
32908         return this;
32909     },
32910
32911     /**
32912      * Moves the dialog's top-left corner to the specified point
32913      * @param {Number} x
32914      * @param {Number} y
32915      * @return {Roo.BasicDialog} this
32916      */
32917     moveTo : function(x, y){
32918         this.xy = [x,y];
32919         if(this.isVisible()){
32920             this.el.setXY(this.xy);
32921             this.adjustAssets();
32922         }
32923         return this;
32924     },
32925
32926     /**
32927      * Aligns the dialog to the specified element
32928      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32929      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32930      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32931      * @return {Roo.BasicDialog} this
32932      */
32933     alignTo : function(element, position, offsets){
32934         this.xy = this.el.getAlignToXY(element, position, offsets);
32935         if(this.isVisible()){
32936             this.el.setXY(this.xy);
32937             this.adjustAssets();
32938         }
32939         return this;
32940     },
32941
32942     /**
32943      * Anchors an element to another element and realigns it when the window is resized.
32944      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32945      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32946      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32947      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32948      * is a number, it is used as the buffer delay (defaults to 50ms).
32949      * @return {Roo.BasicDialog} this
32950      */
32951     anchorTo : function(el, alignment, offsets, monitorScroll){
32952         var action = function(){
32953             this.alignTo(el, alignment, offsets);
32954         };
32955         Roo.EventManager.onWindowResize(action, this);
32956         var tm = typeof monitorScroll;
32957         if(tm != 'undefined'){
32958             Roo.EventManager.on(window, 'scroll', action, this,
32959                 {buffer: tm == 'number' ? monitorScroll : 50});
32960         }
32961         action.call(this);
32962         return this;
32963     },
32964
32965     /**
32966      * Returns true if the dialog is visible
32967      * @return {Boolean}
32968      */
32969     isVisible : function(){
32970         return this.el.isVisible();
32971     },
32972
32973     // private
32974     animHide : function(callback){
32975         var b = Roo.get(this.animateTarget).getBox();
32976         this.proxy.show();
32977         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32978         this.el.hide();
32979         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32980                     this.hideEl.createDelegate(this, [callback]));
32981     },
32982
32983     /**
32984      * Hides the dialog.
32985      * @param {Function} callback (optional) Function to call when the dialog is hidden
32986      * @return {Roo.BasicDialog} this
32987      */
32988     hide : function(callback){
32989         if (this.fireEvent("beforehide", this) === false){
32990             return;
32991         }
32992         if(this.shadow){
32993             this.shadow.hide();
32994         }
32995         if(this.shim) {
32996           this.shim.hide();
32997         }
32998         // sometimes animateTarget seems to get set.. causing problems...
32999         // this just double checks..
33000         if(this.animateTarget && Roo.get(this.animateTarget)) {
33001            this.animHide(callback);
33002         }else{
33003             this.el.hide();
33004             this.hideEl(callback);
33005         }
33006         return this;
33007     },
33008
33009     // private
33010     hideEl : function(callback){
33011         this.proxy.hide();
33012         if(this.modal){
33013             this.mask.hide();
33014             Roo.get(document.body).removeClass("x-body-masked");
33015         }
33016         this.fireEvent("hide", this);
33017         if(typeof callback == "function"){
33018             callback();
33019         }
33020     },
33021
33022     // private
33023     hideAction : function(){
33024         this.setLeft("-10000px");
33025         this.setTop("-10000px");
33026         this.setStyle("visibility", "hidden");
33027     },
33028
33029     // private
33030     refreshSize : function(){
33031         this.size = this.el.getSize();
33032         this.xy = this.el.getXY();
33033         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
33034     },
33035
33036     // private
33037     // z-index is managed by the DialogManager and may be overwritten at any time
33038     setZIndex : function(index){
33039         if(this.modal){
33040             this.mask.setStyle("z-index", index);
33041         }
33042         if(this.shim){
33043             this.shim.setStyle("z-index", ++index);
33044         }
33045         if(this.shadow){
33046             this.shadow.setZIndex(++index);
33047         }
33048         this.el.setStyle("z-index", ++index);
33049         if(this.proxy){
33050             this.proxy.setStyle("z-index", ++index);
33051         }
33052         if(this.resizer){
33053             this.resizer.proxy.setStyle("z-index", ++index);
33054         }
33055
33056         this.lastZIndex = index;
33057     },
33058
33059     /**
33060      * Returns the element for this dialog
33061      * @return {Roo.Element} The underlying dialog Element
33062      */
33063     getEl : function(){
33064         return this.el;
33065     }
33066 });
33067
33068 /**
33069  * @class Roo.DialogManager
33070  * Provides global access to BasicDialogs that have been created and
33071  * support for z-indexing (layering) multiple open dialogs.
33072  */
33073 Roo.DialogManager = function(){
33074     var list = {};
33075     var accessList = [];
33076     var front = null;
33077
33078     // private
33079     var sortDialogs = function(d1, d2){
33080         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
33081     };
33082
33083     // private
33084     var orderDialogs = function(){
33085         accessList.sort(sortDialogs);
33086         var seed = Roo.DialogManager.zseed;
33087         for(var i = 0, len = accessList.length; i < len; i++){
33088             var dlg = accessList[i];
33089             if(dlg){
33090                 dlg.setZIndex(seed + (i*10));
33091             }
33092         }
33093     };
33094
33095     return {
33096         /**
33097          * The starting z-index for BasicDialogs (defaults to 9000)
33098          * @type Number The z-index value
33099          */
33100         zseed : 9000,
33101
33102         // private
33103         register : function(dlg){
33104             list[dlg.id] = dlg;
33105             accessList.push(dlg);
33106         },
33107
33108         // private
33109         unregister : function(dlg){
33110             delete list[dlg.id];
33111             var i=0;
33112             var len=0;
33113             if(!accessList.indexOf){
33114                 for(  i = 0, len = accessList.length; i < len; i++){
33115                     if(accessList[i] == dlg){
33116                         accessList.splice(i, 1);
33117                         return;
33118                     }
33119                 }
33120             }else{
33121                  i = accessList.indexOf(dlg);
33122                 if(i != -1){
33123                     accessList.splice(i, 1);
33124                 }
33125             }
33126         },
33127
33128         /**
33129          * Gets a registered dialog by id
33130          * @param {String/Object} id The id of the dialog or a dialog
33131          * @return {Roo.BasicDialog} this
33132          */
33133         get : function(id){
33134             return typeof id == "object" ? id : list[id];
33135         },
33136
33137         /**
33138          * Brings the specified dialog to the front
33139          * @param {String/Object} dlg The id of the dialog or a dialog
33140          * @return {Roo.BasicDialog} this
33141          */
33142         bringToFront : function(dlg){
33143             dlg = this.get(dlg);
33144             if(dlg != front){
33145                 front = dlg;
33146                 dlg._lastAccess = new Date().getTime();
33147                 orderDialogs();
33148             }
33149             return dlg;
33150         },
33151
33152         /**
33153          * Sends the specified dialog to the back
33154          * @param {String/Object} dlg The id of the dialog or a dialog
33155          * @return {Roo.BasicDialog} this
33156          */
33157         sendToBack : function(dlg){
33158             dlg = this.get(dlg);
33159             dlg._lastAccess = -(new Date().getTime());
33160             orderDialogs();
33161             return dlg;
33162         },
33163
33164         /**
33165          * Hides all dialogs
33166          */
33167         hideAll : function(){
33168             for(var id in list){
33169                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33170                     list[id].hide();
33171                 }
33172             }
33173         }
33174     };
33175 }();
33176
33177 /**
33178  * @class Roo.LayoutDialog
33179  * @extends Roo.BasicDialog
33180  * Dialog which provides adjustments for working with a layout in a Dialog.
33181  * Add your necessary layout config options to the dialog's config.<br>
33182  * Example usage (including a nested layout):
33183  * <pre><code>
33184 if(!dialog){
33185     dialog = new Roo.LayoutDialog("download-dlg", {
33186         modal: true,
33187         width:600,
33188         height:450,
33189         shadow:true,
33190         minWidth:500,
33191         minHeight:350,
33192         autoTabs:true,
33193         proxyDrag:true,
33194         // layout config merges with the dialog config
33195         center:{
33196             tabPosition: "top",
33197             alwaysShowTabs: true
33198         }
33199     });
33200     dialog.addKeyListener(27, dialog.hide, dialog);
33201     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33202     dialog.addButton("Build It!", this.getDownload, this);
33203
33204     // we can even add nested layouts
33205     var innerLayout = new Roo.BorderLayout("dl-inner", {
33206         east: {
33207             initialSize: 200,
33208             autoScroll:true,
33209             split:true
33210         },
33211         center: {
33212             autoScroll:true
33213         }
33214     });
33215     innerLayout.beginUpdate();
33216     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33217     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33218     innerLayout.endUpdate(true);
33219
33220     var layout = dialog.getLayout();
33221     layout.beginUpdate();
33222     layout.add("center", new Roo.ContentPanel("standard-panel",
33223                         {title: "Download the Source", fitToFrame:true}));
33224     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33225                {title: "Build your own roo.js"}));
33226     layout.getRegion("center").showPanel(sp);
33227     layout.endUpdate();
33228 }
33229 </code></pre>
33230     * @constructor
33231     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33232     * @param {Object} config configuration options
33233   */
33234 Roo.LayoutDialog = function(el, cfg){
33235     
33236     var config=  cfg;
33237     if (typeof(cfg) == 'undefined') {
33238         config = Roo.apply({}, el);
33239         // not sure why we use documentElement here.. - it should always be body.
33240         // IE7 borks horribly if we use documentElement.
33241         // webkit also does not like documentElement - it creates a body element...
33242         el = Roo.get( document.body || document.documentElement ).createChild();
33243         //config.autoCreate = true;
33244     }
33245     
33246     
33247     config.autoTabs = false;
33248     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33249     this.body.setStyle({overflow:"hidden", position:"relative"});
33250     this.layout = new Roo.BorderLayout(this.body.dom, config);
33251     this.layout.monitorWindowResize = false;
33252     this.el.addClass("x-dlg-auto-layout");
33253     // fix case when center region overwrites center function
33254     this.center = Roo.BasicDialog.prototype.center;
33255     this.on("show", this.layout.layout, this.layout, true);
33256     if (config.items) {
33257         var xitems = config.items;
33258         delete config.items;
33259         Roo.each(xitems, this.addxtype, this);
33260     }
33261     
33262     
33263 };
33264 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33265     /**
33266      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33267      * @deprecated
33268      */
33269     endUpdate : function(){
33270         this.layout.endUpdate();
33271     },
33272
33273     /**
33274      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33275      *  @deprecated
33276      */
33277     beginUpdate : function(){
33278         this.layout.beginUpdate();
33279     },
33280
33281     /**
33282      * Get the BorderLayout for this dialog
33283      * @return {Roo.BorderLayout}
33284      */
33285     getLayout : function(){
33286         return this.layout;
33287     },
33288
33289     showEl : function(){
33290         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33291         if(Roo.isIE7){
33292             this.layout.layout();
33293         }
33294     },
33295
33296     // private
33297     // Use the syncHeightBeforeShow config option to control this automatically
33298     syncBodyHeight : function(){
33299         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33300         if(this.layout){this.layout.layout();}
33301     },
33302     
33303       /**
33304      * Add an xtype element (actually adds to the layout.)
33305      * @return {Object} xdata xtype object data.
33306      */
33307     
33308     addxtype : function(c) {
33309         return this.layout.addxtype(c);
33310     }
33311 });/*
33312  * Based on:
33313  * Ext JS Library 1.1.1
33314  * Copyright(c) 2006-2007, Ext JS, LLC.
33315  *
33316  * Originally Released Under LGPL - original licence link has changed is not relivant.
33317  *
33318  * Fork - LGPL
33319  * <script type="text/javascript">
33320  */
33321  
33322 /**
33323  * @class Roo.MessageBox
33324  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33325  * Example usage:
33326  *<pre><code>
33327 // Basic alert:
33328 Roo.Msg.alert('Status', 'Changes saved successfully.');
33329
33330 // Prompt for user data:
33331 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33332     if (btn == 'ok'){
33333         // process text value...
33334     }
33335 });
33336
33337 // Show a dialog using config options:
33338 Roo.Msg.show({
33339    title:'Save Changes?',
33340    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33341    buttons: Roo.Msg.YESNOCANCEL,
33342    fn: processResult,
33343    animEl: 'elId'
33344 });
33345 </code></pre>
33346  * @singleton
33347  */
33348 Roo.MessageBox = function(){
33349     var dlg, opt, mask, waitTimer;
33350     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33351     var buttons, activeTextEl, bwidth;
33352
33353     // private
33354     var handleButton = function(button){
33355         dlg.hide();
33356         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33357     };
33358
33359     // private
33360     var handleHide = function(){
33361         if(opt && opt.cls){
33362             dlg.el.removeClass(opt.cls);
33363         }
33364         if(waitTimer){
33365             Roo.TaskMgr.stop(waitTimer);
33366             waitTimer = null;
33367         }
33368     };
33369
33370     // private
33371     var updateButtons = function(b){
33372         var width = 0;
33373         if(!b){
33374             buttons["ok"].hide();
33375             buttons["cancel"].hide();
33376             buttons["yes"].hide();
33377             buttons["no"].hide();
33378             dlg.footer.dom.style.display = 'none';
33379             return width;
33380         }
33381         dlg.footer.dom.style.display = '';
33382         for(var k in buttons){
33383             if(typeof buttons[k] != "function"){
33384                 if(b[k]){
33385                     buttons[k].show();
33386                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33387                     width += buttons[k].el.getWidth()+15;
33388                 }else{
33389                     buttons[k].hide();
33390                 }
33391             }
33392         }
33393         return width;
33394     };
33395
33396     // private
33397     var handleEsc = function(d, k, e){
33398         if(opt && opt.closable !== false){
33399             dlg.hide();
33400         }
33401         if(e){
33402             e.stopEvent();
33403         }
33404     };
33405
33406     return {
33407         /**
33408          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33409          * @return {Roo.BasicDialog} The BasicDialog element
33410          */
33411         getDialog : function(){
33412            if(!dlg){
33413                 dlg = new Roo.BasicDialog("x-msg-box", {
33414                     autoCreate : true,
33415                     shadow: true,
33416                     draggable: true,
33417                     resizable:false,
33418                     constraintoviewport:false,
33419                     fixedcenter:true,
33420                     collapsible : false,
33421                     shim:true,
33422                     modal: true,
33423                     width:400, height:100,
33424                     buttonAlign:"center",
33425                     closeClick : function(){
33426                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33427                             handleButton("no");
33428                         }else{
33429                             handleButton("cancel");
33430                         }
33431                     }
33432                 });
33433                 dlg.on("hide", handleHide);
33434                 mask = dlg.mask;
33435                 dlg.addKeyListener(27, handleEsc);
33436                 buttons = {};
33437                 var bt = this.buttonText;
33438                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33439                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33440                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33441                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33442                 bodyEl = dlg.body.createChild({
33443
33444                     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>'
33445                 });
33446                 msgEl = bodyEl.dom.firstChild;
33447                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33448                 textboxEl.enableDisplayMode();
33449                 textboxEl.addKeyListener([10,13], function(){
33450                     if(dlg.isVisible() && opt && opt.buttons){
33451                         if(opt.buttons.ok){
33452                             handleButton("ok");
33453                         }else if(opt.buttons.yes){
33454                             handleButton("yes");
33455                         }
33456                     }
33457                 });
33458                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33459                 textareaEl.enableDisplayMode();
33460                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33461                 progressEl.enableDisplayMode();
33462                 var pf = progressEl.dom.firstChild;
33463                 if (pf) {
33464                     pp = Roo.get(pf.firstChild);
33465                     pp.setHeight(pf.offsetHeight);
33466                 }
33467                 
33468             }
33469             return dlg;
33470         },
33471
33472         /**
33473          * Updates the message box body text
33474          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33475          * the XHTML-compliant non-breaking space character '&amp;#160;')
33476          * @return {Roo.MessageBox} This message box
33477          */
33478         updateText : function(text){
33479             if(!dlg.isVisible() && !opt.width){
33480                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33481             }
33482             msgEl.innerHTML = text || '&#160;';
33483       
33484             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33485             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33486             var w = Math.max(
33487                     Math.min(opt.width || cw , this.maxWidth), 
33488                     Math.max(opt.minWidth || this.minWidth, bwidth)
33489             );
33490             if(opt.prompt){
33491                 activeTextEl.setWidth(w);
33492             }
33493             if(dlg.isVisible()){
33494                 dlg.fixedcenter = false;
33495             }
33496             // to big, make it scroll. = But as usual stupid IE does not support
33497             // !important..
33498             
33499             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33500                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33501                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33502             } else {
33503                 bodyEl.dom.style.height = '';
33504                 bodyEl.dom.style.overflowY = '';
33505             }
33506             if (cw > w) {
33507                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33508             } else {
33509                 bodyEl.dom.style.overflowX = '';
33510             }
33511             
33512             dlg.setContentSize(w, bodyEl.getHeight());
33513             if(dlg.isVisible()){
33514                 dlg.fixedcenter = true;
33515             }
33516             return this;
33517         },
33518
33519         /**
33520          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33521          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33522          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33523          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33524          * @return {Roo.MessageBox} This message box
33525          */
33526         updateProgress : function(value, text){
33527             if(text){
33528                 this.updateText(text);
33529             }
33530             if (pp) { // weird bug on my firefox - for some reason this is not defined
33531                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33532             }
33533             return this;
33534         },        
33535
33536         /**
33537          * Returns true if the message box is currently displayed
33538          * @return {Boolean} True if the message box is visible, else false
33539          */
33540         isVisible : function(){
33541             return dlg && dlg.isVisible();  
33542         },
33543
33544         /**
33545          * Hides the message box if it is displayed
33546          */
33547         hide : function(){
33548             if(this.isVisible()){
33549                 dlg.hide();
33550             }  
33551         },
33552
33553         /**
33554          * Displays a new message box, or reinitializes an existing message box, based on the config options
33555          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33556          * The following config object properties are supported:
33557          * <pre>
33558 Property    Type             Description
33559 ----------  ---------------  ------------------------------------------------------------------------------------
33560 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33561                                    closes (defaults to undefined)
33562 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33563                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33564 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33565                                    progress and wait dialogs will ignore this property and always hide the
33566                                    close button as they can only be closed programmatically.
33567 cls               String           A custom CSS class to apply to the message box element
33568 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33569                                    displayed (defaults to 75)
33570 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33571                                    function will be btn (the name of the button that was clicked, if applicable,
33572                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33573                                    Progress and wait dialogs will ignore this option since they do not respond to
33574                                    user actions and can only be closed programmatically, so any required function
33575                                    should be called by the same code after it closes the dialog.
33576 icon              String           A CSS class that provides a background image to be used as an icon for
33577                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33578 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33579 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33580 modal             Boolean          False to allow user interaction with the page while the message box is
33581                                    displayed (defaults to true)
33582 msg               String           A string that will replace the existing message box body text (defaults
33583                                    to the XHTML-compliant non-breaking space character '&#160;')
33584 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33585 progress          Boolean          True to display a progress bar (defaults to false)
33586 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33587 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33588 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33589 title             String           The title text
33590 value             String           The string value to set into the active textbox element if displayed
33591 wait              Boolean          True to display a progress bar (defaults to false)
33592 width             Number           The width of the dialog in pixels
33593 </pre>
33594          *
33595          * Example usage:
33596          * <pre><code>
33597 Roo.Msg.show({
33598    title: 'Address',
33599    msg: 'Please enter your address:',
33600    width: 300,
33601    buttons: Roo.MessageBox.OKCANCEL,
33602    multiline: true,
33603    fn: saveAddress,
33604    animEl: 'addAddressBtn'
33605 });
33606 </code></pre>
33607          * @param {Object} config Configuration options
33608          * @return {Roo.MessageBox} This message box
33609          */
33610         show : function(options)
33611         {
33612             
33613             // this causes nightmares if you show one dialog after another
33614             // especially on callbacks..
33615              
33616             if(this.isVisible()){
33617                 
33618                 this.hide();
33619                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33620                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33621                 Roo.log("New Dialog Message:" +  options.msg )
33622                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33623                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33624                 
33625             }
33626             var d = this.getDialog();
33627             opt = options;
33628             d.setTitle(opt.title || "&#160;");
33629             d.close.setDisplayed(opt.closable !== false);
33630             activeTextEl = textboxEl;
33631             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33632             if(opt.prompt){
33633                 if(opt.multiline){
33634                     textboxEl.hide();
33635                     textareaEl.show();
33636                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33637                         opt.multiline : this.defaultTextHeight);
33638                     activeTextEl = textareaEl;
33639                 }else{
33640                     textboxEl.show();
33641                     textareaEl.hide();
33642                 }
33643             }else{
33644                 textboxEl.hide();
33645                 textareaEl.hide();
33646             }
33647             progressEl.setDisplayed(opt.progress === true);
33648             this.updateProgress(0);
33649             activeTextEl.dom.value = opt.value || "";
33650             if(opt.prompt){
33651                 dlg.setDefaultButton(activeTextEl);
33652             }else{
33653                 var bs = opt.buttons;
33654                 var db = null;
33655                 if(bs && bs.ok){
33656                     db = buttons["ok"];
33657                 }else if(bs && bs.yes){
33658                     db = buttons["yes"];
33659                 }
33660                 dlg.setDefaultButton(db);
33661             }
33662             bwidth = updateButtons(opt.buttons);
33663             this.updateText(opt.msg);
33664             if(opt.cls){
33665                 d.el.addClass(opt.cls);
33666             }
33667             d.proxyDrag = opt.proxyDrag === true;
33668             d.modal = opt.modal !== false;
33669             d.mask = opt.modal !== false ? mask : false;
33670             if(!d.isVisible()){
33671                 // force it to the end of the z-index stack so it gets a cursor in FF
33672                 document.body.appendChild(dlg.el.dom);
33673                 d.animateTarget = null;
33674                 d.show(options.animEl);
33675             }
33676             return this;
33677         },
33678
33679         /**
33680          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33681          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33682          * and closing the message box when the process is complete.
33683          * @param {String} title The title bar text
33684          * @param {String} msg The message box body text
33685          * @return {Roo.MessageBox} This message box
33686          */
33687         progress : function(title, msg){
33688             this.show({
33689                 title : title,
33690                 msg : msg,
33691                 buttons: false,
33692                 progress:true,
33693                 closable:false,
33694                 minWidth: this.minProgressWidth,
33695                 modal : true
33696             });
33697             return this;
33698         },
33699
33700         /**
33701          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33702          * If a callback function is passed it will be called after the user clicks the button, and the
33703          * id of the button that was clicked will be passed as the only parameter to the callback
33704          * (could also be the top-right close button).
33705          * @param {String} title The title bar text
33706          * @param {String} msg The message box body text
33707          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33708          * @param {Object} scope (optional) The scope of the callback function
33709          * @return {Roo.MessageBox} This message box
33710          */
33711         alert : function(title, msg, fn, scope){
33712             this.show({
33713                 title : title,
33714                 msg : msg,
33715                 buttons: this.OK,
33716                 fn: fn,
33717                 scope : scope,
33718                 modal : true
33719             });
33720             return this;
33721         },
33722
33723         /**
33724          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33725          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33726          * You are responsible for closing the message box when the process is complete.
33727          * @param {String} msg The message box body text
33728          * @param {String} title (optional) The title bar text
33729          * @return {Roo.MessageBox} This message box
33730          */
33731         wait : function(msg, title){
33732             this.show({
33733                 title : title,
33734                 msg : msg,
33735                 buttons: false,
33736                 closable:false,
33737                 progress:true,
33738                 modal:true,
33739                 width:300,
33740                 wait:true
33741             });
33742             waitTimer = Roo.TaskMgr.start({
33743                 run: function(i){
33744                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33745                 },
33746                 interval: 1000
33747             });
33748             return this;
33749         },
33750
33751         /**
33752          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33753          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33754          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33755          * @param {String} title The title bar text
33756          * @param {String} msg The message box body text
33757          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33758          * @param {Object} scope (optional) The scope of the callback function
33759          * @return {Roo.MessageBox} This message box
33760          */
33761         confirm : function(title, msg, fn, scope){
33762             this.show({
33763                 title : title,
33764                 msg : msg,
33765                 buttons: this.YESNO,
33766                 fn: fn,
33767                 scope : scope,
33768                 modal : true
33769             });
33770             return this;
33771         },
33772
33773         /**
33774          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33775          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33776          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33777          * (could also be the top-right close button) and the text that was entered will be passed as the two
33778          * parameters to the callback.
33779          * @param {String} title The title bar text
33780          * @param {String} msg The message box body text
33781          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33782          * @param {Object} scope (optional) The scope of the callback function
33783          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33784          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33785          * @return {Roo.MessageBox} This message box
33786          */
33787         prompt : function(title, msg, fn, scope, multiline){
33788             this.show({
33789                 title : title,
33790                 msg : msg,
33791                 buttons: this.OKCANCEL,
33792                 fn: fn,
33793                 minWidth:250,
33794                 scope : scope,
33795                 prompt:true,
33796                 multiline: multiline,
33797                 modal : true
33798             });
33799             return this;
33800         },
33801
33802         /**
33803          * Button config that displays a single OK button
33804          * @type Object
33805          */
33806         OK : {ok:true},
33807         /**
33808          * Button config that displays Yes and No buttons
33809          * @type Object
33810          */
33811         YESNO : {yes:true, no:true},
33812         /**
33813          * Button config that displays OK and Cancel buttons
33814          * @type Object
33815          */
33816         OKCANCEL : {ok:true, cancel:true},
33817         /**
33818          * Button config that displays Yes, No and Cancel buttons
33819          * @type Object
33820          */
33821         YESNOCANCEL : {yes:true, no:true, cancel:true},
33822
33823         /**
33824          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33825          * @type Number
33826          */
33827         defaultTextHeight : 75,
33828         /**
33829          * The maximum width in pixels of the message box (defaults to 600)
33830          * @type Number
33831          */
33832         maxWidth : 600,
33833         /**
33834          * The minimum width in pixels of the message box (defaults to 100)
33835          * @type Number
33836          */
33837         minWidth : 100,
33838         /**
33839          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33840          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33841          * @type Number
33842          */
33843         minProgressWidth : 250,
33844         /**
33845          * An object containing the default button text strings that can be overriden for localized language support.
33846          * Supported properties are: ok, cancel, yes and no.
33847          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33848          * @type Object
33849          */
33850         buttonText : {
33851             ok : "OK",
33852             cancel : "Cancel",
33853             yes : "Yes",
33854             no : "No"
33855         }
33856     };
33857 }();
33858
33859 /**
33860  * Shorthand for {@link Roo.MessageBox}
33861  */
33862 Roo.Msg = Roo.MessageBox;/*
33863  * Based on:
33864  * Ext JS Library 1.1.1
33865  * Copyright(c) 2006-2007, Ext JS, LLC.
33866  *
33867  * Originally Released Under LGPL - original licence link has changed is not relivant.
33868  *
33869  * Fork - LGPL
33870  * <script type="text/javascript">
33871  */
33872 /**
33873  * @class Roo.QuickTips
33874  * Provides attractive and customizable tooltips for any element.
33875  * @singleton
33876  */
33877 Roo.QuickTips = function(){
33878     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33879     var ce, bd, xy, dd;
33880     var visible = false, disabled = true, inited = false;
33881     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33882     
33883     var onOver = function(e){
33884         if(disabled){
33885             return;
33886         }
33887         var t = e.getTarget();
33888         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33889             return;
33890         }
33891         if(ce && t == ce.el){
33892             clearTimeout(hideProc);
33893             return;
33894         }
33895         if(t && tagEls[t.id]){
33896             tagEls[t.id].el = t;
33897             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33898             return;
33899         }
33900         var ttp, et = Roo.fly(t);
33901         var ns = cfg.namespace;
33902         if(tm.interceptTitles && t.title){
33903             ttp = t.title;
33904             t.qtip = ttp;
33905             t.removeAttribute("title");
33906             e.preventDefault();
33907         }else{
33908             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33909         }
33910         if(ttp){
33911             showProc = show.defer(tm.showDelay, tm, [{
33912                 el: t, 
33913                 text: ttp.replace(/\\n/g,'<br/>'),
33914                 width: et.getAttributeNS(ns, cfg.width),
33915                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33916                 title: et.getAttributeNS(ns, cfg.title),
33917                     cls: et.getAttributeNS(ns, cfg.cls)
33918             }]);
33919         }
33920     };
33921     
33922     var onOut = function(e){
33923         clearTimeout(showProc);
33924         var t = e.getTarget();
33925         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33926             hideProc = setTimeout(hide, tm.hideDelay);
33927         }
33928     };
33929     
33930     var onMove = function(e){
33931         if(disabled){
33932             return;
33933         }
33934         xy = e.getXY();
33935         xy[1] += 18;
33936         if(tm.trackMouse && ce){
33937             el.setXY(xy);
33938         }
33939     };
33940     
33941     var onDown = function(e){
33942         clearTimeout(showProc);
33943         clearTimeout(hideProc);
33944         if(!e.within(el)){
33945             if(tm.hideOnClick){
33946                 hide();
33947                 tm.disable();
33948                 tm.enable.defer(100, tm);
33949             }
33950         }
33951     };
33952     
33953     var getPad = function(){
33954         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33955     };
33956
33957     var show = function(o){
33958         if(disabled){
33959             return;
33960         }
33961         clearTimeout(dismissProc);
33962         ce = o;
33963         if(removeCls){ // in case manually hidden
33964             el.removeClass(removeCls);
33965             removeCls = null;
33966         }
33967         if(ce.cls){
33968             el.addClass(ce.cls);
33969             removeCls = ce.cls;
33970         }
33971         if(ce.title){
33972             tipTitle.update(ce.title);
33973             tipTitle.show();
33974         }else{
33975             tipTitle.update('');
33976             tipTitle.hide();
33977         }
33978         el.dom.style.width  = tm.maxWidth+'px';
33979         //tipBody.dom.style.width = '';
33980         tipBodyText.update(o.text);
33981         var p = getPad(), w = ce.width;
33982         if(!w){
33983             var td = tipBodyText.dom;
33984             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33985             if(aw > tm.maxWidth){
33986                 w = tm.maxWidth;
33987             }else if(aw < tm.minWidth){
33988                 w = tm.minWidth;
33989             }else{
33990                 w = aw;
33991             }
33992         }
33993         //tipBody.setWidth(w);
33994         el.setWidth(parseInt(w, 10) + p);
33995         if(ce.autoHide === false){
33996             close.setDisplayed(true);
33997             if(dd){
33998                 dd.unlock();
33999             }
34000         }else{
34001             close.setDisplayed(false);
34002             if(dd){
34003                 dd.lock();
34004             }
34005         }
34006         if(xy){
34007             el.avoidY = xy[1]-18;
34008             el.setXY(xy);
34009         }
34010         if(tm.animate){
34011             el.setOpacity(.1);
34012             el.setStyle("visibility", "visible");
34013             el.fadeIn({callback: afterShow});
34014         }else{
34015             afterShow();
34016         }
34017     };
34018     
34019     var afterShow = function(){
34020         if(ce){
34021             el.show();
34022             esc.enable();
34023             if(tm.autoDismiss && ce.autoHide !== false){
34024                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
34025             }
34026         }
34027     };
34028     
34029     var hide = function(noanim){
34030         clearTimeout(dismissProc);
34031         clearTimeout(hideProc);
34032         ce = null;
34033         if(el.isVisible()){
34034             esc.disable();
34035             if(noanim !== true && tm.animate){
34036                 el.fadeOut({callback: afterHide});
34037             }else{
34038                 afterHide();
34039             } 
34040         }
34041     };
34042     
34043     var afterHide = function(){
34044         el.hide();
34045         if(removeCls){
34046             el.removeClass(removeCls);
34047             removeCls = null;
34048         }
34049     };
34050     
34051     return {
34052         /**
34053         * @cfg {Number} minWidth
34054         * The minimum width of the quick tip (defaults to 40)
34055         */
34056        minWidth : 40,
34057         /**
34058         * @cfg {Number} maxWidth
34059         * The maximum width of the quick tip (defaults to 300)
34060         */
34061        maxWidth : 300,
34062         /**
34063         * @cfg {Boolean} interceptTitles
34064         * True to automatically use the element's DOM title value if available (defaults to false)
34065         */
34066        interceptTitles : false,
34067         /**
34068         * @cfg {Boolean} trackMouse
34069         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
34070         */
34071        trackMouse : false,
34072         /**
34073         * @cfg {Boolean} hideOnClick
34074         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
34075         */
34076        hideOnClick : true,
34077         /**
34078         * @cfg {Number} showDelay
34079         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
34080         */
34081        showDelay : 500,
34082         /**
34083         * @cfg {Number} hideDelay
34084         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34085         */
34086        hideDelay : 200,
34087         /**
34088         * @cfg {Boolean} autoHide
34089         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34090         * Used in conjunction with hideDelay.
34091         */
34092        autoHide : true,
34093         /**
34094         * @cfg {Boolean}
34095         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34096         * (defaults to true).  Used in conjunction with autoDismissDelay.
34097         */
34098        autoDismiss : true,
34099         /**
34100         * @cfg {Number}
34101         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34102         */
34103        autoDismissDelay : 5000,
34104        /**
34105         * @cfg {Boolean} animate
34106         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34107         */
34108        animate : false,
34109
34110        /**
34111         * @cfg {String} title
34112         * Title text to display (defaults to '').  This can be any valid HTML markup.
34113         */
34114         title: '',
34115        /**
34116         * @cfg {String} text
34117         * Body text to display (defaults to '').  This can be any valid HTML markup.
34118         */
34119         text : '',
34120        /**
34121         * @cfg {String} cls
34122         * A CSS class to apply to the base quick tip element (defaults to '').
34123         */
34124         cls : '',
34125        /**
34126         * @cfg {Number} width
34127         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34128         * minWidth or maxWidth.
34129         */
34130         width : null,
34131
34132     /**
34133      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34134      * or display QuickTips in a page.
34135      */
34136        init : function(){
34137           tm = Roo.QuickTips;
34138           cfg = tm.tagConfig;
34139           if(!inited){
34140               if(!Roo.isReady){ // allow calling of init() before onReady
34141                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34142                   return;
34143               }
34144               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34145               el.fxDefaults = {stopFx: true};
34146               // maximum custom styling
34147               //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>');
34148               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>');              
34149               tipTitle = el.child('h3');
34150               tipTitle.enableDisplayMode("block");
34151               tipBody = el.child('div.x-tip-bd');
34152               tipBodyText = el.child('div.x-tip-bd-inner');
34153               //bdLeft = el.child('div.x-tip-bd-left');
34154               //bdRight = el.child('div.x-tip-bd-right');
34155               close = el.child('div.x-tip-close');
34156               close.enableDisplayMode("block");
34157               close.on("click", hide);
34158               var d = Roo.get(document);
34159               d.on("mousedown", onDown);
34160               d.on("mouseover", onOver);
34161               d.on("mouseout", onOut);
34162               d.on("mousemove", onMove);
34163               esc = d.addKeyListener(27, hide);
34164               esc.disable();
34165               if(Roo.dd.DD){
34166                   dd = el.initDD("default", null, {
34167                       onDrag : function(){
34168                           el.sync();  
34169                       }
34170                   });
34171                   dd.setHandleElId(tipTitle.id);
34172                   dd.lock();
34173               }
34174               inited = true;
34175           }
34176           this.enable(); 
34177        },
34178
34179     /**
34180      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34181      * are supported:
34182      * <pre>
34183 Property    Type                   Description
34184 ----------  ---------------------  ------------------------------------------------------------------------
34185 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34186      * </ul>
34187      * @param {Object} config The config object
34188      */
34189        register : function(config){
34190            var cs = config instanceof Array ? config : arguments;
34191            for(var i = 0, len = cs.length; i < len; i++) {
34192                var c = cs[i];
34193                var target = c.target;
34194                if(target){
34195                    if(target instanceof Array){
34196                        for(var j = 0, jlen = target.length; j < jlen; j++){
34197                            tagEls[target[j]] = c;
34198                        }
34199                    }else{
34200                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34201                    }
34202                }
34203            }
34204        },
34205
34206     /**
34207      * Removes this quick tip from its element and destroys it.
34208      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34209      */
34210        unregister : function(el){
34211            delete tagEls[Roo.id(el)];
34212        },
34213
34214     /**
34215      * Enable this quick tip.
34216      */
34217        enable : function(){
34218            if(inited && disabled){
34219                locks.pop();
34220                if(locks.length < 1){
34221                    disabled = false;
34222                }
34223            }
34224        },
34225
34226     /**
34227      * Disable this quick tip.
34228      */
34229        disable : function(){
34230           disabled = true;
34231           clearTimeout(showProc);
34232           clearTimeout(hideProc);
34233           clearTimeout(dismissProc);
34234           if(ce){
34235               hide(true);
34236           }
34237           locks.push(1);
34238        },
34239
34240     /**
34241      * Returns true if the quick tip is enabled, else false.
34242      */
34243        isEnabled : function(){
34244             return !disabled;
34245        },
34246
34247         // private
34248        tagConfig : {
34249            namespace : "roo", // was ext?? this may break..
34250            alt_namespace : "ext",
34251            attribute : "qtip",
34252            width : "width",
34253            target : "target",
34254            title : "qtitle",
34255            hide : "hide",
34256            cls : "qclass"
34257        }
34258    };
34259 }();
34260
34261 // backwards compat
34262 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34263  * Based on:
34264  * Ext JS Library 1.1.1
34265  * Copyright(c) 2006-2007, Ext JS, LLC.
34266  *
34267  * Originally Released Under LGPL - original licence link has changed is not relivant.
34268  *
34269  * Fork - LGPL
34270  * <script type="text/javascript">
34271  */
34272  
34273
34274 /**
34275  * @class Roo.tree.TreePanel
34276  * @extends Roo.data.Tree
34277
34278  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34279  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34280  * @cfg {Boolean} enableDD true to enable drag and drop
34281  * @cfg {Boolean} enableDrag true to enable just drag
34282  * @cfg {Boolean} enableDrop true to enable just drop
34283  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34284  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34285  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34286  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34287  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34288  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34289  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34290  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34291  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34292  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34293  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34294  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34295  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34296  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34297  * @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>
34298  * @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>
34299  * 
34300  * @constructor
34301  * @param {String/HTMLElement/Element} el The container element
34302  * @param {Object} config
34303  */
34304 Roo.tree.TreePanel = function(el, config){
34305     var root = false;
34306     var loader = false;
34307     if (config.root) {
34308         root = config.root;
34309         delete config.root;
34310     }
34311     if (config.loader) {
34312         loader = config.loader;
34313         delete config.loader;
34314     }
34315     
34316     Roo.apply(this, config);
34317     Roo.tree.TreePanel.superclass.constructor.call(this);
34318     this.el = Roo.get(el);
34319     this.el.addClass('x-tree');
34320     //console.log(root);
34321     if (root) {
34322         this.setRootNode( Roo.factory(root, Roo.tree));
34323     }
34324     if (loader) {
34325         this.loader = Roo.factory(loader, Roo.tree);
34326     }
34327    /**
34328     * Read-only. The id of the container element becomes this TreePanel's id.
34329     */
34330     this.id = this.el.id;
34331     this.addEvents({
34332         /**
34333         * @event beforeload
34334         * Fires before a node is loaded, return false to cancel
34335         * @param {Node} node The node being loaded
34336         */
34337         "beforeload" : true,
34338         /**
34339         * @event load
34340         * Fires when a node is loaded
34341         * @param {Node} node The node that was loaded
34342         */
34343         "load" : true,
34344         /**
34345         * @event textchange
34346         * Fires when the text for a node is changed
34347         * @param {Node} node The node
34348         * @param {String} text The new text
34349         * @param {String} oldText The old text
34350         */
34351         "textchange" : true,
34352         /**
34353         * @event beforeexpand
34354         * Fires before a node is expanded, return false to cancel.
34355         * @param {Node} node The node
34356         * @param {Boolean} deep
34357         * @param {Boolean} anim
34358         */
34359         "beforeexpand" : true,
34360         /**
34361         * @event beforecollapse
34362         * Fires before a node is collapsed, return false to cancel.
34363         * @param {Node} node The node
34364         * @param {Boolean} deep
34365         * @param {Boolean} anim
34366         */
34367         "beforecollapse" : true,
34368         /**
34369         * @event expand
34370         * Fires when a node is expanded
34371         * @param {Node} node The node
34372         */
34373         "expand" : true,
34374         /**
34375         * @event disabledchange
34376         * Fires when the disabled status of a node changes
34377         * @param {Node} node The node
34378         * @param {Boolean} disabled
34379         */
34380         "disabledchange" : true,
34381         /**
34382         * @event collapse
34383         * Fires when a node is collapsed
34384         * @param {Node} node The node
34385         */
34386         "collapse" : true,
34387         /**
34388         * @event beforeclick
34389         * Fires before click processing on a node. Return false to cancel the default action.
34390         * @param {Node} node The node
34391         * @param {Roo.EventObject} e The event object
34392         */
34393         "beforeclick":true,
34394         /**
34395         * @event checkchange
34396         * Fires when a node with a checkbox's checked property changes
34397         * @param {Node} this This node
34398         * @param {Boolean} checked
34399         */
34400         "checkchange":true,
34401         /**
34402         * @event click
34403         * Fires when a node is clicked
34404         * @param {Node} node The node
34405         * @param {Roo.EventObject} e The event object
34406         */
34407         "click":true,
34408         /**
34409         * @event dblclick
34410         * Fires when a node is double clicked
34411         * @param {Node} node The node
34412         * @param {Roo.EventObject} e The event object
34413         */
34414         "dblclick":true,
34415         /**
34416         * @event contextmenu
34417         * Fires when a node is right clicked
34418         * @param {Node} node The node
34419         * @param {Roo.EventObject} e The event object
34420         */
34421         "contextmenu":true,
34422         /**
34423         * @event beforechildrenrendered
34424         * Fires right before the child nodes for a node are rendered
34425         * @param {Node} node The node
34426         */
34427         "beforechildrenrendered":true,
34428         /**
34429         * @event startdrag
34430         * Fires when a node starts being dragged
34431         * @param {Roo.tree.TreePanel} this
34432         * @param {Roo.tree.TreeNode} node
34433         * @param {event} e The raw browser event
34434         */ 
34435        "startdrag" : true,
34436        /**
34437         * @event enddrag
34438         * Fires when a drag operation is complete
34439         * @param {Roo.tree.TreePanel} this
34440         * @param {Roo.tree.TreeNode} node
34441         * @param {event} e The raw browser event
34442         */
34443        "enddrag" : true,
34444        /**
34445         * @event dragdrop
34446         * Fires when a dragged node is dropped on a valid DD target
34447         * @param {Roo.tree.TreePanel} this
34448         * @param {Roo.tree.TreeNode} node
34449         * @param {DD} dd The dd it was dropped on
34450         * @param {event} e The raw browser event
34451         */
34452        "dragdrop" : true,
34453        /**
34454         * @event beforenodedrop
34455         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34456         * passed to handlers has the following properties:<br />
34457         * <ul style="padding:5px;padding-left:16px;">
34458         * <li>tree - The TreePanel</li>
34459         * <li>target - The node being targeted for the drop</li>
34460         * <li>data - The drag data from the drag source</li>
34461         * <li>point - The point of the drop - append, above or below</li>
34462         * <li>source - The drag source</li>
34463         * <li>rawEvent - Raw mouse event</li>
34464         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34465         * to be inserted by setting them on this object.</li>
34466         * <li>cancel - Set this to true to cancel the drop.</li>
34467         * </ul>
34468         * @param {Object} dropEvent
34469         */
34470        "beforenodedrop" : true,
34471        /**
34472         * @event nodedrop
34473         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34474         * passed to handlers has the following properties:<br />
34475         * <ul style="padding:5px;padding-left:16px;">
34476         * <li>tree - The TreePanel</li>
34477         * <li>target - The node being targeted for the drop</li>
34478         * <li>data - The drag data from the drag source</li>
34479         * <li>point - The point of the drop - append, above or below</li>
34480         * <li>source - The drag source</li>
34481         * <li>rawEvent - Raw mouse event</li>
34482         * <li>dropNode - Dropped node(s).</li>
34483         * </ul>
34484         * @param {Object} dropEvent
34485         */
34486        "nodedrop" : true,
34487         /**
34488         * @event nodedragover
34489         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34490         * passed to handlers has the following properties:<br />
34491         * <ul style="padding:5px;padding-left:16px;">
34492         * <li>tree - The TreePanel</li>
34493         * <li>target - The node being targeted for the drop</li>
34494         * <li>data - The drag data from the drag source</li>
34495         * <li>point - The point of the drop - append, above or below</li>
34496         * <li>source - The drag source</li>
34497         * <li>rawEvent - Raw mouse event</li>
34498         * <li>dropNode - Drop node(s) provided by the source.</li>
34499         * <li>cancel - Set this to true to signal drop not allowed.</li>
34500         * </ul>
34501         * @param {Object} dragOverEvent
34502         */
34503        "nodedragover" : true,
34504        /**
34505         * @event appendnode
34506         * Fires when append node to the tree
34507         * @param {Roo.tree.TreePanel} this
34508         * @param {Roo.tree.TreeNode} node
34509         * @param {Number} index The index of the newly appended node
34510         */
34511        "appendnode" : true
34512         
34513     });
34514     if(this.singleExpand){
34515        this.on("beforeexpand", this.restrictExpand, this);
34516     }
34517     if (this.editor) {
34518         this.editor.tree = this;
34519         this.editor = Roo.factory(this.editor, Roo.tree);
34520     }
34521     
34522     if (this.selModel) {
34523         this.selModel = Roo.factory(this.selModel, Roo.tree);
34524     }
34525    
34526 };
34527 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34528     rootVisible : true,
34529     animate: Roo.enableFx,
34530     lines : true,
34531     enableDD : false,
34532     hlDrop : Roo.enableFx,
34533   
34534     renderer: false,
34535     
34536     rendererTip: false,
34537     // private
34538     restrictExpand : function(node){
34539         var p = node.parentNode;
34540         if(p){
34541             if(p.expandedChild && p.expandedChild.parentNode == p){
34542                 p.expandedChild.collapse();
34543             }
34544             p.expandedChild = node;
34545         }
34546     },
34547
34548     // private override
34549     setRootNode : function(node){
34550         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34551         if(!this.rootVisible){
34552             node.ui = new Roo.tree.RootTreeNodeUI(node);
34553         }
34554         return node;
34555     },
34556
34557     /**
34558      * Returns the container element for this TreePanel
34559      */
34560     getEl : function(){
34561         return this.el;
34562     },
34563
34564     /**
34565      * Returns the default TreeLoader for this TreePanel
34566      */
34567     getLoader : function(){
34568         return this.loader;
34569     },
34570
34571     /**
34572      * Expand all nodes
34573      */
34574     expandAll : function(){
34575         this.root.expand(true);
34576     },
34577
34578     /**
34579      * Collapse all nodes
34580      */
34581     collapseAll : function(){
34582         this.root.collapse(true);
34583     },
34584
34585     /**
34586      * Returns the selection model used by this TreePanel
34587      */
34588     getSelectionModel : function(){
34589         if(!this.selModel){
34590             this.selModel = new Roo.tree.DefaultSelectionModel();
34591         }
34592         return this.selModel;
34593     },
34594
34595     /**
34596      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34597      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34598      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34599      * @return {Array}
34600      */
34601     getChecked : function(a, startNode){
34602         startNode = startNode || this.root;
34603         var r = [];
34604         var f = function(){
34605             if(this.attributes.checked){
34606                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34607             }
34608         }
34609         startNode.cascade(f);
34610         return r;
34611     },
34612
34613     /**
34614      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34615      * @param {String} path
34616      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34617      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34618      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34619      */
34620     expandPath : function(path, attr, callback){
34621         attr = attr || "id";
34622         var keys = path.split(this.pathSeparator);
34623         var curNode = this.root;
34624         if(curNode.attributes[attr] != keys[1]){ // invalid root
34625             if(callback){
34626                 callback(false, null);
34627             }
34628             return;
34629         }
34630         var index = 1;
34631         var f = function(){
34632             if(++index == keys.length){
34633                 if(callback){
34634                     callback(true, curNode);
34635                 }
34636                 return;
34637             }
34638             var c = curNode.findChild(attr, keys[index]);
34639             if(!c){
34640                 if(callback){
34641                     callback(false, curNode);
34642                 }
34643                 return;
34644             }
34645             curNode = c;
34646             c.expand(false, false, f);
34647         };
34648         curNode.expand(false, false, f);
34649     },
34650
34651     /**
34652      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34653      * @param {String} path
34654      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34655      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34656      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34657      */
34658     selectPath : function(path, attr, callback){
34659         attr = attr || "id";
34660         var keys = path.split(this.pathSeparator);
34661         var v = keys.pop();
34662         if(keys.length > 0){
34663             var f = function(success, node){
34664                 if(success && node){
34665                     var n = node.findChild(attr, v);
34666                     if(n){
34667                         n.select();
34668                         if(callback){
34669                             callback(true, n);
34670                         }
34671                     }else if(callback){
34672                         callback(false, n);
34673                     }
34674                 }else{
34675                     if(callback){
34676                         callback(false, n);
34677                     }
34678                 }
34679             };
34680             this.expandPath(keys.join(this.pathSeparator), attr, f);
34681         }else{
34682             this.root.select();
34683             if(callback){
34684                 callback(true, this.root);
34685             }
34686         }
34687     },
34688
34689     getTreeEl : function(){
34690         return this.el;
34691     },
34692
34693     /**
34694      * Trigger rendering of this TreePanel
34695      */
34696     render : function(){
34697         if (this.innerCt) {
34698             return this; // stop it rendering more than once!!
34699         }
34700         
34701         this.innerCt = this.el.createChild({tag:"ul",
34702                cls:"x-tree-root-ct " +
34703                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34704
34705         if(this.containerScroll){
34706             Roo.dd.ScrollManager.register(this.el);
34707         }
34708         if((this.enableDD || this.enableDrop) && !this.dropZone){
34709            /**
34710             * The dropZone used by this tree if drop is enabled
34711             * @type Roo.tree.TreeDropZone
34712             */
34713              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34714                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34715            });
34716         }
34717         if((this.enableDD || this.enableDrag) && !this.dragZone){
34718            /**
34719             * The dragZone used by this tree if drag is enabled
34720             * @type Roo.tree.TreeDragZone
34721             */
34722             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34723                ddGroup: this.ddGroup || "TreeDD",
34724                scroll: this.ddScroll
34725            });
34726         }
34727         this.getSelectionModel().init(this);
34728         if (!this.root) {
34729             Roo.log("ROOT not set in tree");
34730             return this;
34731         }
34732         this.root.render();
34733         if(!this.rootVisible){
34734             this.root.renderChildren();
34735         }
34736         return this;
34737     }
34738 });/*
34739  * Based on:
34740  * Ext JS Library 1.1.1
34741  * Copyright(c) 2006-2007, Ext JS, LLC.
34742  *
34743  * Originally Released Under LGPL - original licence link has changed is not relivant.
34744  *
34745  * Fork - LGPL
34746  * <script type="text/javascript">
34747  */
34748  
34749
34750 /**
34751  * @class Roo.tree.DefaultSelectionModel
34752  * @extends Roo.util.Observable
34753  * The default single selection for a TreePanel.
34754  * @param {Object} cfg Configuration
34755  */
34756 Roo.tree.DefaultSelectionModel = function(cfg){
34757    this.selNode = null;
34758    
34759    
34760    
34761    this.addEvents({
34762        /**
34763         * @event selectionchange
34764         * Fires when the selected node changes
34765         * @param {DefaultSelectionModel} this
34766         * @param {TreeNode} node the new selection
34767         */
34768        "selectionchange" : true,
34769
34770        /**
34771         * @event beforeselect
34772         * Fires before the selected node changes, return false to cancel the change
34773         * @param {DefaultSelectionModel} this
34774         * @param {TreeNode} node the new selection
34775         * @param {TreeNode} node the old selection
34776         */
34777        "beforeselect" : true
34778    });
34779    
34780     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34781 };
34782
34783 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34784     init : function(tree){
34785         this.tree = tree;
34786         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34787         tree.on("click", this.onNodeClick, this);
34788     },
34789     
34790     onNodeClick : function(node, e){
34791         if (e.ctrlKey && this.selNode == node)  {
34792             this.unselect(node);
34793             return;
34794         }
34795         this.select(node);
34796     },
34797     
34798     /**
34799      * Select a node.
34800      * @param {TreeNode} node The node to select
34801      * @return {TreeNode} The selected node
34802      */
34803     select : function(node){
34804         var last = this.selNode;
34805         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34806             if(last){
34807                 last.ui.onSelectedChange(false);
34808             }
34809             this.selNode = node;
34810             node.ui.onSelectedChange(true);
34811             this.fireEvent("selectionchange", this, node, last);
34812         }
34813         return node;
34814     },
34815     
34816     /**
34817      * Deselect a node.
34818      * @param {TreeNode} node The node to unselect
34819      */
34820     unselect : function(node){
34821         if(this.selNode == node){
34822             this.clearSelections();
34823         }    
34824     },
34825     
34826     /**
34827      * Clear all selections
34828      */
34829     clearSelections : function(){
34830         var n = this.selNode;
34831         if(n){
34832             n.ui.onSelectedChange(false);
34833             this.selNode = null;
34834             this.fireEvent("selectionchange", this, null);
34835         }
34836         return n;
34837     },
34838     
34839     /**
34840      * Get the selected node
34841      * @return {TreeNode} The selected node
34842      */
34843     getSelectedNode : function(){
34844         return this.selNode;    
34845     },
34846     
34847     /**
34848      * Returns true if the node is selected
34849      * @param {TreeNode} node The node to check
34850      * @return {Boolean}
34851      */
34852     isSelected : function(node){
34853         return this.selNode == node;  
34854     },
34855
34856     /**
34857      * Selects the node above the selected node in the tree, intelligently walking the nodes
34858      * @return TreeNode The new selection
34859      */
34860     selectPrevious : function(){
34861         var s = this.selNode || this.lastSelNode;
34862         if(!s){
34863             return null;
34864         }
34865         var ps = s.previousSibling;
34866         if(ps){
34867             if(!ps.isExpanded() || ps.childNodes.length < 1){
34868                 return this.select(ps);
34869             } else{
34870                 var lc = ps.lastChild;
34871                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34872                     lc = lc.lastChild;
34873                 }
34874                 return this.select(lc);
34875             }
34876         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34877             return this.select(s.parentNode);
34878         }
34879         return null;
34880     },
34881
34882     /**
34883      * Selects the node above the selected node in the tree, intelligently walking the nodes
34884      * @return TreeNode The new selection
34885      */
34886     selectNext : function(){
34887         var s = this.selNode || this.lastSelNode;
34888         if(!s){
34889             return null;
34890         }
34891         if(s.firstChild && s.isExpanded()){
34892              return this.select(s.firstChild);
34893          }else if(s.nextSibling){
34894              return this.select(s.nextSibling);
34895          }else if(s.parentNode){
34896             var newS = null;
34897             s.parentNode.bubble(function(){
34898                 if(this.nextSibling){
34899                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34900                     return false;
34901                 }
34902             });
34903             return newS;
34904          }
34905         return null;
34906     },
34907
34908     onKeyDown : function(e){
34909         var s = this.selNode || this.lastSelNode;
34910         // undesirable, but required
34911         var sm = this;
34912         if(!s){
34913             return;
34914         }
34915         var k = e.getKey();
34916         switch(k){
34917              case e.DOWN:
34918                  e.stopEvent();
34919                  this.selectNext();
34920              break;
34921              case e.UP:
34922                  e.stopEvent();
34923                  this.selectPrevious();
34924              break;
34925              case e.RIGHT:
34926                  e.preventDefault();
34927                  if(s.hasChildNodes()){
34928                      if(!s.isExpanded()){
34929                          s.expand();
34930                      }else if(s.firstChild){
34931                          this.select(s.firstChild, e);
34932                      }
34933                  }
34934              break;
34935              case e.LEFT:
34936                  e.preventDefault();
34937                  if(s.hasChildNodes() && s.isExpanded()){
34938                      s.collapse();
34939                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34940                      this.select(s.parentNode, e);
34941                  }
34942              break;
34943         };
34944     }
34945 });
34946
34947 /**
34948  * @class Roo.tree.MultiSelectionModel
34949  * @extends Roo.util.Observable
34950  * Multi selection for a TreePanel.
34951  * @param {Object} cfg Configuration
34952  */
34953 Roo.tree.MultiSelectionModel = function(){
34954    this.selNodes = [];
34955    this.selMap = {};
34956    this.addEvents({
34957        /**
34958         * @event selectionchange
34959         * Fires when the selected nodes change
34960         * @param {MultiSelectionModel} this
34961         * @param {Array} nodes Array of the selected nodes
34962         */
34963        "selectionchange" : true
34964    });
34965    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34966    
34967 };
34968
34969 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34970     init : function(tree){
34971         this.tree = tree;
34972         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34973         tree.on("click", this.onNodeClick, this);
34974     },
34975     
34976     onNodeClick : function(node, e){
34977         this.select(node, e, e.ctrlKey);
34978     },
34979     
34980     /**
34981      * Select a node.
34982      * @param {TreeNode} node The node to select
34983      * @param {EventObject} e (optional) An event associated with the selection
34984      * @param {Boolean} keepExisting True to retain existing selections
34985      * @return {TreeNode} The selected node
34986      */
34987     select : function(node, e, keepExisting){
34988         if(keepExisting !== true){
34989             this.clearSelections(true);
34990         }
34991         if(this.isSelected(node)){
34992             this.lastSelNode = node;
34993             return node;
34994         }
34995         this.selNodes.push(node);
34996         this.selMap[node.id] = node;
34997         this.lastSelNode = node;
34998         node.ui.onSelectedChange(true);
34999         this.fireEvent("selectionchange", this, this.selNodes);
35000         return node;
35001     },
35002     
35003     /**
35004      * Deselect a node.
35005      * @param {TreeNode} node The node to unselect
35006      */
35007     unselect : function(node){
35008         if(this.selMap[node.id]){
35009             node.ui.onSelectedChange(false);
35010             var sn = this.selNodes;
35011             var index = -1;
35012             if(sn.indexOf){
35013                 index = sn.indexOf(node);
35014             }else{
35015                 for(var i = 0, len = sn.length; i < len; i++){
35016                     if(sn[i] == node){
35017                         index = i;
35018                         break;
35019                     }
35020                 }
35021             }
35022             if(index != -1){
35023                 this.selNodes.splice(index, 1);
35024             }
35025             delete this.selMap[node.id];
35026             this.fireEvent("selectionchange", this, this.selNodes);
35027         }
35028     },
35029     
35030     /**
35031      * Clear all selections
35032      */
35033     clearSelections : function(suppressEvent){
35034         var sn = this.selNodes;
35035         if(sn.length > 0){
35036             for(var i = 0, len = sn.length; i < len; i++){
35037                 sn[i].ui.onSelectedChange(false);
35038             }
35039             this.selNodes = [];
35040             this.selMap = {};
35041             if(suppressEvent !== true){
35042                 this.fireEvent("selectionchange", this, this.selNodes);
35043             }
35044         }
35045     },
35046     
35047     /**
35048      * Returns true if the node is selected
35049      * @param {TreeNode} node The node to check
35050      * @return {Boolean}
35051      */
35052     isSelected : function(node){
35053         return this.selMap[node.id] ? true : false;  
35054     },
35055     
35056     /**
35057      * Returns an array of the selected nodes
35058      * @return {Array}
35059      */
35060     getSelectedNodes : function(){
35061         return this.selNodes;    
35062     },
35063
35064     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
35065
35066     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
35067
35068     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
35069 });/*
35070  * Based on:
35071  * Ext JS Library 1.1.1
35072  * Copyright(c) 2006-2007, Ext JS, LLC.
35073  *
35074  * Originally Released Under LGPL - original licence link has changed is not relivant.
35075  *
35076  * Fork - LGPL
35077  * <script type="text/javascript">
35078  */
35079  
35080 /**
35081  * @class Roo.tree.TreeNode
35082  * @extends Roo.data.Node
35083  * @cfg {String} text The text for this node
35084  * @cfg {Boolean} expanded true to start the node expanded
35085  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35086  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35087  * @cfg {Boolean} disabled true to start the node disabled
35088  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35089  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35090  * @cfg {String} cls A css class to be added to the node
35091  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35092  * @cfg {String} href URL of the link used for the node (defaults to #)
35093  * @cfg {String} hrefTarget target frame for the link
35094  * @cfg {String} qtip An Ext QuickTip for the node
35095  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35096  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35097  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35098  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35099  * (defaults to undefined with no checkbox rendered)
35100  * @constructor
35101  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35102  */
35103 Roo.tree.TreeNode = function(attributes){
35104     attributes = attributes || {};
35105     if(typeof attributes == "string"){
35106         attributes = {text: attributes};
35107     }
35108     this.childrenRendered = false;
35109     this.rendered = false;
35110     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35111     this.expanded = attributes.expanded === true;
35112     this.isTarget = attributes.isTarget !== false;
35113     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35114     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35115
35116     /**
35117      * Read-only. The text for this node. To change it use setText().
35118      * @type String
35119      */
35120     this.text = attributes.text;
35121     /**
35122      * True if this node is disabled.
35123      * @type Boolean
35124      */
35125     this.disabled = attributes.disabled === true;
35126
35127     this.addEvents({
35128         /**
35129         * @event textchange
35130         * Fires when the text for this node is changed
35131         * @param {Node} this This node
35132         * @param {String} text The new text
35133         * @param {String} oldText The old text
35134         */
35135         "textchange" : true,
35136         /**
35137         * @event beforeexpand
35138         * Fires before this node is expanded, return false to cancel.
35139         * @param {Node} this This node
35140         * @param {Boolean} deep
35141         * @param {Boolean} anim
35142         */
35143         "beforeexpand" : true,
35144         /**
35145         * @event beforecollapse
35146         * Fires before this node is collapsed, return false to cancel.
35147         * @param {Node} this This node
35148         * @param {Boolean} deep
35149         * @param {Boolean} anim
35150         */
35151         "beforecollapse" : true,
35152         /**
35153         * @event expand
35154         * Fires when this node is expanded
35155         * @param {Node} this This node
35156         */
35157         "expand" : true,
35158         /**
35159         * @event disabledchange
35160         * Fires when the disabled status of this node changes
35161         * @param {Node} this This node
35162         * @param {Boolean} disabled
35163         */
35164         "disabledchange" : true,
35165         /**
35166         * @event collapse
35167         * Fires when this node is collapsed
35168         * @param {Node} this This node
35169         */
35170         "collapse" : true,
35171         /**
35172         * @event beforeclick
35173         * Fires before click processing. Return false to cancel the default action.
35174         * @param {Node} this This node
35175         * @param {Roo.EventObject} e The event object
35176         */
35177         "beforeclick":true,
35178         /**
35179         * @event checkchange
35180         * Fires when a node with a checkbox's checked property changes
35181         * @param {Node} this This node
35182         * @param {Boolean} checked
35183         */
35184         "checkchange":true,
35185         /**
35186         * @event click
35187         * Fires when this node is clicked
35188         * @param {Node} this This node
35189         * @param {Roo.EventObject} e The event object
35190         */
35191         "click":true,
35192         /**
35193         * @event dblclick
35194         * Fires when this node is double clicked
35195         * @param {Node} this This node
35196         * @param {Roo.EventObject} e The event object
35197         */
35198         "dblclick":true,
35199         /**
35200         * @event contextmenu
35201         * Fires when this node is right clicked
35202         * @param {Node} this This node
35203         * @param {Roo.EventObject} e The event object
35204         */
35205         "contextmenu":true,
35206         /**
35207         * @event beforechildrenrendered
35208         * Fires right before the child nodes for this node are rendered
35209         * @param {Node} this This node
35210         */
35211         "beforechildrenrendered":true
35212     });
35213
35214     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35215
35216     /**
35217      * Read-only. The UI for this node
35218      * @type TreeNodeUI
35219      */
35220     this.ui = new uiClass(this);
35221     
35222     // finally support items[]
35223     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35224         return;
35225     }
35226     
35227     
35228     Roo.each(this.attributes.items, function(c) {
35229         this.appendChild(Roo.factory(c,Roo.Tree));
35230     }, this);
35231     delete this.attributes.items;
35232     
35233     
35234     
35235 };
35236 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35237     preventHScroll: true,
35238     /**
35239      * Returns true if this node is expanded
35240      * @return {Boolean}
35241      */
35242     isExpanded : function(){
35243         return this.expanded;
35244     },
35245
35246     /**
35247      * Returns the UI object for this node
35248      * @return {TreeNodeUI}
35249      */
35250     getUI : function(){
35251         return this.ui;
35252     },
35253
35254     // private override
35255     setFirstChild : function(node){
35256         var of = this.firstChild;
35257         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35258         if(this.childrenRendered && of && node != of){
35259             of.renderIndent(true, true);
35260         }
35261         if(this.rendered){
35262             this.renderIndent(true, true);
35263         }
35264     },
35265
35266     // private override
35267     setLastChild : function(node){
35268         var ol = this.lastChild;
35269         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35270         if(this.childrenRendered && ol && node != ol){
35271             ol.renderIndent(true, true);
35272         }
35273         if(this.rendered){
35274             this.renderIndent(true, true);
35275         }
35276     },
35277
35278     // these methods are overridden to provide lazy rendering support
35279     // private override
35280     appendChild : function()
35281     {
35282         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35283         if(node && this.childrenRendered){
35284             node.render();
35285         }
35286         this.ui.updateExpandIcon();
35287         return node;
35288     },
35289
35290     // private override
35291     removeChild : function(node){
35292         this.ownerTree.getSelectionModel().unselect(node);
35293         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35294         // if it's been rendered remove dom node
35295         if(this.childrenRendered){
35296             node.ui.remove();
35297         }
35298         if(this.childNodes.length < 1){
35299             this.collapse(false, false);
35300         }else{
35301             this.ui.updateExpandIcon();
35302         }
35303         if(!this.firstChild) {
35304             this.childrenRendered = false;
35305         }
35306         return node;
35307     },
35308
35309     // private override
35310     insertBefore : function(node, refNode){
35311         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35312         if(newNode && refNode && this.childrenRendered){
35313             node.render();
35314         }
35315         this.ui.updateExpandIcon();
35316         return newNode;
35317     },
35318
35319     /**
35320      * Sets the text for this node
35321      * @param {String} text
35322      */
35323     setText : function(text){
35324         var oldText = this.text;
35325         this.text = text;
35326         this.attributes.text = text;
35327         if(this.rendered){ // event without subscribing
35328             this.ui.onTextChange(this, text, oldText);
35329         }
35330         this.fireEvent("textchange", this, text, oldText);
35331     },
35332
35333     /**
35334      * Triggers selection of this node
35335      */
35336     select : function(){
35337         this.getOwnerTree().getSelectionModel().select(this);
35338     },
35339
35340     /**
35341      * Triggers deselection of this node
35342      */
35343     unselect : function(){
35344         this.getOwnerTree().getSelectionModel().unselect(this);
35345     },
35346
35347     /**
35348      * Returns true if this node is selected
35349      * @return {Boolean}
35350      */
35351     isSelected : function(){
35352         return this.getOwnerTree().getSelectionModel().isSelected(this);
35353     },
35354
35355     /**
35356      * Expand this node.
35357      * @param {Boolean} deep (optional) True to expand all children as well
35358      * @param {Boolean} anim (optional) false to cancel the default animation
35359      * @param {Function} callback (optional) A callback to be called when
35360      * expanding this node completes (does not wait for deep expand to complete).
35361      * Called with 1 parameter, this node.
35362      */
35363     expand : function(deep, anim, callback){
35364         if(!this.expanded){
35365             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35366                 return;
35367             }
35368             if(!this.childrenRendered){
35369                 this.renderChildren();
35370             }
35371             this.expanded = true;
35372             
35373             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35374                 this.ui.animExpand(function(){
35375                     this.fireEvent("expand", this);
35376                     if(typeof callback == "function"){
35377                         callback(this);
35378                     }
35379                     if(deep === true){
35380                         this.expandChildNodes(true);
35381                     }
35382                 }.createDelegate(this));
35383                 return;
35384             }else{
35385                 this.ui.expand();
35386                 this.fireEvent("expand", this);
35387                 if(typeof callback == "function"){
35388                     callback(this);
35389                 }
35390             }
35391         }else{
35392            if(typeof callback == "function"){
35393                callback(this);
35394            }
35395         }
35396         if(deep === true){
35397             this.expandChildNodes(true);
35398         }
35399     },
35400
35401     isHiddenRoot : function(){
35402         return this.isRoot && !this.getOwnerTree().rootVisible;
35403     },
35404
35405     /**
35406      * Collapse this node.
35407      * @param {Boolean} deep (optional) True to collapse all children as well
35408      * @param {Boolean} anim (optional) false to cancel the default animation
35409      */
35410     collapse : function(deep, anim){
35411         if(this.expanded && !this.isHiddenRoot()){
35412             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35413                 return;
35414             }
35415             this.expanded = false;
35416             if((this.getOwnerTree().animate && anim !== false) || anim){
35417                 this.ui.animCollapse(function(){
35418                     this.fireEvent("collapse", this);
35419                     if(deep === true){
35420                         this.collapseChildNodes(true);
35421                     }
35422                 }.createDelegate(this));
35423                 return;
35424             }else{
35425                 this.ui.collapse();
35426                 this.fireEvent("collapse", this);
35427             }
35428         }
35429         if(deep === true){
35430             var cs = this.childNodes;
35431             for(var i = 0, len = cs.length; i < len; i++) {
35432                 cs[i].collapse(true, false);
35433             }
35434         }
35435     },
35436
35437     // private
35438     delayedExpand : function(delay){
35439         if(!this.expandProcId){
35440             this.expandProcId = this.expand.defer(delay, this);
35441         }
35442     },
35443
35444     // private
35445     cancelExpand : function(){
35446         if(this.expandProcId){
35447             clearTimeout(this.expandProcId);
35448         }
35449         this.expandProcId = false;
35450     },
35451
35452     /**
35453      * Toggles expanded/collapsed state of the node
35454      */
35455     toggle : function(){
35456         if(this.expanded){
35457             this.collapse();
35458         }else{
35459             this.expand();
35460         }
35461     },
35462
35463     /**
35464      * Ensures all parent nodes are expanded
35465      */
35466     ensureVisible : function(callback){
35467         var tree = this.getOwnerTree();
35468         tree.expandPath(this.parentNode.getPath(), false, function(){
35469             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35470             Roo.callback(callback);
35471         }.createDelegate(this));
35472     },
35473
35474     /**
35475      * Expand all child nodes
35476      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35477      */
35478     expandChildNodes : function(deep){
35479         var cs = this.childNodes;
35480         for(var i = 0, len = cs.length; i < len; i++) {
35481                 cs[i].expand(deep);
35482         }
35483     },
35484
35485     /**
35486      * Collapse all child nodes
35487      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35488      */
35489     collapseChildNodes : function(deep){
35490         var cs = this.childNodes;
35491         for(var i = 0, len = cs.length; i < len; i++) {
35492                 cs[i].collapse(deep);
35493         }
35494     },
35495
35496     /**
35497      * Disables this node
35498      */
35499     disable : function(){
35500         this.disabled = true;
35501         this.unselect();
35502         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35503             this.ui.onDisableChange(this, true);
35504         }
35505         this.fireEvent("disabledchange", this, true);
35506     },
35507
35508     /**
35509      * Enables this node
35510      */
35511     enable : function(){
35512         this.disabled = false;
35513         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35514             this.ui.onDisableChange(this, false);
35515         }
35516         this.fireEvent("disabledchange", this, false);
35517     },
35518
35519     // private
35520     renderChildren : function(suppressEvent){
35521         if(suppressEvent !== false){
35522             this.fireEvent("beforechildrenrendered", this);
35523         }
35524         var cs = this.childNodes;
35525         for(var i = 0, len = cs.length; i < len; i++){
35526             cs[i].render(true);
35527         }
35528         this.childrenRendered = true;
35529     },
35530
35531     // private
35532     sort : function(fn, scope){
35533         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35534         if(this.childrenRendered){
35535             var cs = this.childNodes;
35536             for(var i = 0, len = cs.length; i < len; i++){
35537                 cs[i].render(true);
35538             }
35539         }
35540     },
35541
35542     // private
35543     render : function(bulkRender){
35544         this.ui.render(bulkRender);
35545         if(!this.rendered){
35546             this.rendered = true;
35547             if(this.expanded){
35548                 this.expanded = false;
35549                 this.expand(false, false);
35550             }
35551         }
35552     },
35553
35554     // private
35555     renderIndent : function(deep, refresh){
35556         if(refresh){
35557             this.ui.childIndent = null;
35558         }
35559         this.ui.renderIndent();
35560         if(deep === true && this.childrenRendered){
35561             var cs = this.childNodes;
35562             for(var i = 0, len = cs.length; i < len; i++){
35563                 cs[i].renderIndent(true, refresh);
35564             }
35565         }
35566     }
35567 });/*
35568  * Based on:
35569  * Ext JS Library 1.1.1
35570  * Copyright(c) 2006-2007, Ext JS, LLC.
35571  *
35572  * Originally Released Under LGPL - original licence link has changed is not relivant.
35573  *
35574  * Fork - LGPL
35575  * <script type="text/javascript">
35576  */
35577  
35578 /**
35579  * @class Roo.tree.AsyncTreeNode
35580  * @extends Roo.tree.TreeNode
35581  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35582  * @constructor
35583  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35584  */
35585  Roo.tree.AsyncTreeNode = function(config){
35586     this.loaded = false;
35587     this.loading = false;
35588     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35589     /**
35590     * @event beforeload
35591     * Fires before this node is loaded, return false to cancel
35592     * @param {Node} this This node
35593     */
35594     this.addEvents({'beforeload':true, 'load': true});
35595     /**
35596     * @event load
35597     * Fires when this node is loaded
35598     * @param {Node} this This node
35599     */
35600     /**
35601      * The loader used by this node (defaults to using the tree's defined loader)
35602      * @type TreeLoader
35603      * @property loader
35604      */
35605 };
35606 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35607     expand : function(deep, anim, callback){
35608         if(this.loading){ // if an async load is already running, waiting til it's done
35609             var timer;
35610             var f = function(){
35611                 if(!this.loading){ // done loading
35612                     clearInterval(timer);
35613                     this.expand(deep, anim, callback);
35614                 }
35615             }.createDelegate(this);
35616             timer = setInterval(f, 200);
35617             return;
35618         }
35619         if(!this.loaded){
35620             if(this.fireEvent("beforeload", this) === false){
35621                 return;
35622             }
35623             this.loading = true;
35624             this.ui.beforeLoad(this);
35625             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35626             if(loader){
35627                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35628                 return;
35629             }
35630         }
35631         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35632     },
35633     
35634     /**
35635      * Returns true if this node is currently loading
35636      * @return {Boolean}
35637      */
35638     isLoading : function(){
35639         return this.loading;  
35640     },
35641     
35642     loadComplete : function(deep, anim, callback){
35643         this.loading = false;
35644         this.loaded = true;
35645         this.ui.afterLoad(this);
35646         this.fireEvent("load", this);
35647         this.expand(deep, anim, callback);
35648     },
35649     
35650     /**
35651      * Returns true if this node has been loaded
35652      * @return {Boolean}
35653      */
35654     isLoaded : function(){
35655         return this.loaded;
35656     },
35657     
35658     hasChildNodes : function(){
35659         if(!this.isLeaf() && !this.loaded){
35660             return true;
35661         }else{
35662             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35663         }
35664     },
35665
35666     /**
35667      * Trigger a reload for this node
35668      * @param {Function} callback
35669      */
35670     reload : function(callback){
35671         this.collapse(false, false);
35672         while(this.firstChild){
35673             this.removeChild(this.firstChild);
35674         }
35675         this.childrenRendered = false;
35676         this.loaded = false;
35677         if(this.isHiddenRoot()){
35678             this.expanded = false;
35679         }
35680         this.expand(false, false, callback);
35681     }
35682 });/*
35683  * Based on:
35684  * Ext JS Library 1.1.1
35685  * Copyright(c) 2006-2007, Ext JS, LLC.
35686  *
35687  * Originally Released Under LGPL - original licence link has changed is not relivant.
35688  *
35689  * Fork - LGPL
35690  * <script type="text/javascript">
35691  */
35692  
35693 /**
35694  * @class Roo.tree.TreeNodeUI
35695  * @constructor
35696  * @param {Object} node The node to render
35697  * The TreeNode UI implementation is separate from the
35698  * tree implementation. Unless you are customizing the tree UI,
35699  * you should never have to use this directly.
35700  */
35701 Roo.tree.TreeNodeUI = function(node){
35702     this.node = node;
35703     this.rendered = false;
35704     this.animating = false;
35705     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35706 };
35707
35708 Roo.tree.TreeNodeUI.prototype = {
35709     removeChild : function(node){
35710         if(this.rendered){
35711             this.ctNode.removeChild(node.ui.getEl());
35712         }
35713     },
35714
35715     beforeLoad : function(){
35716          this.addClass("x-tree-node-loading");
35717     },
35718
35719     afterLoad : function(){
35720          this.removeClass("x-tree-node-loading");
35721     },
35722
35723     onTextChange : function(node, text, oldText){
35724         if(this.rendered){
35725             this.textNode.innerHTML = text;
35726         }
35727     },
35728
35729     onDisableChange : function(node, state){
35730         this.disabled = state;
35731         if(state){
35732             this.addClass("x-tree-node-disabled");
35733         }else{
35734             this.removeClass("x-tree-node-disabled");
35735         }
35736     },
35737
35738     onSelectedChange : function(state){
35739         if(state){
35740             this.focus();
35741             this.addClass("x-tree-selected");
35742         }else{
35743             //this.blur();
35744             this.removeClass("x-tree-selected");
35745         }
35746     },
35747
35748     onMove : function(tree, node, oldParent, newParent, index, refNode){
35749         this.childIndent = null;
35750         if(this.rendered){
35751             var targetNode = newParent.ui.getContainer();
35752             if(!targetNode){//target not rendered
35753                 this.holder = document.createElement("div");
35754                 this.holder.appendChild(this.wrap);
35755                 return;
35756             }
35757             var insertBefore = refNode ? refNode.ui.getEl() : null;
35758             if(insertBefore){
35759                 targetNode.insertBefore(this.wrap, insertBefore);
35760             }else{
35761                 targetNode.appendChild(this.wrap);
35762             }
35763             this.node.renderIndent(true);
35764         }
35765     },
35766
35767     addClass : function(cls){
35768         if(this.elNode){
35769             Roo.fly(this.elNode).addClass(cls);
35770         }
35771     },
35772
35773     removeClass : function(cls){
35774         if(this.elNode){
35775             Roo.fly(this.elNode).removeClass(cls);
35776         }
35777     },
35778
35779     remove : function(){
35780         if(this.rendered){
35781             this.holder = document.createElement("div");
35782             this.holder.appendChild(this.wrap);
35783         }
35784     },
35785
35786     fireEvent : function(){
35787         return this.node.fireEvent.apply(this.node, arguments);
35788     },
35789
35790     initEvents : function(){
35791         this.node.on("move", this.onMove, this);
35792         var E = Roo.EventManager;
35793         var a = this.anchor;
35794
35795         var el = Roo.fly(a, '_treeui');
35796
35797         if(Roo.isOpera){ // opera render bug ignores the CSS
35798             el.setStyle("text-decoration", "none");
35799         }
35800
35801         el.on("click", this.onClick, this);
35802         el.on("dblclick", this.onDblClick, this);
35803
35804         if(this.checkbox){
35805             Roo.EventManager.on(this.checkbox,
35806                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35807         }
35808
35809         el.on("contextmenu", this.onContextMenu, this);
35810
35811         var icon = Roo.fly(this.iconNode);
35812         icon.on("click", this.onClick, this);
35813         icon.on("dblclick", this.onDblClick, this);
35814         icon.on("contextmenu", this.onContextMenu, this);
35815         E.on(this.ecNode, "click", this.ecClick, this, true);
35816
35817         if(this.node.disabled){
35818             this.addClass("x-tree-node-disabled");
35819         }
35820         if(this.node.hidden){
35821             this.addClass("x-tree-node-disabled");
35822         }
35823         var ot = this.node.getOwnerTree();
35824         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35825         if(dd && (!this.node.isRoot || ot.rootVisible)){
35826             Roo.dd.Registry.register(this.elNode, {
35827                 node: this.node,
35828                 handles: this.getDDHandles(),
35829                 isHandle: false
35830             });
35831         }
35832     },
35833
35834     getDDHandles : function(){
35835         return [this.iconNode, this.textNode];
35836     },
35837
35838     hide : function(){
35839         if(this.rendered){
35840             this.wrap.style.display = "none";
35841         }
35842     },
35843
35844     show : function(){
35845         if(this.rendered){
35846             this.wrap.style.display = "";
35847         }
35848     },
35849
35850     onContextMenu : function(e){
35851         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35852             e.preventDefault();
35853             this.focus();
35854             this.fireEvent("contextmenu", this.node, e);
35855         }
35856     },
35857
35858     onClick : function(e){
35859         if(this.dropping){
35860             e.stopEvent();
35861             return;
35862         }
35863         if(this.fireEvent("beforeclick", this.node, e) !== false){
35864             if(!this.disabled && this.node.attributes.href){
35865                 this.fireEvent("click", this.node, e);
35866                 return;
35867             }
35868             e.preventDefault();
35869             if(this.disabled){
35870                 return;
35871             }
35872
35873             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35874                 this.node.toggle();
35875             }
35876
35877             this.fireEvent("click", this.node, e);
35878         }else{
35879             e.stopEvent();
35880         }
35881     },
35882
35883     onDblClick : function(e){
35884         e.preventDefault();
35885         if(this.disabled){
35886             return;
35887         }
35888         if(this.checkbox){
35889             this.toggleCheck();
35890         }
35891         if(!this.animating && this.node.hasChildNodes()){
35892             this.node.toggle();
35893         }
35894         this.fireEvent("dblclick", this.node, e);
35895     },
35896
35897     onCheckChange : function(){
35898         var checked = this.checkbox.checked;
35899         this.node.attributes.checked = checked;
35900         this.fireEvent('checkchange', this.node, checked);
35901     },
35902
35903     ecClick : function(e){
35904         if(!this.animating && this.node.hasChildNodes()){
35905             this.node.toggle();
35906         }
35907     },
35908
35909     startDrop : function(){
35910         this.dropping = true;
35911     },
35912
35913     // delayed drop so the click event doesn't get fired on a drop
35914     endDrop : function(){
35915        setTimeout(function(){
35916            this.dropping = false;
35917        }.createDelegate(this), 50);
35918     },
35919
35920     expand : function(){
35921         this.updateExpandIcon();
35922         this.ctNode.style.display = "";
35923     },
35924
35925     focus : function(){
35926         if(!this.node.preventHScroll){
35927             try{this.anchor.focus();
35928             }catch(e){}
35929         }else if(!Roo.isIE){
35930             try{
35931                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35932                 var l = noscroll.scrollLeft;
35933                 this.anchor.focus();
35934                 noscroll.scrollLeft = l;
35935             }catch(e){}
35936         }
35937     },
35938
35939     toggleCheck : function(value){
35940         var cb = this.checkbox;
35941         if(cb){
35942             cb.checked = (value === undefined ? !cb.checked : value);
35943         }
35944     },
35945
35946     blur : function(){
35947         try{
35948             this.anchor.blur();
35949         }catch(e){}
35950     },
35951
35952     animExpand : function(callback){
35953         var ct = Roo.get(this.ctNode);
35954         ct.stopFx();
35955         if(!this.node.hasChildNodes()){
35956             this.updateExpandIcon();
35957             this.ctNode.style.display = "";
35958             Roo.callback(callback);
35959             return;
35960         }
35961         this.animating = true;
35962         this.updateExpandIcon();
35963
35964         ct.slideIn('t', {
35965            callback : function(){
35966                this.animating = false;
35967                Roo.callback(callback);
35968             },
35969             scope: this,
35970             duration: this.node.ownerTree.duration || .25
35971         });
35972     },
35973
35974     highlight : function(){
35975         var tree = this.node.getOwnerTree();
35976         Roo.fly(this.wrap).highlight(
35977             tree.hlColor || "C3DAF9",
35978             {endColor: tree.hlBaseColor}
35979         );
35980     },
35981
35982     collapse : function(){
35983         this.updateExpandIcon();
35984         this.ctNode.style.display = "none";
35985     },
35986
35987     animCollapse : function(callback){
35988         var ct = Roo.get(this.ctNode);
35989         ct.enableDisplayMode('block');
35990         ct.stopFx();
35991
35992         this.animating = true;
35993         this.updateExpandIcon();
35994
35995         ct.slideOut('t', {
35996             callback : function(){
35997                this.animating = false;
35998                Roo.callback(callback);
35999             },
36000             scope: this,
36001             duration: this.node.ownerTree.duration || .25
36002         });
36003     },
36004
36005     getContainer : function(){
36006         return this.ctNode;
36007     },
36008
36009     getEl : function(){
36010         return this.wrap;
36011     },
36012
36013     appendDDGhost : function(ghostNode){
36014         ghostNode.appendChild(this.elNode.cloneNode(true));
36015     },
36016
36017     getDDRepairXY : function(){
36018         return Roo.lib.Dom.getXY(this.iconNode);
36019     },
36020
36021     onRender : function(){
36022         this.render();
36023     },
36024
36025     render : function(bulkRender){
36026         var n = this.node, a = n.attributes;
36027         var targetNode = n.parentNode ?
36028               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
36029
36030         if(!this.rendered){
36031             this.rendered = true;
36032
36033             this.renderElements(n, a, targetNode, bulkRender);
36034
36035             if(a.qtip){
36036                if(this.textNode.setAttributeNS){
36037                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
36038                    if(a.qtipTitle){
36039                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
36040                    }
36041                }else{
36042                    this.textNode.setAttribute("ext:qtip", a.qtip);
36043                    if(a.qtipTitle){
36044                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
36045                    }
36046                }
36047             }else if(a.qtipCfg){
36048                 a.qtipCfg.target = Roo.id(this.textNode);
36049                 Roo.QuickTips.register(a.qtipCfg);
36050             }
36051             this.initEvents();
36052             if(!this.node.expanded){
36053                 this.updateExpandIcon();
36054             }
36055         }else{
36056             if(bulkRender === true) {
36057                 targetNode.appendChild(this.wrap);
36058             }
36059         }
36060     },
36061
36062     renderElements : function(n, a, targetNode, bulkRender)
36063     {
36064         // add some indent caching, this helps performance when rendering a large tree
36065         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36066         var t = n.getOwnerTree();
36067         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
36068         if (typeof(n.attributes.html) != 'undefined') {
36069             txt = n.attributes.html;
36070         }
36071         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
36072         var cb = typeof a.checked == 'boolean';
36073         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36074         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
36075             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
36076             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
36077             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
36078             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
36079             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
36080              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
36081                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36082             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36083             "</li>"];
36084
36085         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36086             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36087                                 n.nextSibling.ui.getEl(), buf.join(""));
36088         }else{
36089             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36090         }
36091
36092         this.elNode = this.wrap.childNodes[0];
36093         this.ctNode = this.wrap.childNodes[1];
36094         var cs = this.elNode.childNodes;
36095         this.indentNode = cs[0];
36096         this.ecNode = cs[1];
36097         this.iconNode = cs[2];
36098         var index = 3;
36099         if(cb){
36100             this.checkbox = cs[3];
36101             index++;
36102         }
36103         this.anchor = cs[index];
36104         this.textNode = cs[index].firstChild;
36105     },
36106
36107     getAnchor : function(){
36108         return this.anchor;
36109     },
36110
36111     getTextEl : function(){
36112         return this.textNode;
36113     },
36114
36115     getIconEl : function(){
36116         return this.iconNode;
36117     },
36118
36119     isChecked : function(){
36120         return this.checkbox ? this.checkbox.checked : false;
36121     },
36122
36123     updateExpandIcon : function(){
36124         if(this.rendered){
36125             var n = this.node, c1, c2;
36126             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36127             var hasChild = n.hasChildNodes();
36128             if(hasChild){
36129                 if(n.expanded){
36130                     cls += "-minus";
36131                     c1 = "x-tree-node-collapsed";
36132                     c2 = "x-tree-node-expanded";
36133                 }else{
36134                     cls += "-plus";
36135                     c1 = "x-tree-node-expanded";
36136                     c2 = "x-tree-node-collapsed";
36137                 }
36138                 if(this.wasLeaf){
36139                     this.removeClass("x-tree-node-leaf");
36140                     this.wasLeaf = false;
36141                 }
36142                 if(this.c1 != c1 || this.c2 != c2){
36143                     Roo.fly(this.elNode).replaceClass(c1, c2);
36144                     this.c1 = c1; this.c2 = c2;
36145                 }
36146             }else{
36147                 // this changes non-leafs into leafs if they have no children.
36148                 // it's not very rational behaviour..
36149                 
36150                 if(!this.wasLeaf && this.node.leaf){
36151                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36152                     delete this.c1;
36153                     delete this.c2;
36154                     this.wasLeaf = true;
36155                 }
36156             }
36157             var ecc = "x-tree-ec-icon "+cls;
36158             if(this.ecc != ecc){
36159                 this.ecNode.className = ecc;
36160                 this.ecc = ecc;
36161             }
36162         }
36163     },
36164
36165     getChildIndent : function(){
36166         if(!this.childIndent){
36167             var buf = [];
36168             var p = this.node;
36169             while(p){
36170                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36171                     if(!p.isLast()) {
36172                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36173                     } else {
36174                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36175                     }
36176                 }
36177                 p = p.parentNode;
36178             }
36179             this.childIndent = buf.join("");
36180         }
36181         return this.childIndent;
36182     },
36183
36184     renderIndent : function(){
36185         if(this.rendered){
36186             var indent = "";
36187             var p = this.node.parentNode;
36188             if(p){
36189                 indent = p.ui.getChildIndent();
36190             }
36191             if(this.indentMarkup != indent){ // don't rerender if not required
36192                 this.indentNode.innerHTML = indent;
36193                 this.indentMarkup = indent;
36194             }
36195             this.updateExpandIcon();
36196         }
36197     }
36198 };
36199
36200 Roo.tree.RootTreeNodeUI = function(){
36201     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36202 };
36203 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36204     render : function(){
36205         if(!this.rendered){
36206             var targetNode = this.node.ownerTree.innerCt.dom;
36207             this.node.expanded = true;
36208             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36209             this.wrap = this.ctNode = targetNode.firstChild;
36210         }
36211     },
36212     collapse : function(){
36213     },
36214     expand : function(){
36215     }
36216 });/*
36217  * Based on:
36218  * Ext JS Library 1.1.1
36219  * Copyright(c) 2006-2007, Ext JS, LLC.
36220  *
36221  * Originally Released Under LGPL - original licence link has changed is not relivant.
36222  *
36223  * Fork - LGPL
36224  * <script type="text/javascript">
36225  */
36226 /**
36227  * @class Roo.tree.TreeLoader
36228  * @extends Roo.util.Observable
36229  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36230  * nodes from a specified URL. The response must be a javascript Array definition
36231  * who's elements are node definition objects. eg:
36232  * <pre><code>
36233 {  success : true,
36234    data :      [
36235    
36236     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36237     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36238     ]
36239 }
36240
36241
36242 </code></pre>
36243  * <br><br>
36244  * The old style respose with just an array is still supported, but not recommended.
36245  * <br><br>
36246  *
36247  * A server request is sent, and child nodes are loaded only when a node is expanded.
36248  * The loading node's id is passed to the server under the parameter name "node" to
36249  * enable the server to produce the correct child nodes.
36250  * <br><br>
36251  * To pass extra parameters, an event handler may be attached to the "beforeload"
36252  * event, and the parameters specified in the TreeLoader's baseParams property:
36253  * <pre><code>
36254     myTreeLoader.on("beforeload", function(treeLoader, node) {
36255         this.baseParams.category = node.attributes.category;
36256     }, this);
36257     
36258 </code></pre>
36259  *
36260  * This would pass an HTTP parameter called "category" to the server containing
36261  * the value of the Node's "category" attribute.
36262  * @constructor
36263  * Creates a new Treeloader.
36264  * @param {Object} config A config object containing config properties.
36265  */
36266 Roo.tree.TreeLoader = function(config){
36267     this.baseParams = {};
36268     this.requestMethod = "POST";
36269     Roo.apply(this, config);
36270
36271     this.addEvents({
36272     
36273         /**
36274          * @event beforeload
36275          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36276          * @param {Object} This TreeLoader object.
36277          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36278          * @param {Object} callback The callback function specified in the {@link #load} call.
36279          */
36280         beforeload : true,
36281         /**
36282          * @event load
36283          * Fires when the node has been successfuly loaded.
36284          * @param {Object} This TreeLoader object.
36285          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36286          * @param {Object} response The response object containing the data from the server.
36287          */
36288         load : true,
36289         /**
36290          * @event loadexception
36291          * Fires if the network request failed.
36292          * @param {Object} This TreeLoader object.
36293          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36294          * @param {Object} response The response object containing the data from the server.
36295          */
36296         loadexception : true,
36297         /**
36298          * @event create
36299          * Fires before a node is created, enabling you to return custom Node types 
36300          * @param {Object} This TreeLoader object.
36301          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36302          */
36303         create : true
36304     });
36305
36306     Roo.tree.TreeLoader.superclass.constructor.call(this);
36307 };
36308
36309 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36310     /**
36311     * @cfg {String} dataUrl The URL from which to request a Json string which
36312     * specifies an array of node definition object representing the child nodes
36313     * to be loaded.
36314     */
36315     /**
36316     * @cfg {String} requestMethod either GET or POST
36317     * defaults to POST (due to BC)
36318     * to be loaded.
36319     */
36320     /**
36321     * @cfg {Object} baseParams (optional) An object containing properties which
36322     * specify HTTP parameters to be passed to each request for child nodes.
36323     */
36324     /**
36325     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36326     * created by this loader. If the attributes sent by the server have an attribute in this object,
36327     * they take priority.
36328     */
36329     /**
36330     * @cfg {Object} uiProviders (optional) An object containing properties which
36331     * 
36332     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36333     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36334     * <i>uiProvider</i> attribute of a returned child node is a string rather
36335     * than a reference to a TreeNodeUI implementation, this that string value
36336     * is used as a property name in the uiProviders object. You can define the provider named
36337     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36338     */
36339     uiProviders : {},
36340
36341     /**
36342     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36343     * child nodes before loading.
36344     */
36345     clearOnLoad : true,
36346
36347     /**
36348     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36349     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36350     * Grid query { data : [ .....] }
36351     */
36352     
36353     root : false,
36354      /**
36355     * @cfg {String} queryParam (optional) 
36356     * Name of the query as it will be passed on the querystring (defaults to 'node')
36357     * eg. the request will be ?node=[id]
36358     */
36359     
36360     
36361     queryParam: false,
36362     
36363     /**
36364      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36365      * This is called automatically when a node is expanded, but may be used to reload
36366      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36367      * @param {Roo.tree.TreeNode} node
36368      * @param {Function} callback
36369      */
36370     load : function(node, callback){
36371         if(this.clearOnLoad){
36372             while(node.firstChild){
36373                 node.removeChild(node.firstChild);
36374             }
36375         }
36376         if(node.attributes.children){ // preloaded json children
36377             var cs = node.attributes.children;
36378             for(var i = 0, len = cs.length; i < len; i++){
36379                 node.appendChild(this.createNode(cs[i]));
36380             }
36381             if(typeof callback == "function"){
36382                 callback();
36383             }
36384         }else if(this.dataUrl){
36385             this.requestData(node, callback);
36386         }
36387     },
36388
36389     getParams: function(node){
36390         var buf = [], bp = this.baseParams;
36391         for(var key in bp){
36392             if(typeof bp[key] != "function"){
36393                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36394             }
36395         }
36396         var n = this.queryParam === false ? 'node' : this.queryParam;
36397         buf.push(n + "=", encodeURIComponent(node.id));
36398         return buf.join("");
36399     },
36400
36401     requestData : function(node, callback){
36402         if(this.fireEvent("beforeload", this, node, callback) !== false){
36403             this.transId = Roo.Ajax.request({
36404                 method:this.requestMethod,
36405                 url: this.dataUrl||this.url,
36406                 success: this.handleResponse,
36407                 failure: this.handleFailure,
36408                 scope: this,
36409                 argument: {callback: callback, node: node},
36410                 params: this.getParams(node)
36411             });
36412         }else{
36413             // if the load is cancelled, make sure we notify
36414             // the node that we are done
36415             if(typeof callback == "function"){
36416                 callback();
36417             }
36418         }
36419     },
36420
36421     isLoading : function(){
36422         return this.transId ? true : false;
36423     },
36424
36425     abort : function(){
36426         if(this.isLoading()){
36427             Roo.Ajax.abort(this.transId);
36428         }
36429     },
36430
36431     // private
36432     createNode : function(attr)
36433     {
36434         // apply baseAttrs, nice idea Corey!
36435         if(this.baseAttrs){
36436             Roo.applyIf(attr, this.baseAttrs);
36437         }
36438         if(this.applyLoader !== false){
36439             attr.loader = this;
36440         }
36441         // uiProvider = depreciated..
36442         
36443         if(typeof(attr.uiProvider) == 'string'){
36444            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36445                 /**  eval:var:attr */ eval(attr.uiProvider);
36446         }
36447         if(typeof(this.uiProviders['default']) != 'undefined') {
36448             attr.uiProvider = this.uiProviders['default'];
36449         }
36450         
36451         this.fireEvent('create', this, attr);
36452         
36453         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36454         return(attr.leaf ?
36455                         new Roo.tree.TreeNode(attr) :
36456                         new Roo.tree.AsyncTreeNode(attr));
36457     },
36458
36459     processResponse : function(response, node, callback)
36460     {
36461         var json = response.responseText;
36462         try {
36463             
36464             var o = Roo.decode(json);
36465             
36466             if (this.root === false && typeof(o.success) != undefined) {
36467                 this.root = 'data'; // the default behaviour for list like data..
36468                 }
36469                 
36470             if (this.root !== false &&  !o.success) {
36471                 // it's a failure condition.
36472                 var a = response.argument;
36473                 this.fireEvent("loadexception", this, a.node, response);
36474                 Roo.log("Load failed - should have a handler really");
36475                 return;
36476             }
36477             
36478             
36479             
36480             if (this.root !== false) {
36481                  o = o[this.root];
36482             }
36483             
36484             for(var i = 0, len = o.length; i < len; i++){
36485                 var n = this.createNode(o[i]);
36486                 if(n){
36487                     node.appendChild(n);
36488                 }
36489             }
36490             if(typeof callback == "function"){
36491                 callback(this, node);
36492             }
36493         }catch(e){
36494             this.handleFailure(response);
36495         }
36496     },
36497
36498     handleResponse : function(response){
36499         this.transId = false;
36500         var a = response.argument;
36501         this.processResponse(response, a.node, a.callback);
36502         this.fireEvent("load", this, a.node, response);
36503     },
36504
36505     handleFailure : function(response)
36506     {
36507         // should handle failure better..
36508         this.transId = false;
36509         var a = response.argument;
36510         this.fireEvent("loadexception", this, a.node, response);
36511         if(typeof a.callback == "function"){
36512             a.callback(this, a.node);
36513         }
36514     }
36515 });/*
36516  * Based on:
36517  * Ext JS Library 1.1.1
36518  * Copyright(c) 2006-2007, Ext JS, LLC.
36519  *
36520  * Originally Released Under LGPL - original licence link has changed is not relivant.
36521  *
36522  * Fork - LGPL
36523  * <script type="text/javascript">
36524  */
36525
36526 /**
36527 * @class Roo.tree.TreeFilter
36528 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36529 * @param {TreePanel} tree
36530 * @param {Object} config (optional)
36531  */
36532 Roo.tree.TreeFilter = function(tree, config){
36533     this.tree = tree;
36534     this.filtered = {};
36535     Roo.apply(this, config);
36536 };
36537
36538 Roo.tree.TreeFilter.prototype = {
36539     clearBlank:false,
36540     reverse:false,
36541     autoClear:false,
36542     remove:false,
36543
36544      /**
36545      * Filter the data by a specific attribute.
36546      * @param {String/RegExp} value Either string that the attribute value
36547      * should start with or a RegExp to test against the attribute
36548      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36549      * @param {TreeNode} startNode (optional) The node to start the filter at.
36550      */
36551     filter : function(value, attr, startNode){
36552         attr = attr || "text";
36553         var f;
36554         if(typeof value == "string"){
36555             var vlen = value.length;
36556             // auto clear empty filter
36557             if(vlen == 0 && this.clearBlank){
36558                 this.clear();
36559                 return;
36560             }
36561             value = value.toLowerCase();
36562             f = function(n){
36563                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36564             };
36565         }else if(value.exec){ // regex?
36566             f = function(n){
36567                 return value.test(n.attributes[attr]);
36568             };
36569         }else{
36570             throw 'Illegal filter type, must be string or regex';
36571         }
36572         this.filterBy(f, null, startNode);
36573         },
36574
36575     /**
36576      * Filter by a function. The passed function will be called with each
36577      * node in the tree (or from the startNode). If the function returns true, the node is kept
36578      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36579      * @param {Function} fn The filter function
36580      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36581      */
36582     filterBy : function(fn, scope, startNode){
36583         startNode = startNode || this.tree.root;
36584         if(this.autoClear){
36585             this.clear();
36586         }
36587         var af = this.filtered, rv = this.reverse;
36588         var f = function(n){
36589             if(n == startNode){
36590                 return true;
36591             }
36592             if(af[n.id]){
36593                 return false;
36594             }
36595             var m = fn.call(scope || n, n);
36596             if(!m || rv){
36597                 af[n.id] = n;
36598                 n.ui.hide();
36599                 return false;
36600             }
36601             return true;
36602         };
36603         startNode.cascade(f);
36604         if(this.remove){
36605            for(var id in af){
36606                if(typeof id != "function"){
36607                    var n = af[id];
36608                    if(n && n.parentNode){
36609                        n.parentNode.removeChild(n);
36610                    }
36611                }
36612            }
36613         }
36614     },
36615
36616     /**
36617      * Clears the current filter. Note: with the "remove" option
36618      * set a filter cannot be cleared.
36619      */
36620     clear : function(){
36621         var t = this.tree;
36622         var af = this.filtered;
36623         for(var id in af){
36624             if(typeof id != "function"){
36625                 var n = af[id];
36626                 if(n){
36627                     n.ui.show();
36628                 }
36629             }
36630         }
36631         this.filtered = {};
36632     }
36633 };
36634 /*
36635  * Based on:
36636  * Ext JS Library 1.1.1
36637  * Copyright(c) 2006-2007, Ext JS, LLC.
36638  *
36639  * Originally Released Under LGPL - original licence link has changed is not relivant.
36640  *
36641  * Fork - LGPL
36642  * <script type="text/javascript">
36643  */
36644  
36645
36646 /**
36647  * @class Roo.tree.TreeSorter
36648  * Provides sorting of nodes in a TreePanel
36649  * 
36650  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36651  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36652  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36653  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36654  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36655  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36656  * @constructor
36657  * @param {TreePanel} tree
36658  * @param {Object} config
36659  */
36660 Roo.tree.TreeSorter = function(tree, config){
36661     Roo.apply(this, config);
36662     tree.on("beforechildrenrendered", this.doSort, this);
36663     tree.on("append", this.updateSort, this);
36664     tree.on("insert", this.updateSort, this);
36665     
36666     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36667     var p = this.property || "text";
36668     var sortType = this.sortType;
36669     var fs = this.folderSort;
36670     var cs = this.caseSensitive === true;
36671     var leafAttr = this.leafAttr || 'leaf';
36672
36673     this.sortFn = function(n1, n2){
36674         if(fs){
36675             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36676                 return 1;
36677             }
36678             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36679                 return -1;
36680             }
36681         }
36682         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36683         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36684         if(v1 < v2){
36685                         return dsc ? +1 : -1;
36686                 }else if(v1 > v2){
36687                         return dsc ? -1 : +1;
36688         }else{
36689                 return 0;
36690         }
36691     };
36692 };
36693
36694 Roo.tree.TreeSorter.prototype = {
36695     doSort : function(node){
36696         node.sort(this.sortFn);
36697     },
36698     
36699     compareNodes : function(n1, n2){
36700         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36701     },
36702     
36703     updateSort : function(tree, node){
36704         if(node.childrenRendered){
36705             this.doSort.defer(1, this, [node]);
36706         }
36707     }
36708 };/*
36709  * Based on:
36710  * Ext JS Library 1.1.1
36711  * Copyright(c) 2006-2007, Ext JS, LLC.
36712  *
36713  * Originally Released Under LGPL - original licence link has changed is not relivant.
36714  *
36715  * Fork - LGPL
36716  * <script type="text/javascript">
36717  */
36718
36719 if(Roo.dd.DropZone){
36720     
36721 Roo.tree.TreeDropZone = function(tree, config){
36722     this.allowParentInsert = false;
36723     this.allowContainerDrop = false;
36724     this.appendOnly = false;
36725     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36726     this.tree = tree;
36727     this.lastInsertClass = "x-tree-no-status";
36728     this.dragOverData = {};
36729 };
36730
36731 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36732     ddGroup : "TreeDD",
36733     scroll:  true,
36734     
36735     expandDelay : 1000,
36736     
36737     expandNode : function(node){
36738         if(node.hasChildNodes() && !node.isExpanded()){
36739             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36740         }
36741     },
36742     
36743     queueExpand : function(node){
36744         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36745     },
36746     
36747     cancelExpand : function(){
36748         if(this.expandProcId){
36749             clearTimeout(this.expandProcId);
36750             this.expandProcId = false;
36751         }
36752     },
36753     
36754     isValidDropPoint : function(n, pt, dd, e, data){
36755         if(!n || !data){ return false; }
36756         var targetNode = n.node;
36757         var dropNode = data.node;
36758         // default drop rules
36759         if(!(targetNode && targetNode.isTarget && pt)){
36760             return false;
36761         }
36762         if(pt == "append" && targetNode.allowChildren === false){
36763             return false;
36764         }
36765         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36766             return false;
36767         }
36768         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36769             return false;
36770         }
36771         // reuse the object
36772         var overEvent = this.dragOverData;
36773         overEvent.tree = this.tree;
36774         overEvent.target = targetNode;
36775         overEvent.data = data;
36776         overEvent.point = pt;
36777         overEvent.source = dd;
36778         overEvent.rawEvent = e;
36779         overEvent.dropNode = dropNode;
36780         overEvent.cancel = false;  
36781         var result = this.tree.fireEvent("nodedragover", overEvent);
36782         return overEvent.cancel === false && result !== false;
36783     },
36784     
36785     getDropPoint : function(e, n, dd)
36786     {
36787         var tn = n.node;
36788         if(tn.isRoot){
36789             return tn.allowChildren !== false ? "append" : false; // always append for root
36790         }
36791         var dragEl = n.ddel;
36792         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36793         var y = Roo.lib.Event.getPageY(e);
36794         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36795         
36796         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36797         var noAppend = tn.allowChildren === false;
36798         if(this.appendOnly || tn.parentNode.allowChildren === false){
36799             return noAppend ? false : "append";
36800         }
36801         var noBelow = false;
36802         if(!this.allowParentInsert){
36803             noBelow = tn.hasChildNodes() && tn.isExpanded();
36804         }
36805         var q = (b - t) / (noAppend ? 2 : 3);
36806         if(y >= t && y < (t + q)){
36807             return "above";
36808         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36809             return "below";
36810         }else{
36811             return "append";
36812         }
36813     },
36814     
36815     onNodeEnter : function(n, dd, e, data)
36816     {
36817         this.cancelExpand();
36818     },
36819     
36820     onNodeOver : function(n, dd, e, data)
36821     {
36822        
36823         var pt = this.getDropPoint(e, n, dd);
36824         var node = n.node;
36825         
36826         // auto node expand check
36827         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36828             this.queueExpand(node);
36829         }else if(pt != "append"){
36830             this.cancelExpand();
36831         }
36832         
36833         // set the insert point style on the target node
36834         var returnCls = this.dropNotAllowed;
36835         if(this.isValidDropPoint(n, pt, dd, e, data)){
36836            if(pt){
36837                var el = n.ddel;
36838                var cls;
36839                if(pt == "above"){
36840                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36841                    cls = "x-tree-drag-insert-above";
36842                }else if(pt == "below"){
36843                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36844                    cls = "x-tree-drag-insert-below";
36845                }else{
36846                    returnCls = "x-tree-drop-ok-append";
36847                    cls = "x-tree-drag-append";
36848                }
36849                if(this.lastInsertClass != cls){
36850                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36851                    this.lastInsertClass = cls;
36852                }
36853            }
36854        }
36855        return returnCls;
36856     },
36857     
36858     onNodeOut : function(n, dd, e, data){
36859         
36860         this.cancelExpand();
36861         this.removeDropIndicators(n);
36862     },
36863     
36864     onNodeDrop : function(n, dd, e, data){
36865         var point = this.getDropPoint(e, n, dd);
36866         var targetNode = n.node;
36867         targetNode.ui.startDrop();
36868         if(!this.isValidDropPoint(n, point, dd, e, data)){
36869             targetNode.ui.endDrop();
36870             return false;
36871         }
36872         // first try to find the drop node
36873         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36874         var dropEvent = {
36875             tree : this.tree,
36876             target: targetNode,
36877             data: data,
36878             point: point,
36879             source: dd,
36880             rawEvent: e,
36881             dropNode: dropNode,
36882             cancel: !dropNode   
36883         };
36884         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36885         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36886             targetNode.ui.endDrop();
36887             return false;
36888         }
36889         // allow target changing
36890         targetNode = dropEvent.target;
36891         if(point == "append" && !targetNode.isExpanded()){
36892             targetNode.expand(false, null, function(){
36893                 this.completeDrop(dropEvent);
36894             }.createDelegate(this));
36895         }else{
36896             this.completeDrop(dropEvent);
36897         }
36898         return true;
36899     },
36900     
36901     completeDrop : function(de){
36902         var ns = de.dropNode, p = de.point, t = de.target;
36903         if(!(ns instanceof Array)){
36904             ns = [ns];
36905         }
36906         var n;
36907         for(var i = 0, len = ns.length; i < len; i++){
36908             n = ns[i];
36909             if(p == "above"){
36910                 t.parentNode.insertBefore(n, t);
36911             }else if(p == "below"){
36912                 t.parentNode.insertBefore(n, t.nextSibling);
36913             }else{
36914                 t.appendChild(n);
36915             }
36916         }
36917         n.ui.focus();
36918         if(this.tree.hlDrop){
36919             n.ui.highlight();
36920         }
36921         t.ui.endDrop();
36922         this.tree.fireEvent("nodedrop", de);
36923     },
36924     
36925     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36926         if(this.tree.hlDrop){
36927             dropNode.ui.focus();
36928             dropNode.ui.highlight();
36929         }
36930         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36931     },
36932     
36933     getTree : function(){
36934         return this.tree;
36935     },
36936     
36937     removeDropIndicators : function(n){
36938         if(n && n.ddel){
36939             var el = n.ddel;
36940             Roo.fly(el).removeClass([
36941                     "x-tree-drag-insert-above",
36942                     "x-tree-drag-insert-below",
36943                     "x-tree-drag-append"]);
36944             this.lastInsertClass = "_noclass";
36945         }
36946     },
36947     
36948     beforeDragDrop : function(target, e, id){
36949         this.cancelExpand();
36950         return true;
36951     },
36952     
36953     afterRepair : function(data){
36954         if(data && Roo.enableFx){
36955             data.node.ui.highlight();
36956         }
36957         this.hideProxy();
36958     } 
36959     
36960 });
36961
36962 }
36963 /*
36964  * Based on:
36965  * Ext JS Library 1.1.1
36966  * Copyright(c) 2006-2007, Ext JS, LLC.
36967  *
36968  * Originally Released Under LGPL - original licence link has changed is not relivant.
36969  *
36970  * Fork - LGPL
36971  * <script type="text/javascript">
36972  */
36973  
36974
36975 if(Roo.dd.DragZone){
36976 Roo.tree.TreeDragZone = function(tree, config){
36977     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36978     this.tree = tree;
36979 };
36980
36981 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36982     ddGroup : "TreeDD",
36983    
36984     onBeforeDrag : function(data, e){
36985         var n = data.node;
36986         return n && n.draggable && !n.disabled;
36987     },
36988      
36989     
36990     onInitDrag : function(e){
36991         var data = this.dragData;
36992         this.tree.getSelectionModel().select(data.node);
36993         this.proxy.update("");
36994         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36995         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36996     },
36997     
36998     getRepairXY : function(e, data){
36999         return data.node.ui.getDDRepairXY();
37000     },
37001     
37002     onEndDrag : function(data, e){
37003         this.tree.fireEvent("enddrag", this.tree, data.node, e);
37004         
37005         
37006     },
37007     
37008     onValidDrop : function(dd, e, id){
37009         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
37010         this.hideProxy();
37011     },
37012     
37013     beforeInvalidDrop : function(e, id){
37014         // this scrolls the original position back into view
37015         var sm = this.tree.getSelectionModel();
37016         sm.clearSelections();
37017         sm.select(this.dragData.node);
37018     }
37019 });
37020 }/*
37021  * Based on:
37022  * Ext JS Library 1.1.1
37023  * Copyright(c) 2006-2007, Ext JS, LLC.
37024  *
37025  * Originally Released Under LGPL - original licence link has changed is not relivant.
37026  *
37027  * Fork - LGPL
37028  * <script type="text/javascript">
37029  */
37030 /**
37031  * @class Roo.tree.TreeEditor
37032  * @extends Roo.Editor
37033  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
37034  * as the editor field.
37035  * @constructor
37036  * @param {Object} config (used to be the tree panel.)
37037  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
37038  * 
37039  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
37040  * @cfg {Roo.form.TextField|Object} field The field configuration
37041  *
37042  * 
37043  */
37044 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
37045     var tree = config;
37046     var field;
37047     if (oldconfig) { // old style..
37048         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
37049     } else {
37050         // new style..
37051         tree = config.tree;
37052         config.field = config.field  || {};
37053         config.field.xtype = 'TextField';
37054         field = Roo.factory(config.field, Roo.form);
37055     }
37056     config = config || {};
37057     
37058     
37059     this.addEvents({
37060         /**
37061          * @event beforenodeedit
37062          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
37063          * false from the handler of this event.
37064          * @param {Editor} this
37065          * @param {Roo.tree.Node} node 
37066          */
37067         "beforenodeedit" : true
37068     });
37069     
37070     //Roo.log(config);
37071     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
37072
37073     this.tree = tree;
37074
37075     tree.on('beforeclick', this.beforeNodeClick, this);
37076     tree.getTreeEl().on('mousedown', this.hide, this);
37077     this.on('complete', this.updateNode, this);
37078     this.on('beforestartedit', this.fitToTree, this);
37079     this.on('startedit', this.bindScroll, this, {delay:10});
37080     this.on('specialkey', this.onSpecialKey, this);
37081 };
37082
37083 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37084     /**
37085      * @cfg {String} alignment
37086      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37087      */
37088     alignment: "l-l",
37089     // inherit
37090     autoSize: false,
37091     /**
37092      * @cfg {Boolean} hideEl
37093      * True to hide the bound element while the editor is displayed (defaults to false)
37094      */
37095     hideEl : false,
37096     /**
37097      * @cfg {String} cls
37098      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37099      */
37100     cls: "x-small-editor x-tree-editor",
37101     /**
37102      * @cfg {Boolean} shim
37103      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37104      */
37105     shim:false,
37106     // inherit
37107     shadow:"frame",
37108     /**
37109      * @cfg {Number} maxWidth
37110      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37111      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37112      * scroll and client offsets into account prior to each edit.
37113      */
37114     maxWidth: 250,
37115
37116     editDelay : 350,
37117
37118     // private
37119     fitToTree : function(ed, el){
37120         var td = this.tree.getTreeEl().dom, nd = el.dom;
37121         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37122             td.scrollLeft = nd.offsetLeft;
37123         }
37124         var w = Math.min(
37125                 this.maxWidth,
37126                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37127         this.setSize(w, '');
37128         
37129         return this.fireEvent('beforenodeedit', this, this.editNode);
37130         
37131     },
37132
37133     // private
37134     triggerEdit : function(node){
37135         this.completeEdit();
37136         this.editNode = node;
37137         this.startEdit(node.ui.textNode, node.text);
37138     },
37139
37140     // private
37141     bindScroll : function(){
37142         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37143     },
37144
37145     // private
37146     beforeNodeClick : function(node, e){
37147         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37148         this.lastClick = new Date();
37149         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37150             e.stopEvent();
37151             this.triggerEdit(node);
37152             return false;
37153         }
37154         return true;
37155     },
37156
37157     // private
37158     updateNode : function(ed, value){
37159         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37160         this.editNode.setText(value);
37161     },
37162
37163     // private
37164     onHide : function(){
37165         Roo.tree.TreeEditor.superclass.onHide.call(this);
37166         if(this.editNode){
37167             this.editNode.ui.focus();
37168         }
37169     },
37170
37171     // private
37172     onSpecialKey : function(field, e){
37173         var k = e.getKey();
37174         if(k == e.ESC){
37175             e.stopEvent();
37176             this.cancelEdit();
37177         }else if(k == e.ENTER && !e.hasModifier()){
37178             e.stopEvent();
37179             this.completeEdit();
37180         }
37181     }
37182 });//<Script type="text/javascript">
37183 /*
37184  * Based on:
37185  * Ext JS Library 1.1.1
37186  * Copyright(c) 2006-2007, Ext JS, LLC.
37187  *
37188  * Originally Released Under LGPL - original licence link has changed is not relivant.
37189  *
37190  * Fork - LGPL
37191  * <script type="text/javascript">
37192  */
37193  
37194 /**
37195  * Not documented??? - probably should be...
37196  */
37197
37198 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37199     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37200     
37201     renderElements : function(n, a, targetNode, bulkRender){
37202         //consel.log("renderElements?");
37203         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37204
37205         var t = n.getOwnerTree();
37206         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37207         
37208         var cols = t.columns;
37209         var bw = t.borderWidth;
37210         var c = cols[0];
37211         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37212          var cb = typeof a.checked == "boolean";
37213         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37214         var colcls = 'x-t-' + tid + '-c0';
37215         var buf = [
37216             '<li class="x-tree-node">',
37217             
37218                 
37219                 '<div class="x-tree-node-el ', a.cls,'">',
37220                     // extran...
37221                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37222                 
37223                 
37224                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37225                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37226                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37227                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37228                            (a.iconCls ? ' '+a.iconCls : ''),
37229                            '" unselectable="on" />',
37230                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37231                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37232                              
37233                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37234                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37235                             '<span unselectable="on" qtip="' + tx + '">',
37236                              tx,
37237                              '</span></a>' ,
37238                     '</div>',
37239                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37240                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37241                  ];
37242         for(var i = 1, len = cols.length; i < len; i++){
37243             c = cols[i];
37244             colcls = 'x-t-' + tid + '-c' +i;
37245             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37246             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37247                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37248                       "</div>");
37249          }
37250          
37251          buf.push(
37252             '</a>',
37253             '<div class="x-clear"></div></div>',
37254             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37255             "</li>");
37256         
37257         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37258             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37259                                 n.nextSibling.ui.getEl(), buf.join(""));
37260         }else{
37261             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37262         }
37263         var el = this.wrap.firstChild;
37264         this.elRow = el;
37265         this.elNode = el.firstChild;
37266         this.ranchor = el.childNodes[1];
37267         this.ctNode = this.wrap.childNodes[1];
37268         var cs = el.firstChild.childNodes;
37269         this.indentNode = cs[0];
37270         this.ecNode = cs[1];
37271         this.iconNode = cs[2];
37272         var index = 3;
37273         if(cb){
37274             this.checkbox = cs[3];
37275             index++;
37276         }
37277         this.anchor = cs[index];
37278         
37279         this.textNode = cs[index].firstChild;
37280         
37281         //el.on("click", this.onClick, this);
37282         //el.on("dblclick", this.onDblClick, this);
37283         
37284         
37285        // console.log(this);
37286     },
37287     initEvents : function(){
37288         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37289         
37290             
37291         var a = this.ranchor;
37292
37293         var el = Roo.get(a);
37294
37295         if(Roo.isOpera){ // opera render bug ignores the CSS
37296             el.setStyle("text-decoration", "none");
37297         }
37298
37299         el.on("click", this.onClick, this);
37300         el.on("dblclick", this.onDblClick, this);
37301         el.on("contextmenu", this.onContextMenu, this);
37302         
37303     },
37304     
37305     /*onSelectedChange : function(state){
37306         if(state){
37307             this.focus();
37308             this.addClass("x-tree-selected");
37309         }else{
37310             //this.blur();
37311             this.removeClass("x-tree-selected");
37312         }
37313     },*/
37314     addClass : function(cls){
37315         if(this.elRow){
37316             Roo.fly(this.elRow).addClass(cls);
37317         }
37318         
37319     },
37320     
37321     
37322     removeClass : function(cls){
37323         if(this.elRow){
37324             Roo.fly(this.elRow).removeClass(cls);
37325         }
37326     }
37327
37328     
37329     
37330 });//<Script type="text/javascript">
37331
37332 /*
37333  * Based on:
37334  * Ext JS Library 1.1.1
37335  * Copyright(c) 2006-2007, Ext JS, LLC.
37336  *
37337  * Originally Released Under LGPL - original licence link has changed is not relivant.
37338  *
37339  * Fork - LGPL
37340  * <script type="text/javascript">
37341  */
37342  
37343
37344 /**
37345  * @class Roo.tree.ColumnTree
37346  * @extends Roo.data.TreePanel
37347  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37348  * @cfg {int} borderWidth  compined right/left border allowance
37349  * @constructor
37350  * @param {String/HTMLElement/Element} el The container element
37351  * @param {Object} config
37352  */
37353 Roo.tree.ColumnTree =  function(el, config)
37354 {
37355    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37356    this.addEvents({
37357         /**
37358         * @event resize
37359         * Fire this event on a container when it resizes
37360         * @param {int} w Width
37361         * @param {int} h Height
37362         */
37363        "resize" : true
37364     });
37365     this.on('resize', this.onResize, this);
37366 };
37367
37368 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37369     //lines:false,
37370     
37371     
37372     borderWidth: Roo.isBorderBox ? 0 : 2, 
37373     headEls : false,
37374     
37375     render : function(){
37376         // add the header.....
37377        
37378         Roo.tree.ColumnTree.superclass.render.apply(this);
37379         
37380         this.el.addClass('x-column-tree');
37381         
37382         this.headers = this.el.createChild(
37383             {cls:'x-tree-headers'},this.innerCt.dom);
37384    
37385         var cols = this.columns, c;
37386         var totalWidth = 0;
37387         this.headEls = [];
37388         var  len = cols.length;
37389         for(var i = 0; i < len; i++){
37390              c = cols[i];
37391              totalWidth += c.width;
37392             this.headEls.push(this.headers.createChild({
37393                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37394                  cn: {
37395                      cls:'x-tree-hd-text',
37396                      html: c.header
37397                  },
37398                  style:'width:'+(c.width-this.borderWidth)+'px;'
37399              }));
37400         }
37401         this.headers.createChild({cls:'x-clear'});
37402         // prevent floats from wrapping when clipped
37403         this.headers.setWidth(totalWidth);
37404         //this.innerCt.setWidth(totalWidth);
37405         this.innerCt.setStyle({ overflow: 'auto' });
37406         this.onResize(this.width, this.height);
37407              
37408         
37409     },
37410     onResize : function(w,h)
37411     {
37412         this.height = h;
37413         this.width = w;
37414         // resize cols..
37415         this.innerCt.setWidth(this.width);
37416         this.innerCt.setHeight(this.height-20);
37417         
37418         // headers...
37419         var cols = this.columns, c;
37420         var totalWidth = 0;
37421         var expEl = false;
37422         var len = cols.length;
37423         for(var i = 0; i < len; i++){
37424             c = cols[i];
37425             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37426                 // it's the expander..
37427                 expEl  = this.headEls[i];
37428                 continue;
37429             }
37430             totalWidth += c.width;
37431             
37432         }
37433         if (expEl) {
37434             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37435         }
37436         this.headers.setWidth(w-20);
37437
37438         
37439         
37440         
37441     }
37442 });
37443 /*
37444  * Based on:
37445  * Ext JS Library 1.1.1
37446  * Copyright(c) 2006-2007, Ext JS, LLC.
37447  *
37448  * Originally Released Under LGPL - original licence link has changed is not relivant.
37449  *
37450  * Fork - LGPL
37451  * <script type="text/javascript">
37452  */
37453  
37454 /**
37455  * @class Roo.menu.Menu
37456  * @extends Roo.util.Observable
37457  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37458  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37459  * @constructor
37460  * Creates a new Menu
37461  * @param {Object} config Configuration options
37462  */
37463 Roo.menu.Menu = function(config){
37464     
37465     Roo.menu.Menu.superclass.constructor.call(this, config);
37466     
37467     this.id = this.id || Roo.id();
37468     this.addEvents({
37469         /**
37470          * @event beforeshow
37471          * Fires before this menu is displayed
37472          * @param {Roo.menu.Menu} this
37473          */
37474         beforeshow : true,
37475         /**
37476          * @event beforehide
37477          * Fires before this menu is hidden
37478          * @param {Roo.menu.Menu} this
37479          */
37480         beforehide : true,
37481         /**
37482          * @event show
37483          * Fires after this menu is displayed
37484          * @param {Roo.menu.Menu} this
37485          */
37486         show : true,
37487         /**
37488          * @event hide
37489          * Fires after this menu is hidden
37490          * @param {Roo.menu.Menu} this
37491          */
37492         hide : true,
37493         /**
37494          * @event click
37495          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37496          * @param {Roo.menu.Menu} this
37497          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37498          * @param {Roo.EventObject} e
37499          */
37500         click : true,
37501         /**
37502          * @event mouseover
37503          * Fires when the mouse is hovering over this menu
37504          * @param {Roo.menu.Menu} this
37505          * @param {Roo.EventObject} e
37506          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37507          */
37508         mouseover : true,
37509         /**
37510          * @event mouseout
37511          * Fires when the mouse exits this menu
37512          * @param {Roo.menu.Menu} this
37513          * @param {Roo.EventObject} e
37514          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37515          */
37516         mouseout : true,
37517         /**
37518          * @event itemclick
37519          * Fires when a menu item contained in this menu is clicked
37520          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37521          * @param {Roo.EventObject} e
37522          */
37523         itemclick: true
37524     });
37525     if (this.registerMenu) {
37526         Roo.menu.MenuMgr.register(this);
37527     }
37528     
37529     var mis = this.items;
37530     this.items = new Roo.util.MixedCollection();
37531     if(mis){
37532         this.add.apply(this, mis);
37533     }
37534 };
37535
37536 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37537     /**
37538      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37539      */
37540     minWidth : 120,
37541     /**
37542      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37543      * for bottom-right shadow (defaults to "sides")
37544      */
37545     shadow : "sides",
37546     /**
37547      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37548      * this menu (defaults to "tl-tr?")
37549      */
37550     subMenuAlign : "tl-tr?",
37551     /**
37552      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37553      * relative to its element of origin (defaults to "tl-bl?")
37554      */
37555     defaultAlign : "tl-bl?",
37556     /**
37557      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37558      */
37559     allowOtherMenus : false,
37560     /**
37561      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37562      */
37563     registerMenu : true,
37564
37565     hidden:true,
37566
37567     // private
37568     render : function(){
37569         if(this.el){
37570             return;
37571         }
37572         var el = this.el = new Roo.Layer({
37573             cls: "x-menu",
37574             shadow:this.shadow,
37575             constrain: false,
37576             parentEl: this.parentEl || document.body,
37577             zindex:15000
37578         });
37579
37580         this.keyNav = new Roo.menu.MenuNav(this);
37581
37582         if(this.plain){
37583             el.addClass("x-menu-plain");
37584         }
37585         if(this.cls){
37586             el.addClass(this.cls);
37587         }
37588         // generic focus element
37589         this.focusEl = el.createChild({
37590             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37591         });
37592         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37593         //disabling touch- as it's causing issues ..
37594         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37595         ul.on('click'   , this.onClick, this);
37596         
37597         
37598         ul.on("mouseover", this.onMouseOver, this);
37599         ul.on("mouseout", this.onMouseOut, this);
37600         this.items.each(function(item){
37601             if (item.hidden) {
37602                 return;
37603             }
37604             
37605             var li = document.createElement("li");
37606             li.className = "x-menu-list-item";
37607             ul.dom.appendChild(li);
37608             item.render(li, this);
37609         }, this);
37610         this.ul = ul;
37611         this.autoWidth();
37612     },
37613
37614     // private
37615     autoWidth : function(){
37616         var el = this.el, ul = this.ul;
37617         if(!el){
37618             return;
37619         }
37620         var w = this.width;
37621         if(w){
37622             el.setWidth(w);
37623         }else if(Roo.isIE){
37624             el.setWidth(this.minWidth);
37625             var t = el.dom.offsetWidth; // force recalc
37626             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37627         }
37628     },
37629
37630     // private
37631     delayAutoWidth : function(){
37632         if(this.rendered){
37633             if(!this.awTask){
37634                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37635             }
37636             this.awTask.delay(20);
37637         }
37638     },
37639
37640     // private
37641     findTargetItem : function(e){
37642         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37643         if(t && t.menuItemId){
37644             return this.items.get(t.menuItemId);
37645         }
37646     },
37647
37648     // private
37649     onClick : function(e){
37650         Roo.log("menu.onClick");
37651         var t = this.findTargetItem(e);
37652         if(!t){
37653             return;
37654         }
37655         Roo.log(e);
37656         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37657             if(t == this.activeItem && t.shouldDeactivate(e)){
37658                 this.activeItem.deactivate();
37659                 delete this.activeItem;
37660                 return;
37661             }
37662             if(t.canActivate){
37663                 this.setActiveItem(t, true);
37664             }
37665             return;
37666             
37667             
37668         }
37669         
37670         t.onClick(e);
37671         this.fireEvent("click", this, t, e);
37672     },
37673
37674     // private
37675     setActiveItem : function(item, autoExpand){
37676         if(item != this.activeItem){
37677             if(this.activeItem){
37678                 this.activeItem.deactivate();
37679             }
37680             this.activeItem = item;
37681             item.activate(autoExpand);
37682         }else if(autoExpand){
37683             item.expandMenu();
37684         }
37685     },
37686
37687     // private
37688     tryActivate : function(start, step){
37689         var items = this.items;
37690         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37691             var item = items.get(i);
37692             if(!item.disabled && item.canActivate){
37693                 this.setActiveItem(item, false);
37694                 return item;
37695             }
37696         }
37697         return false;
37698     },
37699
37700     // private
37701     onMouseOver : function(e){
37702         var t;
37703         if(t = this.findTargetItem(e)){
37704             if(t.canActivate && !t.disabled){
37705                 this.setActiveItem(t, true);
37706             }
37707         }
37708         this.fireEvent("mouseover", this, e, t);
37709     },
37710
37711     // private
37712     onMouseOut : function(e){
37713         var t;
37714         if(t = this.findTargetItem(e)){
37715             if(t == this.activeItem && t.shouldDeactivate(e)){
37716                 this.activeItem.deactivate();
37717                 delete this.activeItem;
37718             }
37719         }
37720         this.fireEvent("mouseout", this, e, t);
37721     },
37722
37723     /**
37724      * Read-only.  Returns true if the menu is currently displayed, else false.
37725      * @type Boolean
37726      */
37727     isVisible : function(){
37728         return this.el && !this.hidden;
37729     },
37730
37731     /**
37732      * Displays this menu relative to another element
37733      * @param {String/HTMLElement/Roo.Element} element The element to align to
37734      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37735      * the element (defaults to this.defaultAlign)
37736      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37737      */
37738     show : function(el, pos, parentMenu){
37739         this.parentMenu = parentMenu;
37740         if(!this.el){
37741             this.render();
37742         }
37743         this.fireEvent("beforeshow", this);
37744         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37745     },
37746
37747     /**
37748      * Displays this menu at a specific xy position
37749      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37750      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37751      */
37752     showAt : function(xy, parentMenu, /* private: */_e){
37753         this.parentMenu = parentMenu;
37754         if(!this.el){
37755             this.render();
37756         }
37757         if(_e !== false){
37758             this.fireEvent("beforeshow", this);
37759             xy = this.el.adjustForConstraints(xy);
37760         }
37761         this.el.setXY(xy);
37762         this.el.show();
37763         this.hidden = false;
37764         this.focus();
37765         this.fireEvent("show", this);
37766     },
37767
37768     focus : function(){
37769         if(!this.hidden){
37770             this.doFocus.defer(50, this);
37771         }
37772     },
37773
37774     doFocus : function(){
37775         if(!this.hidden){
37776             this.focusEl.focus();
37777         }
37778     },
37779
37780     /**
37781      * Hides this menu and optionally all parent menus
37782      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37783      */
37784     hide : function(deep){
37785         if(this.el && this.isVisible()){
37786             this.fireEvent("beforehide", this);
37787             if(this.activeItem){
37788                 this.activeItem.deactivate();
37789                 this.activeItem = null;
37790             }
37791             this.el.hide();
37792             this.hidden = true;
37793             this.fireEvent("hide", this);
37794         }
37795         if(deep === true && this.parentMenu){
37796             this.parentMenu.hide(true);
37797         }
37798     },
37799
37800     /**
37801      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37802      * Any of the following are valid:
37803      * <ul>
37804      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37805      * <li>An HTMLElement object which will be converted to a menu item</li>
37806      * <li>A menu item config object that will be created as a new menu item</li>
37807      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37808      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37809      * </ul>
37810      * Usage:
37811      * <pre><code>
37812 // Create the menu
37813 var menu = new Roo.menu.Menu();
37814
37815 // Create a menu item to add by reference
37816 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37817
37818 // Add a bunch of items at once using different methods.
37819 // Only the last item added will be returned.
37820 var item = menu.add(
37821     menuItem,                // add existing item by ref
37822     'Dynamic Item',          // new TextItem
37823     '-',                     // new separator
37824     { text: 'Config Item' }  // new item by config
37825 );
37826 </code></pre>
37827      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37828      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37829      */
37830     add : function(){
37831         var a = arguments, l = a.length, item;
37832         for(var i = 0; i < l; i++){
37833             var el = a[i];
37834             if ((typeof(el) == "object") && el.xtype && el.xns) {
37835                 el = Roo.factory(el, Roo.menu);
37836             }
37837             
37838             if(el.render){ // some kind of Item
37839                 item = this.addItem(el);
37840             }else if(typeof el == "string"){ // string
37841                 if(el == "separator" || el == "-"){
37842                     item = this.addSeparator();
37843                 }else{
37844                     item = this.addText(el);
37845                 }
37846             }else if(el.tagName || el.el){ // element
37847                 item = this.addElement(el);
37848             }else if(typeof el == "object"){ // must be menu item config?
37849                 item = this.addMenuItem(el);
37850             }
37851         }
37852         return item;
37853     },
37854
37855     /**
37856      * Returns this menu's underlying {@link Roo.Element} object
37857      * @return {Roo.Element} The element
37858      */
37859     getEl : function(){
37860         if(!this.el){
37861             this.render();
37862         }
37863         return this.el;
37864     },
37865
37866     /**
37867      * Adds a separator bar to the menu
37868      * @return {Roo.menu.Item} The menu item that was added
37869      */
37870     addSeparator : function(){
37871         return this.addItem(new Roo.menu.Separator());
37872     },
37873
37874     /**
37875      * Adds an {@link Roo.Element} object to the menu
37876      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37877      * @return {Roo.menu.Item} The menu item that was added
37878      */
37879     addElement : function(el){
37880         return this.addItem(new Roo.menu.BaseItem(el));
37881     },
37882
37883     /**
37884      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37885      * @param {Roo.menu.Item} item The menu item to add
37886      * @return {Roo.menu.Item} The menu item that was added
37887      */
37888     addItem : function(item){
37889         this.items.add(item);
37890         if(this.ul){
37891             var li = document.createElement("li");
37892             li.className = "x-menu-list-item";
37893             this.ul.dom.appendChild(li);
37894             item.render(li, this);
37895             this.delayAutoWidth();
37896         }
37897         return item;
37898     },
37899
37900     /**
37901      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37902      * @param {Object} config A MenuItem config object
37903      * @return {Roo.menu.Item} The menu item that was added
37904      */
37905     addMenuItem : function(config){
37906         if(!(config instanceof Roo.menu.Item)){
37907             if(typeof config.checked == "boolean"){ // must be check menu item config?
37908                 config = new Roo.menu.CheckItem(config);
37909             }else{
37910                 config = new Roo.menu.Item(config);
37911             }
37912         }
37913         return this.addItem(config);
37914     },
37915
37916     /**
37917      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37918      * @param {String} text The text to display in the menu item
37919      * @return {Roo.menu.Item} The menu item that was added
37920      */
37921     addText : function(text){
37922         return this.addItem(new Roo.menu.TextItem({ text : text }));
37923     },
37924
37925     /**
37926      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37927      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37928      * @param {Roo.menu.Item} item The menu item to add
37929      * @return {Roo.menu.Item} The menu item that was added
37930      */
37931     insert : function(index, item){
37932         this.items.insert(index, item);
37933         if(this.ul){
37934             var li = document.createElement("li");
37935             li.className = "x-menu-list-item";
37936             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37937             item.render(li, this);
37938             this.delayAutoWidth();
37939         }
37940         return item;
37941     },
37942
37943     /**
37944      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37945      * @param {Roo.menu.Item} item The menu item to remove
37946      */
37947     remove : function(item){
37948         this.items.removeKey(item.id);
37949         item.destroy();
37950     },
37951
37952     /**
37953      * Removes and destroys all items in the menu
37954      */
37955     removeAll : function(){
37956         var f;
37957         while(f = this.items.first()){
37958             this.remove(f);
37959         }
37960     }
37961 });
37962
37963 // MenuNav is a private utility class used internally by the Menu
37964 Roo.menu.MenuNav = function(menu){
37965     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37966     this.scope = this.menu = menu;
37967 };
37968
37969 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37970     doRelay : function(e, h){
37971         var k = e.getKey();
37972         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37973             this.menu.tryActivate(0, 1);
37974             return false;
37975         }
37976         return h.call(this.scope || this, e, this.menu);
37977     },
37978
37979     up : function(e, m){
37980         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37981             m.tryActivate(m.items.length-1, -1);
37982         }
37983     },
37984
37985     down : function(e, m){
37986         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37987             m.tryActivate(0, 1);
37988         }
37989     },
37990
37991     right : function(e, m){
37992         if(m.activeItem){
37993             m.activeItem.expandMenu(true);
37994         }
37995     },
37996
37997     left : function(e, m){
37998         m.hide();
37999         if(m.parentMenu && m.parentMenu.activeItem){
38000             m.parentMenu.activeItem.activate();
38001         }
38002     },
38003
38004     enter : function(e, m){
38005         if(m.activeItem){
38006             e.stopPropagation();
38007             m.activeItem.onClick(e);
38008             m.fireEvent("click", this, m.activeItem);
38009             return true;
38010         }
38011     }
38012 });/*
38013  * Based on:
38014  * Ext JS Library 1.1.1
38015  * Copyright(c) 2006-2007, Ext JS, LLC.
38016  *
38017  * Originally Released Under LGPL - original licence link has changed is not relivant.
38018  *
38019  * Fork - LGPL
38020  * <script type="text/javascript">
38021  */
38022  
38023 /**
38024  * @class Roo.menu.MenuMgr
38025  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
38026  * @singleton
38027  */
38028 Roo.menu.MenuMgr = function(){
38029    var menus, active, groups = {}, attached = false, lastShow = new Date();
38030
38031    // private - called when first menu is created
38032    function init(){
38033        menus = {};
38034        active = new Roo.util.MixedCollection();
38035        Roo.get(document).addKeyListener(27, function(){
38036            if(active.length > 0){
38037                hideAll();
38038            }
38039        });
38040    }
38041
38042    // private
38043    function hideAll(){
38044        if(active && active.length > 0){
38045            var c = active.clone();
38046            c.each(function(m){
38047                m.hide();
38048            });
38049        }
38050    }
38051
38052    // private
38053    function onHide(m){
38054        active.remove(m);
38055        if(active.length < 1){
38056            Roo.get(document).un("mousedown", onMouseDown);
38057            attached = false;
38058        }
38059    }
38060
38061    // private
38062    function onShow(m){
38063        var last = active.last();
38064        lastShow = new Date();
38065        active.add(m);
38066        if(!attached){
38067            Roo.get(document).on("mousedown", onMouseDown);
38068            attached = true;
38069        }
38070        if(m.parentMenu){
38071           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
38072           m.parentMenu.activeChild = m;
38073        }else if(last && last.isVisible()){
38074           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
38075        }
38076    }
38077
38078    // private
38079    function onBeforeHide(m){
38080        if(m.activeChild){
38081            m.activeChild.hide();
38082        }
38083        if(m.autoHideTimer){
38084            clearTimeout(m.autoHideTimer);
38085            delete m.autoHideTimer;
38086        }
38087    }
38088
38089    // private
38090    function onBeforeShow(m){
38091        var pm = m.parentMenu;
38092        if(!pm && !m.allowOtherMenus){
38093            hideAll();
38094        }else if(pm && pm.activeChild && active != m){
38095            pm.activeChild.hide();
38096        }
38097    }
38098
38099    // private
38100    function onMouseDown(e){
38101        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38102            hideAll();
38103        }
38104    }
38105
38106    // private
38107    function onBeforeCheck(mi, state){
38108        if(state){
38109            var g = groups[mi.group];
38110            for(var i = 0, l = g.length; i < l; i++){
38111                if(g[i] != mi){
38112                    g[i].setChecked(false);
38113                }
38114            }
38115        }
38116    }
38117
38118    return {
38119
38120        /**
38121         * Hides all menus that are currently visible
38122         */
38123        hideAll : function(){
38124             hideAll();  
38125        },
38126
38127        // private
38128        register : function(menu){
38129            if(!menus){
38130                init();
38131            }
38132            menus[menu.id] = menu;
38133            menu.on("beforehide", onBeforeHide);
38134            menu.on("hide", onHide);
38135            menu.on("beforeshow", onBeforeShow);
38136            menu.on("show", onShow);
38137            var g = menu.group;
38138            if(g && menu.events["checkchange"]){
38139                if(!groups[g]){
38140                    groups[g] = [];
38141                }
38142                groups[g].push(menu);
38143                menu.on("checkchange", onCheck);
38144            }
38145        },
38146
38147         /**
38148          * Returns a {@link Roo.menu.Menu} object
38149          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38150          * be used to generate and return a new Menu instance.
38151          */
38152        get : function(menu){
38153            if(typeof menu == "string"){ // menu id
38154                return menus[menu];
38155            }else if(menu.events){  // menu instance
38156                return menu;
38157            }else if(typeof menu.length == 'number'){ // array of menu items?
38158                return new Roo.menu.Menu({items:menu});
38159            }else{ // otherwise, must be a config
38160                return new Roo.menu.Menu(menu);
38161            }
38162        },
38163
38164        // private
38165        unregister : function(menu){
38166            delete menus[menu.id];
38167            menu.un("beforehide", onBeforeHide);
38168            menu.un("hide", onHide);
38169            menu.un("beforeshow", onBeforeShow);
38170            menu.un("show", onShow);
38171            var g = menu.group;
38172            if(g && menu.events["checkchange"]){
38173                groups[g].remove(menu);
38174                menu.un("checkchange", onCheck);
38175            }
38176        },
38177
38178        // private
38179        registerCheckable : function(menuItem){
38180            var g = menuItem.group;
38181            if(g){
38182                if(!groups[g]){
38183                    groups[g] = [];
38184                }
38185                groups[g].push(menuItem);
38186                menuItem.on("beforecheckchange", onBeforeCheck);
38187            }
38188        },
38189
38190        // private
38191        unregisterCheckable : function(menuItem){
38192            var g = menuItem.group;
38193            if(g){
38194                groups[g].remove(menuItem);
38195                menuItem.un("beforecheckchange", onBeforeCheck);
38196            }
38197        }
38198    };
38199 }();/*
38200  * Based on:
38201  * Ext JS Library 1.1.1
38202  * Copyright(c) 2006-2007, Ext JS, LLC.
38203  *
38204  * Originally Released Under LGPL - original licence link has changed is not relivant.
38205  *
38206  * Fork - LGPL
38207  * <script type="text/javascript">
38208  */
38209  
38210
38211 /**
38212  * @class Roo.menu.BaseItem
38213  * @extends Roo.Component
38214  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38215  * management and base configuration options shared by all menu components.
38216  * @constructor
38217  * Creates a new BaseItem
38218  * @param {Object} config Configuration options
38219  */
38220 Roo.menu.BaseItem = function(config){
38221     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38222
38223     this.addEvents({
38224         /**
38225          * @event click
38226          * Fires when this item is clicked
38227          * @param {Roo.menu.BaseItem} this
38228          * @param {Roo.EventObject} e
38229          */
38230         click: true,
38231         /**
38232          * @event activate
38233          * Fires when this item is activated
38234          * @param {Roo.menu.BaseItem} this
38235          */
38236         activate : true,
38237         /**
38238          * @event deactivate
38239          * Fires when this item is deactivated
38240          * @param {Roo.menu.BaseItem} this
38241          */
38242         deactivate : true
38243     });
38244
38245     if(this.handler){
38246         this.on("click", this.handler, this.scope, true);
38247     }
38248 };
38249
38250 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38251     /**
38252      * @cfg {Function} handler
38253      * A function that will handle the click event of this menu item (defaults to undefined)
38254      */
38255     /**
38256      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38257      */
38258     canActivate : false,
38259     
38260      /**
38261      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38262      */
38263     hidden: false,
38264     
38265     /**
38266      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38267      */
38268     activeClass : "x-menu-item-active",
38269     /**
38270      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38271      */
38272     hideOnClick : true,
38273     /**
38274      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38275      */
38276     hideDelay : 100,
38277
38278     // private
38279     ctype: "Roo.menu.BaseItem",
38280
38281     // private
38282     actionMode : "container",
38283
38284     // private
38285     render : function(container, parentMenu){
38286         this.parentMenu = parentMenu;
38287         Roo.menu.BaseItem.superclass.render.call(this, container);
38288         this.container.menuItemId = this.id;
38289     },
38290
38291     // private
38292     onRender : function(container, position){
38293         this.el = Roo.get(this.el);
38294         container.dom.appendChild(this.el.dom);
38295     },
38296
38297     // private
38298     onClick : function(e){
38299         if(!this.disabled && this.fireEvent("click", this, e) !== false
38300                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38301             this.handleClick(e);
38302         }else{
38303             e.stopEvent();
38304         }
38305     },
38306
38307     // private
38308     activate : function(){
38309         if(this.disabled){
38310             return false;
38311         }
38312         var li = this.container;
38313         li.addClass(this.activeClass);
38314         this.region = li.getRegion().adjust(2, 2, -2, -2);
38315         this.fireEvent("activate", this);
38316         return true;
38317     },
38318
38319     // private
38320     deactivate : function(){
38321         this.container.removeClass(this.activeClass);
38322         this.fireEvent("deactivate", this);
38323     },
38324
38325     // private
38326     shouldDeactivate : function(e){
38327         return !this.region || !this.region.contains(e.getPoint());
38328     },
38329
38330     // private
38331     handleClick : function(e){
38332         if(this.hideOnClick){
38333             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38334         }
38335     },
38336
38337     // private
38338     expandMenu : function(autoActivate){
38339         // do nothing
38340     },
38341
38342     // private
38343     hideMenu : function(){
38344         // do nothing
38345     }
38346 });/*
38347  * Based on:
38348  * Ext JS Library 1.1.1
38349  * Copyright(c) 2006-2007, Ext JS, LLC.
38350  *
38351  * Originally Released Under LGPL - original licence link has changed is not relivant.
38352  *
38353  * Fork - LGPL
38354  * <script type="text/javascript">
38355  */
38356  
38357 /**
38358  * @class Roo.menu.Adapter
38359  * @extends Roo.menu.BaseItem
38360  * 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.
38361  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38362  * @constructor
38363  * Creates a new Adapter
38364  * @param {Object} config Configuration options
38365  */
38366 Roo.menu.Adapter = function(component, config){
38367     Roo.menu.Adapter.superclass.constructor.call(this, config);
38368     this.component = component;
38369 };
38370 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38371     // private
38372     canActivate : true,
38373
38374     // private
38375     onRender : function(container, position){
38376         this.component.render(container);
38377         this.el = this.component.getEl();
38378     },
38379
38380     // private
38381     activate : function(){
38382         if(this.disabled){
38383             return false;
38384         }
38385         this.component.focus();
38386         this.fireEvent("activate", this);
38387         return true;
38388     },
38389
38390     // private
38391     deactivate : function(){
38392         this.fireEvent("deactivate", this);
38393     },
38394
38395     // private
38396     disable : function(){
38397         this.component.disable();
38398         Roo.menu.Adapter.superclass.disable.call(this);
38399     },
38400
38401     // private
38402     enable : function(){
38403         this.component.enable();
38404         Roo.menu.Adapter.superclass.enable.call(this);
38405     }
38406 });/*
38407  * Based on:
38408  * Ext JS Library 1.1.1
38409  * Copyright(c) 2006-2007, Ext JS, LLC.
38410  *
38411  * Originally Released Under LGPL - original licence link has changed is not relivant.
38412  *
38413  * Fork - LGPL
38414  * <script type="text/javascript">
38415  */
38416
38417 /**
38418  * @class Roo.menu.TextItem
38419  * @extends Roo.menu.BaseItem
38420  * Adds a static text string to a menu, usually used as either a heading or group separator.
38421  * Note: old style constructor with text is still supported.
38422  * 
38423  * @constructor
38424  * Creates a new TextItem
38425  * @param {Object} cfg Configuration
38426  */
38427 Roo.menu.TextItem = function(cfg){
38428     if (typeof(cfg) == 'string') {
38429         this.text = cfg;
38430     } else {
38431         Roo.apply(this,cfg);
38432     }
38433     
38434     Roo.menu.TextItem.superclass.constructor.call(this);
38435 };
38436
38437 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38438     /**
38439      * @cfg {String} text Text to show on item.
38440      */
38441     text : '',
38442     
38443     /**
38444      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38445      */
38446     hideOnClick : false,
38447     /**
38448      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38449      */
38450     itemCls : "x-menu-text",
38451
38452     // private
38453     onRender : function(){
38454         var s = document.createElement("span");
38455         s.className = this.itemCls;
38456         s.innerHTML = this.text;
38457         this.el = s;
38458         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38459     }
38460 });/*
38461  * Based on:
38462  * Ext JS Library 1.1.1
38463  * Copyright(c) 2006-2007, Ext JS, LLC.
38464  *
38465  * Originally Released Under LGPL - original licence link has changed is not relivant.
38466  *
38467  * Fork - LGPL
38468  * <script type="text/javascript">
38469  */
38470
38471 /**
38472  * @class Roo.menu.Separator
38473  * @extends Roo.menu.BaseItem
38474  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38475  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38476  * @constructor
38477  * @param {Object} config Configuration options
38478  */
38479 Roo.menu.Separator = function(config){
38480     Roo.menu.Separator.superclass.constructor.call(this, config);
38481 };
38482
38483 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38484     /**
38485      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38486      */
38487     itemCls : "x-menu-sep",
38488     /**
38489      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38490      */
38491     hideOnClick : false,
38492
38493     // private
38494     onRender : function(li){
38495         var s = document.createElement("span");
38496         s.className = this.itemCls;
38497         s.innerHTML = "&#160;";
38498         this.el = s;
38499         li.addClass("x-menu-sep-li");
38500         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38501     }
38502 });/*
38503  * Based on:
38504  * Ext JS Library 1.1.1
38505  * Copyright(c) 2006-2007, Ext JS, LLC.
38506  *
38507  * Originally Released Under LGPL - original licence link has changed is not relivant.
38508  *
38509  * Fork - LGPL
38510  * <script type="text/javascript">
38511  */
38512 /**
38513  * @class Roo.menu.Item
38514  * @extends Roo.menu.BaseItem
38515  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38516  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38517  * activation and click handling.
38518  * @constructor
38519  * Creates a new Item
38520  * @param {Object} config Configuration options
38521  */
38522 Roo.menu.Item = function(config){
38523     Roo.menu.Item.superclass.constructor.call(this, config);
38524     if(this.menu){
38525         this.menu = Roo.menu.MenuMgr.get(this.menu);
38526     }
38527 };
38528 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38529     
38530     /**
38531      * @cfg {String} text
38532      * The text to show on the menu item.
38533      */
38534     text: '',
38535      /**
38536      * @cfg {String} HTML to render in menu
38537      * The text to show on the menu item (HTML version).
38538      */
38539     html: '',
38540     /**
38541      * @cfg {String} icon
38542      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38543      */
38544     icon: undefined,
38545     /**
38546      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38547      */
38548     itemCls : "x-menu-item",
38549     /**
38550      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38551      */
38552     canActivate : true,
38553     /**
38554      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38555      */
38556     showDelay: 200,
38557     // doc'd in BaseItem
38558     hideDelay: 200,
38559
38560     // private
38561     ctype: "Roo.menu.Item",
38562     
38563     // private
38564     onRender : function(container, position){
38565         var el = document.createElement("a");
38566         el.hideFocus = true;
38567         el.unselectable = "on";
38568         el.href = this.href || "#";
38569         if(this.hrefTarget){
38570             el.target = this.hrefTarget;
38571         }
38572         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38573         
38574         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38575         
38576         el.innerHTML = String.format(
38577                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38578                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38579         this.el = el;
38580         Roo.menu.Item.superclass.onRender.call(this, container, position);
38581     },
38582
38583     /**
38584      * Sets the text to display in this menu item
38585      * @param {String} text The text to display
38586      * @param {Boolean} isHTML true to indicate text is pure html.
38587      */
38588     setText : function(text, isHTML){
38589         if (isHTML) {
38590             this.html = text;
38591         } else {
38592             this.text = text;
38593             this.html = '';
38594         }
38595         if(this.rendered){
38596             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38597      
38598             this.el.update(String.format(
38599                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38600                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38601             this.parentMenu.autoWidth();
38602         }
38603     },
38604
38605     // private
38606     handleClick : function(e){
38607         if(!this.href){ // if no link defined, stop the event automatically
38608             e.stopEvent();
38609         }
38610         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38611     },
38612
38613     // private
38614     activate : function(autoExpand){
38615         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38616             this.focus();
38617             if(autoExpand){
38618                 this.expandMenu();
38619             }
38620         }
38621         return true;
38622     },
38623
38624     // private
38625     shouldDeactivate : function(e){
38626         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38627             if(this.menu && this.menu.isVisible()){
38628                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38629             }
38630             return true;
38631         }
38632         return false;
38633     },
38634
38635     // private
38636     deactivate : function(){
38637         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38638         this.hideMenu();
38639     },
38640
38641     // private
38642     expandMenu : function(autoActivate){
38643         if(!this.disabled && this.menu){
38644             clearTimeout(this.hideTimer);
38645             delete this.hideTimer;
38646             if(!this.menu.isVisible() && !this.showTimer){
38647                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38648             }else if (this.menu.isVisible() && autoActivate){
38649                 this.menu.tryActivate(0, 1);
38650             }
38651         }
38652     },
38653
38654     // private
38655     deferExpand : function(autoActivate){
38656         delete this.showTimer;
38657         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38658         if(autoActivate){
38659             this.menu.tryActivate(0, 1);
38660         }
38661     },
38662
38663     // private
38664     hideMenu : function(){
38665         clearTimeout(this.showTimer);
38666         delete this.showTimer;
38667         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38668             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38669         }
38670     },
38671
38672     // private
38673     deferHide : function(){
38674         delete this.hideTimer;
38675         this.menu.hide();
38676     }
38677 });/*
38678  * Based on:
38679  * Ext JS Library 1.1.1
38680  * Copyright(c) 2006-2007, Ext JS, LLC.
38681  *
38682  * Originally Released Under LGPL - original licence link has changed is not relivant.
38683  *
38684  * Fork - LGPL
38685  * <script type="text/javascript">
38686  */
38687  
38688 /**
38689  * @class Roo.menu.CheckItem
38690  * @extends Roo.menu.Item
38691  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38692  * @constructor
38693  * Creates a new CheckItem
38694  * @param {Object} config Configuration options
38695  */
38696 Roo.menu.CheckItem = function(config){
38697     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38698     this.addEvents({
38699         /**
38700          * @event beforecheckchange
38701          * Fires before the checked value is set, providing an opportunity to cancel if needed
38702          * @param {Roo.menu.CheckItem} this
38703          * @param {Boolean} checked The new checked value that will be set
38704          */
38705         "beforecheckchange" : true,
38706         /**
38707          * @event checkchange
38708          * Fires after the checked value has been set
38709          * @param {Roo.menu.CheckItem} this
38710          * @param {Boolean} checked The checked value that was set
38711          */
38712         "checkchange" : true
38713     });
38714     if(this.checkHandler){
38715         this.on('checkchange', this.checkHandler, this.scope);
38716     }
38717 };
38718 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38719     /**
38720      * @cfg {String} group
38721      * All check items with the same group name will automatically be grouped into a single-select
38722      * radio button group (defaults to '')
38723      */
38724     /**
38725      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38726      */
38727     itemCls : "x-menu-item x-menu-check-item",
38728     /**
38729      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38730      */
38731     groupClass : "x-menu-group-item",
38732
38733     /**
38734      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38735      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38736      * initialized with checked = true will be rendered as checked.
38737      */
38738     checked: false,
38739
38740     // private
38741     ctype: "Roo.menu.CheckItem",
38742
38743     // private
38744     onRender : function(c){
38745         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38746         if(this.group){
38747             this.el.addClass(this.groupClass);
38748         }
38749         Roo.menu.MenuMgr.registerCheckable(this);
38750         if(this.checked){
38751             this.checked = false;
38752             this.setChecked(true, true);
38753         }
38754     },
38755
38756     // private
38757     destroy : function(){
38758         if(this.rendered){
38759             Roo.menu.MenuMgr.unregisterCheckable(this);
38760         }
38761         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38762     },
38763
38764     /**
38765      * Set the checked state of this item
38766      * @param {Boolean} checked The new checked value
38767      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38768      */
38769     setChecked : function(state, suppressEvent){
38770         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38771             if(this.container){
38772                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38773             }
38774             this.checked = state;
38775             if(suppressEvent !== true){
38776                 this.fireEvent("checkchange", this, state);
38777             }
38778         }
38779     },
38780
38781     // private
38782     handleClick : function(e){
38783        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38784            this.setChecked(!this.checked);
38785        }
38786        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38787     }
38788 });/*
38789  * Based on:
38790  * Ext JS Library 1.1.1
38791  * Copyright(c) 2006-2007, Ext JS, LLC.
38792  *
38793  * Originally Released Under LGPL - original licence link has changed is not relivant.
38794  *
38795  * Fork - LGPL
38796  * <script type="text/javascript">
38797  */
38798  
38799 /**
38800  * @class Roo.menu.DateItem
38801  * @extends Roo.menu.Adapter
38802  * A menu item that wraps the {@link Roo.DatPicker} component.
38803  * @constructor
38804  * Creates a new DateItem
38805  * @param {Object} config Configuration options
38806  */
38807 Roo.menu.DateItem = function(config){
38808     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38809     /** The Roo.DatePicker object @type Roo.DatePicker */
38810     this.picker = this.component;
38811     this.addEvents({select: true});
38812     
38813     this.picker.on("render", function(picker){
38814         picker.getEl().swallowEvent("click");
38815         picker.container.addClass("x-menu-date-item");
38816     });
38817
38818     this.picker.on("select", this.onSelect, this);
38819 };
38820
38821 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38822     // private
38823     onSelect : function(picker, date){
38824         this.fireEvent("select", this, date, picker);
38825         Roo.menu.DateItem.superclass.handleClick.call(this);
38826     }
38827 });/*
38828  * Based on:
38829  * Ext JS Library 1.1.1
38830  * Copyright(c) 2006-2007, Ext JS, LLC.
38831  *
38832  * Originally Released Under LGPL - original licence link has changed is not relivant.
38833  *
38834  * Fork - LGPL
38835  * <script type="text/javascript">
38836  */
38837  
38838 /**
38839  * @class Roo.menu.ColorItem
38840  * @extends Roo.menu.Adapter
38841  * A menu item that wraps the {@link Roo.ColorPalette} component.
38842  * @constructor
38843  * Creates a new ColorItem
38844  * @param {Object} config Configuration options
38845  */
38846 Roo.menu.ColorItem = function(config){
38847     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38848     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38849     this.palette = this.component;
38850     this.relayEvents(this.palette, ["select"]);
38851     if(this.selectHandler){
38852         this.on('select', this.selectHandler, this.scope);
38853     }
38854 };
38855 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38856  * Based on:
38857  * Ext JS Library 1.1.1
38858  * Copyright(c) 2006-2007, Ext JS, LLC.
38859  *
38860  * Originally Released Under LGPL - original licence link has changed is not relivant.
38861  *
38862  * Fork - LGPL
38863  * <script type="text/javascript">
38864  */
38865  
38866
38867 /**
38868  * @class Roo.menu.DateMenu
38869  * @extends Roo.menu.Menu
38870  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38871  * @constructor
38872  * Creates a new DateMenu
38873  * @param {Object} config Configuration options
38874  */
38875 Roo.menu.DateMenu = function(config){
38876     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38877     this.plain = true;
38878     var di = new Roo.menu.DateItem(config);
38879     this.add(di);
38880     /**
38881      * The {@link Roo.DatePicker} instance for this DateMenu
38882      * @type DatePicker
38883      */
38884     this.picker = di.picker;
38885     /**
38886      * @event select
38887      * @param {DatePicker} picker
38888      * @param {Date} date
38889      */
38890     this.relayEvents(di, ["select"]);
38891     this.on('beforeshow', function(){
38892         if(this.picker){
38893             this.picker.hideMonthPicker(false);
38894         }
38895     }, this);
38896 };
38897 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38898     cls:'x-date-menu'
38899 });/*
38900  * Based on:
38901  * Ext JS Library 1.1.1
38902  * Copyright(c) 2006-2007, Ext JS, LLC.
38903  *
38904  * Originally Released Under LGPL - original licence link has changed is not relivant.
38905  *
38906  * Fork - LGPL
38907  * <script type="text/javascript">
38908  */
38909  
38910
38911 /**
38912  * @class Roo.menu.ColorMenu
38913  * @extends Roo.menu.Menu
38914  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38915  * @constructor
38916  * Creates a new ColorMenu
38917  * @param {Object} config Configuration options
38918  */
38919 Roo.menu.ColorMenu = function(config){
38920     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38921     this.plain = true;
38922     var ci = new Roo.menu.ColorItem(config);
38923     this.add(ci);
38924     /**
38925      * The {@link Roo.ColorPalette} instance for this ColorMenu
38926      * @type ColorPalette
38927      */
38928     this.palette = ci.palette;
38929     /**
38930      * @event select
38931      * @param {ColorPalette} palette
38932      * @param {String} color
38933      */
38934     this.relayEvents(ci, ["select"]);
38935 };
38936 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38937  * Based on:
38938  * Ext JS Library 1.1.1
38939  * Copyright(c) 2006-2007, Ext JS, LLC.
38940  *
38941  * Originally Released Under LGPL - original licence link has changed is not relivant.
38942  *
38943  * Fork - LGPL
38944  * <script type="text/javascript">
38945  */
38946  
38947 /**
38948  * @class Roo.form.TextItem
38949  * @extends Roo.BoxComponent
38950  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38951  * @constructor
38952  * Creates a new TextItem
38953  * @param {Object} config Configuration options
38954  */
38955 Roo.form.TextItem = function(config){
38956     Roo.form.TextItem.superclass.constructor.call(this, config);
38957 };
38958
38959 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38960     
38961     /**
38962      * @cfg {String} tag the tag for this item (default div)
38963      */
38964     tag : 'div',
38965     /**
38966      * @cfg {String} html the content for this item
38967      */
38968     html : '',
38969     
38970     getAutoCreate : function()
38971     {
38972         var cfg = {
38973             id: this.id,
38974             tag: this.tag,
38975             html: this.html,
38976             cls: 'x-form-item'
38977         };
38978         
38979         return cfg;
38980         
38981     },
38982     
38983     onRender : function(ct, position)
38984     {
38985         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
38986         
38987         if(!this.el){
38988             var cfg = this.getAutoCreate();
38989             if(!cfg.name){
38990                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38991             }
38992             if (!cfg.name.length) {
38993                 delete cfg.name;
38994             }
38995             this.el = ct.createChild(cfg, position);
38996         }
38997     },
38998     /*
38999      * setHTML
39000      * @param {String} html update the Contents of the element.
39001      */
39002     setHTML : function(html)
39003     {
39004         this.fieldEl.dom.innerHTML = html;
39005     }
39006     
39007 });/*
39008  * Based on:
39009  * Ext JS Library 1.1.1
39010  * Copyright(c) 2006-2007, Ext JS, LLC.
39011  *
39012  * Originally Released Under LGPL - original licence link has changed is not relivant.
39013  *
39014  * Fork - LGPL
39015  * <script type="text/javascript">
39016  */
39017  
39018 /**
39019  * @class Roo.form.Field
39020  * @extends Roo.BoxComponent
39021  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39022  * @constructor
39023  * Creates a new Field
39024  * @param {Object} config Configuration options
39025  */
39026 Roo.form.Field = function(config){
39027     Roo.form.Field.superclass.constructor.call(this, config);
39028 };
39029
39030 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
39031     /**
39032      * @cfg {String} fieldLabel Label to use when rendering a form.
39033      */
39034        /**
39035      * @cfg {String} qtip Mouse over tip
39036      */
39037      
39038     /**
39039      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
39040      */
39041     invalidClass : "x-form-invalid",
39042     /**
39043      * @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")
39044      */
39045     invalidText : "The value in this field is invalid",
39046     /**
39047      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
39048      */
39049     focusClass : "x-form-focus",
39050     /**
39051      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
39052       automatic validation (defaults to "keyup").
39053      */
39054     validationEvent : "keyup",
39055     /**
39056      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
39057      */
39058     validateOnBlur : true,
39059     /**
39060      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
39061      */
39062     validationDelay : 250,
39063     /**
39064      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39065      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
39066      */
39067     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
39068     /**
39069      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
39070      */
39071     fieldClass : "x-form-field",
39072     /**
39073      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
39074      *<pre>
39075 Value         Description
39076 -----------   ----------------------------------------------------------------------
39077 qtip          Display a quick tip when the user hovers over the field
39078 title         Display a default browser title attribute popup
39079 under         Add a block div beneath the field containing the error text
39080 side          Add an error icon to the right of the field with a popup on hover
39081 [element id]  Add the error text directly to the innerHTML of the specified element
39082 </pre>
39083      */
39084     msgTarget : 'qtip',
39085     /**
39086      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39087      */
39088     msgFx : 'normal',
39089
39090     /**
39091      * @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.
39092      */
39093     readOnly : false,
39094
39095     /**
39096      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39097      */
39098     disabled : false,
39099
39100     /**
39101      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39102      */
39103     inputType : undefined,
39104     
39105     /**
39106      * @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).
39107          */
39108         tabIndex : undefined,
39109         
39110     // private
39111     isFormField : true,
39112
39113     // private
39114     hasFocus : false,
39115     /**
39116      * @property {Roo.Element} fieldEl
39117      * Element Containing the rendered Field (with label etc.)
39118      */
39119     /**
39120      * @cfg {Mixed} value A value to initialize this field with.
39121      */
39122     value : undefined,
39123
39124     /**
39125      * @cfg {String} name The field's HTML name attribute.
39126      */
39127     /**
39128      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39129      */
39130     // private
39131     loadedValue : false,
39132      
39133      
39134         // private ??
39135         initComponent : function(){
39136         Roo.form.Field.superclass.initComponent.call(this);
39137         this.addEvents({
39138             /**
39139              * @event focus
39140              * Fires when this field receives input focus.
39141              * @param {Roo.form.Field} this
39142              */
39143             focus : true,
39144             /**
39145              * @event blur
39146              * Fires when this field loses input focus.
39147              * @param {Roo.form.Field} this
39148              */
39149             blur : true,
39150             /**
39151              * @event specialkey
39152              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39153              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39154              * @param {Roo.form.Field} this
39155              * @param {Roo.EventObject} e The event object
39156              */
39157             specialkey : true,
39158             /**
39159              * @event change
39160              * Fires just before the field blurs if the field value has changed.
39161              * @param {Roo.form.Field} this
39162              * @param {Mixed} newValue The new value
39163              * @param {Mixed} oldValue The original value
39164              */
39165             change : true,
39166             /**
39167              * @event invalid
39168              * Fires after the field has been marked as invalid.
39169              * @param {Roo.form.Field} this
39170              * @param {String} msg The validation message
39171              */
39172             invalid : true,
39173             /**
39174              * @event valid
39175              * Fires after the field has been validated with no errors.
39176              * @param {Roo.form.Field} this
39177              */
39178             valid : true,
39179              /**
39180              * @event keyup
39181              * Fires after the key up
39182              * @param {Roo.form.Field} this
39183              * @param {Roo.EventObject}  e The event Object
39184              */
39185             keyup : true
39186         });
39187     },
39188
39189     /**
39190      * Returns the name attribute of the field if available
39191      * @return {String} name The field name
39192      */
39193     getName: function(){
39194          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39195     },
39196
39197     // private
39198     onRender : function(ct, position){
39199         Roo.form.Field.superclass.onRender.call(this, ct, position);
39200         if(!this.el){
39201             var cfg = this.getAutoCreate();
39202             if(!cfg.name){
39203                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39204             }
39205             if (!cfg.name.length) {
39206                 delete cfg.name;
39207             }
39208             if(this.inputType){
39209                 cfg.type = this.inputType;
39210             }
39211             this.el = ct.createChild(cfg, position);
39212         }
39213         var type = this.el.dom.type;
39214         if(type){
39215             if(type == 'password'){
39216                 type = 'text';
39217             }
39218             this.el.addClass('x-form-'+type);
39219         }
39220         if(this.readOnly){
39221             this.el.dom.readOnly = true;
39222         }
39223         if(this.tabIndex !== undefined){
39224             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39225         }
39226
39227         this.el.addClass([this.fieldClass, this.cls]);
39228         this.initValue();
39229     },
39230
39231     /**
39232      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39233      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39234      * @return {Roo.form.Field} this
39235      */
39236     applyTo : function(target){
39237         this.allowDomMove = false;
39238         this.el = Roo.get(target);
39239         this.render(this.el.dom.parentNode);
39240         return this;
39241     },
39242
39243     // private
39244     initValue : function(){
39245         if(this.value !== undefined){
39246             this.setValue(this.value);
39247         }else if(this.el.dom.value.length > 0){
39248             this.setValue(this.el.dom.value);
39249         }
39250     },
39251
39252     /**
39253      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39254      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39255      */
39256     isDirty : function() {
39257         if(this.disabled) {
39258             return false;
39259         }
39260         return String(this.getValue()) !== String(this.originalValue);
39261     },
39262
39263     /**
39264      * stores the current value in loadedValue
39265      */
39266     resetHasChanged : function()
39267     {
39268         this.loadedValue = String(this.getValue());
39269     },
39270     /**
39271      * checks the current value against the 'loaded' value.
39272      * Note - will return false if 'resetHasChanged' has not been called first.
39273      */
39274     hasChanged : function()
39275     {
39276         if(this.disabled || this.readOnly) {
39277             return false;
39278         }
39279         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39280     },
39281     
39282     
39283     
39284     // private
39285     afterRender : function(){
39286         Roo.form.Field.superclass.afterRender.call(this);
39287         this.initEvents();
39288     },
39289
39290     // private
39291     fireKey : function(e){
39292         //Roo.log('field ' + e.getKey());
39293         if(e.isNavKeyPress()){
39294             this.fireEvent("specialkey", this, e);
39295         }
39296     },
39297
39298     /**
39299      * Resets the current field value to the originally loaded value and clears any validation messages
39300      */
39301     reset : function(){
39302         this.setValue(this.resetValue);
39303         this.originalValue = this.getValue();
39304         this.clearInvalid();
39305     },
39306
39307     // private
39308     initEvents : function(){
39309         // safari killled keypress - so keydown is now used..
39310         this.el.on("keydown" , this.fireKey,  this);
39311         this.el.on("focus", this.onFocus,  this);
39312         this.el.on("blur", this.onBlur,  this);
39313         this.el.relayEvent('keyup', this);
39314
39315         // reference to original value for reset
39316         this.originalValue = this.getValue();
39317         this.resetValue =  this.getValue();
39318     },
39319
39320     // private
39321     onFocus : function(){
39322         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39323             this.el.addClass(this.focusClass);
39324         }
39325         if(!this.hasFocus){
39326             this.hasFocus = true;
39327             this.startValue = this.getValue();
39328             this.fireEvent("focus", this);
39329         }
39330     },
39331
39332     beforeBlur : Roo.emptyFn,
39333
39334     // private
39335     onBlur : function(){
39336         this.beforeBlur();
39337         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39338             this.el.removeClass(this.focusClass);
39339         }
39340         this.hasFocus = false;
39341         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39342             this.validate();
39343         }
39344         var v = this.getValue();
39345         if(String(v) !== String(this.startValue)){
39346             this.fireEvent('change', this, v, this.startValue);
39347         }
39348         this.fireEvent("blur", this);
39349     },
39350
39351     /**
39352      * Returns whether or not the field value is currently valid
39353      * @param {Boolean} preventMark True to disable marking the field invalid
39354      * @return {Boolean} True if the value is valid, else false
39355      */
39356     isValid : function(preventMark){
39357         if(this.disabled){
39358             return true;
39359         }
39360         var restore = this.preventMark;
39361         this.preventMark = preventMark === true;
39362         var v = this.validateValue(this.processValue(this.getRawValue()));
39363         this.preventMark = restore;
39364         return v;
39365     },
39366
39367     /**
39368      * Validates the field value
39369      * @return {Boolean} True if the value is valid, else false
39370      */
39371     validate : function(){
39372         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39373             this.clearInvalid();
39374             return true;
39375         }
39376         return false;
39377     },
39378
39379     processValue : function(value){
39380         return value;
39381     },
39382
39383     // private
39384     // Subclasses should provide the validation implementation by overriding this
39385     validateValue : function(value){
39386         return true;
39387     },
39388
39389     /**
39390      * Mark this field as invalid
39391      * @param {String} msg The validation message
39392      */
39393     markInvalid : function(msg){
39394         if(!this.rendered || this.preventMark){ // not rendered
39395             return;
39396         }
39397         
39398         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39399         
39400         obj.el.addClass(this.invalidClass);
39401         msg = msg || this.invalidText;
39402         switch(this.msgTarget){
39403             case 'qtip':
39404                 obj.el.dom.qtip = msg;
39405                 obj.el.dom.qclass = 'x-form-invalid-tip';
39406                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39407                     Roo.QuickTips.enable();
39408                 }
39409                 break;
39410             case 'title':
39411                 this.el.dom.title = msg;
39412                 break;
39413             case 'under':
39414                 if(!this.errorEl){
39415                     var elp = this.el.findParent('.x-form-element', 5, true);
39416                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39417                     this.errorEl.setWidth(elp.getWidth(true)-20);
39418                 }
39419                 this.errorEl.update(msg);
39420                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39421                 break;
39422             case 'side':
39423                 if(!this.errorIcon){
39424                     var elp = this.el.findParent('.x-form-element', 5, true);
39425                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39426                 }
39427                 this.alignErrorIcon();
39428                 this.errorIcon.dom.qtip = msg;
39429                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39430                 this.errorIcon.show();
39431                 this.on('resize', this.alignErrorIcon, this);
39432                 break;
39433             default:
39434                 var t = Roo.getDom(this.msgTarget);
39435                 t.innerHTML = msg;
39436                 t.style.display = this.msgDisplay;
39437                 break;
39438         }
39439         this.fireEvent('invalid', this, msg);
39440     },
39441
39442     // private
39443     alignErrorIcon : function(){
39444         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39445     },
39446
39447     /**
39448      * Clear any invalid styles/messages for this field
39449      */
39450     clearInvalid : function(){
39451         if(!this.rendered || this.preventMark){ // not rendered
39452             return;
39453         }
39454         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39455         
39456         obj.el.removeClass(this.invalidClass);
39457         switch(this.msgTarget){
39458             case 'qtip':
39459                 obj.el.dom.qtip = '';
39460                 break;
39461             case 'title':
39462                 this.el.dom.title = '';
39463                 break;
39464             case 'under':
39465                 if(this.errorEl){
39466                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39467                 }
39468                 break;
39469             case 'side':
39470                 if(this.errorIcon){
39471                     this.errorIcon.dom.qtip = '';
39472                     this.errorIcon.hide();
39473                     this.un('resize', this.alignErrorIcon, this);
39474                 }
39475                 break;
39476             default:
39477                 var t = Roo.getDom(this.msgTarget);
39478                 t.innerHTML = '';
39479                 t.style.display = 'none';
39480                 break;
39481         }
39482         this.fireEvent('valid', this);
39483     },
39484
39485     /**
39486      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39487      * @return {Mixed} value The field value
39488      */
39489     getRawValue : function(){
39490         var v = this.el.getValue();
39491         
39492         return v;
39493     },
39494
39495     /**
39496      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39497      * @return {Mixed} value The field value
39498      */
39499     getValue : function(){
39500         var v = this.el.getValue();
39501          
39502         return v;
39503     },
39504
39505     /**
39506      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39507      * @param {Mixed} value The value to set
39508      */
39509     setRawValue : function(v){
39510         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39511     },
39512
39513     /**
39514      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39515      * @param {Mixed} value The value to set
39516      */
39517     setValue : function(v){
39518         this.value = v;
39519         if(this.rendered){
39520             this.el.dom.value = (v === null || v === undefined ? '' : v);
39521              this.validate();
39522         }
39523     },
39524
39525     adjustSize : function(w, h){
39526         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39527         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39528         return s;
39529     },
39530
39531     adjustWidth : function(tag, w){
39532         tag = tag.toLowerCase();
39533         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39534             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39535                 if(tag == 'input'){
39536                     return w + 2;
39537                 }
39538                 if(tag == 'textarea'){
39539                     return w-2;
39540                 }
39541             }else if(Roo.isOpera){
39542                 if(tag == 'input'){
39543                     return w + 2;
39544                 }
39545                 if(tag == 'textarea'){
39546                     return w-2;
39547                 }
39548             }
39549         }
39550         return w;
39551     }
39552 });
39553
39554
39555 // anything other than normal should be considered experimental
39556 Roo.form.Field.msgFx = {
39557     normal : {
39558         show: function(msgEl, f){
39559             msgEl.setDisplayed('block');
39560         },
39561
39562         hide : function(msgEl, f){
39563             msgEl.setDisplayed(false).update('');
39564         }
39565     },
39566
39567     slide : {
39568         show: function(msgEl, f){
39569             msgEl.slideIn('t', {stopFx:true});
39570         },
39571
39572         hide : function(msgEl, f){
39573             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39574         }
39575     },
39576
39577     slideRight : {
39578         show: function(msgEl, f){
39579             msgEl.fixDisplay();
39580             msgEl.alignTo(f.el, 'tl-tr');
39581             msgEl.slideIn('l', {stopFx:true});
39582         },
39583
39584         hide : function(msgEl, f){
39585             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39586         }
39587     }
39588 };/*
39589  * Based on:
39590  * Ext JS Library 1.1.1
39591  * Copyright(c) 2006-2007, Ext JS, LLC.
39592  *
39593  * Originally Released Under LGPL - original licence link has changed is not relivant.
39594  *
39595  * Fork - LGPL
39596  * <script type="text/javascript">
39597  */
39598  
39599
39600 /**
39601  * @class Roo.form.TextField
39602  * @extends Roo.form.Field
39603  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39604  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39605  * @constructor
39606  * Creates a new TextField
39607  * @param {Object} config Configuration options
39608  */
39609 Roo.form.TextField = function(config){
39610     Roo.form.TextField.superclass.constructor.call(this, config);
39611     this.addEvents({
39612         /**
39613          * @event autosize
39614          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39615          * according to the default logic, but this event provides a hook for the developer to apply additional
39616          * logic at runtime to resize the field if needed.
39617              * @param {Roo.form.Field} this This text field
39618              * @param {Number} width The new field width
39619              */
39620         autosize : true
39621     });
39622 };
39623
39624 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39625     /**
39626      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39627      */
39628     grow : false,
39629     /**
39630      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39631      */
39632     growMin : 30,
39633     /**
39634      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39635      */
39636     growMax : 800,
39637     /**
39638      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39639      */
39640     vtype : null,
39641     /**
39642      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39643      */
39644     maskRe : null,
39645     /**
39646      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39647      */
39648     disableKeyFilter : false,
39649     /**
39650      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39651      */
39652     allowBlank : true,
39653     /**
39654      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39655      */
39656     minLength : 0,
39657     /**
39658      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39659      */
39660     maxLength : Number.MAX_VALUE,
39661     /**
39662      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39663      */
39664     minLengthText : "The minimum length for this field is {0}",
39665     /**
39666      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39667      */
39668     maxLengthText : "The maximum length for this field is {0}",
39669     /**
39670      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39671      */
39672     selectOnFocus : false,
39673     /**
39674      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39675      */    
39676     allowLeadingSpace : false,
39677     /**
39678      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39679      */
39680     blankText : "This field is required",
39681     /**
39682      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39683      * If available, this function will be called only after the basic validators all return true, and will be passed the
39684      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39685      */
39686     validator : null,
39687     /**
39688      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39689      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39690      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39691      */
39692     regex : null,
39693     /**
39694      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39695      */
39696     regexText : "",
39697     /**
39698      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39699      */
39700     emptyText : null,
39701    
39702
39703     // private
39704     initEvents : function()
39705     {
39706         if (this.emptyText) {
39707             this.el.attr('placeholder', this.emptyText);
39708         }
39709         
39710         Roo.form.TextField.superclass.initEvents.call(this);
39711         if(this.validationEvent == 'keyup'){
39712             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39713             this.el.on('keyup', this.filterValidation, this);
39714         }
39715         else if(this.validationEvent !== false){
39716             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39717         }
39718         
39719         if(this.selectOnFocus){
39720             this.on("focus", this.preFocus, this);
39721         }
39722         if (!this.allowLeadingSpace) {
39723             this.on('blur', this.cleanLeadingSpace, this);
39724         }
39725         
39726         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39727             this.el.on("keypress", this.filterKeys, this);
39728         }
39729         if(this.grow){
39730             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39731             this.el.on("click", this.autoSize,  this);
39732         }
39733         if(this.el.is('input[type=password]') && Roo.isSafari){
39734             this.el.on('keydown', this.SafariOnKeyDown, this);
39735         }
39736     },
39737
39738     processValue : function(value){
39739         if(this.stripCharsRe){
39740             var newValue = value.replace(this.stripCharsRe, '');
39741             if(newValue !== value){
39742                 this.setRawValue(newValue);
39743                 return newValue;
39744             }
39745         }
39746         return value;
39747     },
39748
39749     filterValidation : function(e){
39750         if(!e.isNavKeyPress()){
39751             this.validationTask.delay(this.validationDelay);
39752         }
39753     },
39754
39755     // private
39756     onKeyUp : function(e){
39757         if(!e.isNavKeyPress()){
39758             this.autoSize();
39759         }
39760     },
39761     // private - clean the leading white space
39762     cleanLeadingSpace : function(e)
39763     {
39764         if ( this.inputType == 'file') {
39765             return;
39766         }
39767         
39768         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39769     },
39770     /**
39771      * Resets the current field value to the originally-loaded value and clears any validation messages.
39772      *  
39773      */
39774     reset : function(){
39775         Roo.form.TextField.superclass.reset.call(this);
39776        
39777     }, 
39778     // private
39779     preFocus : function(){
39780         
39781         if(this.selectOnFocus){
39782             this.el.dom.select();
39783         }
39784     },
39785
39786     
39787     // private
39788     filterKeys : function(e){
39789         var k = e.getKey();
39790         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39791             return;
39792         }
39793         var c = e.getCharCode(), cc = String.fromCharCode(c);
39794         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39795             return;
39796         }
39797         if(!this.maskRe.test(cc)){
39798             e.stopEvent();
39799         }
39800     },
39801
39802     setValue : function(v){
39803         
39804         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39805         
39806         this.autoSize();
39807     },
39808
39809     /**
39810      * Validates a value according to the field's validation rules and marks the field as invalid
39811      * if the validation fails
39812      * @param {Mixed} value The value to validate
39813      * @return {Boolean} True if the value is valid, else false
39814      */
39815     validateValue : function(value){
39816         if(value.length < 1)  { // if it's blank
39817              if(this.allowBlank){
39818                 this.clearInvalid();
39819                 return true;
39820              }else{
39821                 this.markInvalid(this.blankText);
39822                 return false;
39823              }
39824         }
39825         if(value.length < this.minLength){
39826             this.markInvalid(String.format(this.minLengthText, this.minLength));
39827             return false;
39828         }
39829         if(value.length > this.maxLength){
39830             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39831             return false;
39832         }
39833         if(this.vtype){
39834             var vt = Roo.form.VTypes;
39835             if(!vt[this.vtype](value, this)){
39836                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39837                 return false;
39838             }
39839         }
39840         if(typeof this.validator == "function"){
39841             var msg = this.validator(value);
39842             if(msg !== true){
39843                 this.markInvalid(msg);
39844                 return false;
39845             }
39846         }
39847         if(this.regex && !this.regex.test(value)){
39848             this.markInvalid(this.regexText);
39849             return false;
39850         }
39851         return true;
39852     },
39853
39854     /**
39855      * Selects text in this field
39856      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39857      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39858      */
39859     selectText : function(start, end){
39860         var v = this.getRawValue();
39861         if(v.length > 0){
39862             start = start === undefined ? 0 : start;
39863             end = end === undefined ? v.length : end;
39864             var d = this.el.dom;
39865             if(d.setSelectionRange){
39866                 d.setSelectionRange(start, end);
39867             }else if(d.createTextRange){
39868                 var range = d.createTextRange();
39869                 range.moveStart("character", start);
39870                 range.moveEnd("character", v.length-end);
39871                 range.select();
39872             }
39873         }
39874     },
39875
39876     /**
39877      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39878      * This only takes effect if grow = true, and fires the autosize event.
39879      */
39880     autoSize : function(){
39881         if(!this.grow || !this.rendered){
39882             return;
39883         }
39884         if(!this.metrics){
39885             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39886         }
39887         var el = this.el;
39888         var v = el.dom.value;
39889         var d = document.createElement('div');
39890         d.appendChild(document.createTextNode(v));
39891         v = d.innerHTML;
39892         d = null;
39893         v += "&#160;";
39894         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39895         this.el.setWidth(w);
39896         this.fireEvent("autosize", this, w);
39897     },
39898     
39899     // private
39900     SafariOnKeyDown : function(event)
39901     {
39902         // this is a workaround for a password hang bug on chrome/ webkit.
39903         
39904         var isSelectAll = false;
39905         
39906         if(this.el.dom.selectionEnd > 0){
39907             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39908         }
39909         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39910             event.preventDefault();
39911             this.setValue('');
39912             return;
39913         }
39914         
39915         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39916             
39917             event.preventDefault();
39918             // this is very hacky as keydown always get's upper case.
39919             
39920             var cc = String.fromCharCode(event.getCharCode());
39921             
39922             
39923             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39924             
39925         }
39926         
39927         
39928     }
39929 });/*
39930  * Based on:
39931  * Ext JS Library 1.1.1
39932  * Copyright(c) 2006-2007, Ext JS, LLC.
39933  *
39934  * Originally Released Under LGPL - original licence link has changed is not relivant.
39935  *
39936  * Fork - LGPL
39937  * <script type="text/javascript">
39938  */
39939  
39940 /**
39941  * @class Roo.form.Hidden
39942  * @extends Roo.form.TextField
39943  * Simple Hidden element used on forms 
39944  * 
39945  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39946  * 
39947  * @constructor
39948  * Creates a new Hidden form element.
39949  * @param {Object} config Configuration options
39950  */
39951
39952
39953
39954 // easy hidden field...
39955 Roo.form.Hidden = function(config){
39956     Roo.form.Hidden.superclass.constructor.call(this, config);
39957 };
39958   
39959 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39960     fieldLabel:      '',
39961     inputType:      'hidden',
39962     width:          50,
39963     allowBlank:     true,
39964     labelSeparator: '',
39965     hidden:         true,
39966     itemCls :       'x-form-item-display-none'
39967
39968
39969 });
39970
39971
39972 /*
39973  * Based on:
39974  * Ext JS Library 1.1.1
39975  * Copyright(c) 2006-2007, Ext JS, LLC.
39976  *
39977  * Originally Released Under LGPL - original licence link has changed is not relivant.
39978  *
39979  * Fork - LGPL
39980  * <script type="text/javascript">
39981  */
39982  
39983 /**
39984  * @class Roo.form.TriggerField
39985  * @extends Roo.form.TextField
39986  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39987  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39988  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39989  * for which you can provide a custom implementation.  For example:
39990  * <pre><code>
39991 var trigger = new Roo.form.TriggerField();
39992 trigger.onTriggerClick = myTriggerFn;
39993 trigger.applyTo('my-field');
39994 </code></pre>
39995  *
39996  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39997  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39998  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39999  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
40000  * @constructor
40001  * Create a new TriggerField.
40002  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
40003  * to the base TextField)
40004  */
40005 Roo.form.TriggerField = function(config){
40006     this.mimicing = false;
40007     Roo.form.TriggerField.superclass.constructor.call(this, config);
40008 };
40009
40010 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
40011     /**
40012      * @cfg {String} triggerClass A CSS class to apply to the trigger
40013      */
40014     /**
40015      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40016      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
40017      */
40018     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
40019     /**
40020      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
40021      */
40022     hideTrigger:false,
40023
40024     /** @cfg {Boolean} grow @hide */
40025     /** @cfg {Number} growMin @hide */
40026     /** @cfg {Number} growMax @hide */
40027
40028     /**
40029      * @hide 
40030      * @method
40031      */
40032     autoSize: Roo.emptyFn,
40033     // private
40034     monitorTab : true,
40035     // private
40036     deferHeight : true,
40037
40038     
40039     actionMode : 'wrap',
40040     // private
40041     onResize : function(w, h){
40042         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
40043         if(typeof w == 'number'){
40044             var x = w - this.trigger.getWidth();
40045             this.el.setWidth(this.adjustWidth('input', x));
40046             this.trigger.setStyle('left', x+'px');
40047         }
40048     },
40049
40050     // private
40051     adjustSize : Roo.BoxComponent.prototype.adjustSize,
40052
40053     // private
40054     getResizeEl : function(){
40055         return this.wrap;
40056     },
40057
40058     // private
40059     getPositionEl : function(){
40060         return this.wrap;
40061     },
40062
40063     // private
40064     alignErrorIcon : function(){
40065         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
40066     },
40067
40068     // private
40069     onRender : function(ct, position){
40070         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
40071         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
40072         this.trigger = this.wrap.createChild(this.triggerConfig ||
40073                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
40074         if(this.hideTrigger){
40075             this.trigger.setDisplayed(false);
40076         }
40077         this.initTrigger();
40078         if(!this.width){
40079             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
40080         }
40081     },
40082
40083     // private
40084     initTrigger : function(){
40085         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40086         this.trigger.addClassOnOver('x-form-trigger-over');
40087         this.trigger.addClassOnClick('x-form-trigger-click');
40088     },
40089
40090     // private
40091     onDestroy : function(){
40092         if(this.trigger){
40093             this.trigger.removeAllListeners();
40094             this.trigger.remove();
40095         }
40096         if(this.wrap){
40097             this.wrap.remove();
40098         }
40099         Roo.form.TriggerField.superclass.onDestroy.call(this);
40100     },
40101
40102     // private
40103     onFocus : function(){
40104         Roo.form.TriggerField.superclass.onFocus.call(this);
40105         if(!this.mimicing){
40106             this.wrap.addClass('x-trigger-wrap-focus');
40107             this.mimicing = true;
40108             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40109             if(this.monitorTab){
40110                 this.el.on("keydown", this.checkTab, this);
40111             }
40112         }
40113     },
40114
40115     // private
40116     checkTab : function(e){
40117         if(e.getKey() == e.TAB){
40118             this.triggerBlur();
40119         }
40120     },
40121
40122     // private
40123     onBlur : function(){
40124         // do nothing
40125     },
40126
40127     // private
40128     mimicBlur : function(e, t){
40129         if(!this.wrap.contains(t) && this.validateBlur()){
40130             this.triggerBlur();
40131         }
40132     },
40133
40134     // private
40135     triggerBlur : function(){
40136         this.mimicing = false;
40137         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40138         if(this.monitorTab){
40139             this.el.un("keydown", this.checkTab, this);
40140         }
40141         this.wrap.removeClass('x-trigger-wrap-focus');
40142         Roo.form.TriggerField.superclass.onBlur.call(this);
40143     },
40144
40145     // private
40146     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40147     validateBlur : function(e, t){
40148         return true;
40149     },
40150
40151     // private
40152     onDisable : function(){
40153         Roo.form.TriggerField.superclass.onDisable.call(this);
40154         if(this.wrap){
40155             this.wrap.addClass('x-item-disabled');
40156         }
40157     },
40158
40159     // private
40160     onEnable : function(){
40161         Roo.form.TriggerField.superclass.onEnable.call(this);
40162         if(this.wrap){
40163             this.wrap.removeClass('x-item-disabled');
40164         }
40165     },
40166
40167     // private
40168     onShow : function(){
40169         var ae = this.getActionEl();
40170         
40171         if(ae){
40172             ae.dom.style.display = '';
40173             ae.dom.style.visibility = 'visible';
40174         }
40175     },
40176
40177     // private
40178     
40179     onHide : function(){
40180         var ae = this.getActionEl();
40181         ae.dom.style.display = 'none';
40182     },
40183
40184     /**
40185      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40186      * by an implementing function.
40187      * @method
40188      * @param {EventObject} e
40189      */
40190     onTriggerClick : Roo.emptyFn
40191 });
40192
40193 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40194 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40195 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40196 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40197     initComponent : function(){
40198         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40199
40200         this.triggerConfig = {
40201             tag:'span', cls:'x-form-twin-triggers', cn:[
40202             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40203             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40204         ]};
40205     },
40206
40207     getTrigger : function(index){
40208         return this.triggers[index];
40209     },
40210
40211     initTrigger : function(){
40212         var ts = this.trigger.select('.x-form-trigger', true);
40213         this.wrap.setStyle('overflow', 'hidden');
40214         var triggerField = this;
40215         ts.each(function(t, all, index){
40216             t.hide = function(){
40217                 var w = triggerField.wrap.getWidth();
40218                 this.dom.style.display = 'none';
40219                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40220             };
40221             t.show = function(){
40222                 var w = triggerField.wrap.getWidth();
40223                 this.dom.style.display = '';
40224                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40225             };
40226             var triggerIndex = 'Trigger'+(index+1);
40227
40228             if(this['hide'+triggerIndex]){
40229                 t.dom.style.display = 'none';
40230             }
40231             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40232             t.addClassOnOver('x-form-trigger-over');
40233             t.addClassOnClick('x-form-trigger-click');
40234         }, this);
40235         this.triggers = ts.elements;
40236     },
40237
40238     onTrigger1Click : Roo.emptyFn,
40239     onTrigger2Click : Roo.emptyFn
40240 });/*
40241  * Based on:
40242  * Ext JS Library 1.1.1
40243  * Copyright(c) 2006-2007, Ext JS, LLC.
40244  *
40245  * Originally Released Under LGPL - original licence link has changed is not relivant.
40246  *
40247  * Fork - LGPL
40248  * <script type="text/javascript">
40249  */
40250  
40251 /**
40252  * @class Roo.form.TextArea
40253  * @extends Roo.form.TextField
40254  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40255  * support for auto-sizing.
40256  * @constructor
40257  * Creates a new TextArea
40258  * @param {Object} config Configuration options
40259  */
40260 Roo.form.TextArea = function(config){
40261     Roo.form.TextArea.superclass.constructor.call(this, config);
40262     // these are provided exchanges for backwards compat
40263     // minHeight/maxHeight were replaced by growMin/growMax to be
40264     // compatible with TextField growing config values
40265     if(this.minHeight !== undefined){
40266         this.growMin = this.minHeight;
40267     }
40268     if(this.maxHeight !== undefined){
40269         this.growMax = this.maxHeight;
40270     }
40271 };
40272
40273 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40274     /**
40275      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40276      */
40277     growMin : 60,
40278     /**
40279      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40280      */
40281     growMax: 1000,
40282     /**
40283      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40284      * in the field (equivalent to setting overflow: hidden, defaults to false)
40285      */
40286     preventScrollbars: false,
40287     /**
40288      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40289      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40290      */
40291
40292     // private
40293     onRender : function(ct, position){
40294         if(!this.el){
40295             this.defaultAutoCreate = {
40296                 tag: "textarea",
40297                 style:"width:300px;height:60px;",
40298                 autocomplete: "new-password"
40299             };
40300         }
40301         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40302         if(this.grow){
40303             this.textSizeEl = Roo.DomHelper.append(document.body, {
40304                 tag: "pre", cls: "x-form-grow-sizer"
40305             });
40306             if(this.preventScrollbars){
40307                 this.el.setStyle("overflow", "hidden");
40308             }
40309             this.el.setHeight(this.growMin);
40310         }
40311     },
40312
40313     onDestroy : function(){
40314         if(this.textSizeEl){
40315             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40316         }
40317         Roo.form.TextArea.superclass.onDestroy.call(this);
40318     },
40319
40320     // private
40321     onKeyUp : function(e){
40322         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40323             this.autoSize();
40324         }
40325     },
40326
40327     /**
40328      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40329      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40330      */
40331     autoSize : function(){
40332         if(!this.grow || !this.textSizeEl){
40333             return;
40334         }
40335         var el = this.el;
40336         var v = el.dom.value;
40337         var ts = this.textSizeEl;
40338
40339         ts.innerHTML = '';
40340         ts.appendChild(document.createTextNode(v));
40341         v = ts.innerHTML;
40342
40343         Roo.fly(ts).setWidth(this.el.getWidth());
40344         if(v.length < 1){
40345             v = "&#160;&#160;";
40346         }else{
40347             if(Roo.isIE){
40348                 v = v.replace(/\n/g, '<p>&#160;</p>');
40349             }
40350             v += "&#160;\n&#160;";
40351         }
40352         ts.innerHTML = v;
40353         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40354         if(h != this.lastHeight){
40355             this.lastHeight = h;
40356             this.el.setHeight(h);
40357             this.fireEvent("autosize", this, h);
40358         }
40359     }
40360 });/*
40361  * Based on:
40362  * Ext JS Library 1.1.1
40363  * Copyright(c) 2006-2007, Ext JS, LLC.
40364  *
40365  * Originally Released Under LGPL - original licence link has changed is not relivant.
40366  *
40367  * Fork - LGPL
40368  * <script type="text/javascript">
40369  */
40370  
40371
40372 /**
40373  * @class Roo.form.NumberField
40374  * @extends Roo.form.TextField
40375  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40376  * @constructor
40377  * Creates a new NumberField
40378  * @param {Object} config Configuration options
40379  */
40380 Roo.form.NumberField = function(config){
40381     Roo.form.NumberField.superclass.constructor.call(this, config);
40382 };
40383
40384 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40385     /**
40386      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40387      */
40388     fieldClass: "x-form-field x-form-num-field",
40389     /**
40390      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40391      */
40392     allowDecimals : true,
40393     /**
40394      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40395      */
40396     decimalSeparator : ".",
40397     /**
40398      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40399      */
40400     decimalPrecision : 2,
40401     /**
40402      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40403      */
40404     allowNegative : true,
40405     /**
40406      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40407      */
40408     minValue : Number.NEGATIVE_INFINITY,
40409     /**
40410      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40411      */
40412     maxValue : Number.MAX_VALUE,
40413     /**
40414      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40415      */
40416     minText : "The minimum value for this field is {0}",
40417     /**
40418      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40419      */
40420     maxText : "The maximum value for this field is {0}",
40421     /**
40422      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40423      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40424      */
40425     nanText : "{0} is not a valid number",
40426
40427     // private
40428     initEvents : function(){
40429         Roo.form.NumberField.superclass.initEvents.call(this);
40430         var allowed = "0123456789";
40431         if(this.allowDecimals){
40432             allowed += this.decimalSeparator;
40433         }
40434         if(this.allowNegative){
40435             allowed += "-";
40436         }
40437         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40438         var keyPress = function(e){
40439             var k = e.getKey();
40440             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40441                 return;
40442             }
40443             var c = e.getCharCode();
40444             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40445                 e.stopEvent();
40446             }
40447         };
40448         this.el.on("keypress", keyPress, this);
40449     },
40450
40451     // private
40452     validateValue : function(value){
40453         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40454             return false;
40455         }
40456         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40457              return true;
40458         }
40459         var num = this.parseValue(value);
40460         if(isNaN(num)){
40461             this.markInvalid(String.format(this.nanText, value));
40462             return false;
40463         }
40464         if(num < this.minValue){
40465             this.markInvalid(String.format(this.minText, this.minValue));
40466             return false;
40467         }
40468         if(num > this.maxValue){
40469             this.markInvalid(String.format(this.maxText, this.maxValue));
40470             return false;
40471         }
40472         return true;
40473     },
40474
40475     getValue : function(){
40476         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40477     },
40478
40479     // private
40480     parseValue : function(value){
40481         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40482         return isNaN(value) ? '' : value;
40483     },
40484
40485     // private
40486     fixPrecision : function(value){
40487         var nan = isNaN(value);
40488         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40489             return nan ? '' : value;
40490         }
40491         return parseFloat(value).toFixed(this.decimalPrecision);
40492     },
40493
40494     setValue : function(v){
40495         v = this.fixPrecision(v);
40496         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40497     },
40498
40499     // private
40500     decimalPrecisionFcn : function(v){
40501         return Math.floor(v);
40502     },
40503
40504     beforeBlur : function(){
40505         var v = this.parseValue(this.getRawValue());
40506         if(v){
40507             this.setValue(v);
40508         }
40509     }
40510 });/*
40511  * Based on:
40512  * Ext JS Library 1.1.1
40513  * Copyright(c) 2006-2007, Ext JS, LLC.
40514  *
40515  * Originally Released Under LGPL - original licence link has changed is not relivant.
40516  *
40517  * Fork - LGPL
40518  * <script type="text/javascript">
40519  */
40520  
40521 /**
40522  * @class Roo.form.DateField
40523  * @extends Roo.form.TriggerField
40524  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40525 * @constructor
40526 * Create a new DateField
40527 * @param {Object} config
40528  */
40529 Roo.form.DateField = function(config)
40530 {
40531     Roo.form.DateField.superclass.constructor.call(this, config);
40532     
40533       this.addEvents({
40534          
40535         /**
40536          * @event select
40537          * Fires when a date is selected
40538              * @param {Roo.form.DateField} combo This combo box
40539              * @param {Date} date The date selected
40540              */
40541         'select' : true
40542          
40543     });
40544     
40545     
40546     if(typeof this.minValue == "string") {
40547         this.minValue = this.parseDate(this.minValue);
40548     }
40549     if(typeof this.maxValue == "string") {
40550         this.maxValue = this.parseDate(this.maxValue);
40551     }
40552     this.ddMatch = null;
40553     if(this.disabledDates){
40554         var dd = this.disabledDates;
40555         var re = "(?:";
40556         for(var i = 0; i < dd.length; i++){
40557             re += dd[i];
40558             if(i != dd.length-1) {
40559                 re += "|";
40560             }
40561         }
40562         this.ddMatch = new RegExp(re + ")");
40563     }
40564 };
40565
40566 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40567     /**
40568      * @cfg {String} format
40569      * The default date format string which can be overriden for localization support.  The format must be
40570      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40571      */
40572     format : "m/d/y",
40573     /**
40574      * @cfg {String} altFormats
40575      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40576      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40577      */
40578     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40579     /**
40580      * @cfg {Array} disabledDays
40581      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40582      */
40583     disabledDays : null,
40584     /**
40585      * @cfg {String} disabledDaysText
40586      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40587      */
40588     disabledDaysText : "Disabled",
40589     /**
40590      * @cfg {Array} disabledDates
40591      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40592      * expression so they are very powerful. Some examples:
40593      * <ul>
40594      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40595      * <li>["03/08", "09/16"] would disable those days for every year</li>
40596      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40597      * <li>["03/../2006"] would disable every day in March 2006</li>
40598      * <li>["^03"] would disable every day in every March</li>
40599      * </ul>
40600      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40601      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40602      */
40603     disabledDates : null,
40604     /**
40605      * @cfg {String} disabledDatesText
40606      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40607      */
40608     disabledDatesText : "Disabled",
40609     /**
40610      * @cfg {Date/String} minValue
40611      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40612      * valid format (defaults to null).
40613      */
40614     minValue : null,
40615     /**
40616      * @cfg {Date/String} maxValue
40617      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40618      * valid format (defaults to null).
40619      */
40620     maxValue : null,
40621     /**
40622      * @cfg {String} minText
40623      * The error text to display when the date in the cell is before minValue (defaults to
40624      * 'The date in this field must be after {minValue}').
40625      */
40626     minText : "The date in this field must be equal to or after {0}",
40627     /**
40628      * @cfg {String} maxText
40629      * The error text to display when the date in the cell is after maxValue (defaults to
40630      * 'The date in this field must be before {maxValue}').
40631      */
40632     maxText : "The date in this field must be equal to or before {0}",
40633     /**
40634      * @cfg {String} invalidText
40635      * The error text to display when the date in the field is invalid (defaults to
40636      * '{value} is not a valid date - it must be in the format {format}').
40637      */
40638     invalidText : "{0} is not a valid date - it must be in the format {1}",
40639     /**
40640      * @cfg {String} triggerClass
40641      * An additional CSS class used to style the trigger button.  The trigger will always get the
40642      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40643      * which displays a calendar icon).
40644      */
40645     triggerClass : 'x-form-date-trigger',
40646     
40647
40648     /**
40649      * @cfg {Boolean} useIso
40650      * if enabled, then the date field will use a hidden field to store the 
40651      * real value as iso formated date. default (false)
40652      */ 
40653     useIso : false,
40654     /**
40655      * @cfg {String/Object} autoCreate
40656      * A DomHelper element spec, or true for a default element spec (defaults to
40657      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40658      */ 
40659     // private
40660     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40661     
40662     // private
40663     hiddenField: false,
40664     
40665     onRender : function(ct, position)
40666     {
40667         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40668         if (this.useIso) {
40669             //this.el.dom.removeAttribute('name'); 
40670             Roo.log("Changing name?");
40671             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40672             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40673                     'before', true);
40674             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40675             // prevent input submission
40676             this.hiddenName = this.name;
40677         }
40678             
40679             
40680     },
40681     
40682     // private
40683     validateValue : function(value)
40684     {
40685         value = this.formatDate(value);
40686         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40687             Roo.log('super failed');
40688             return false;
40689         }
40690         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40691              return true;
40692         }
40693         var svalue = value;
40694         value = this.parseDate(value);
40695         if(!value){
40696             Roo.log('parse date failed' + svalue);
40697             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40698             return false;
40699         }
40700         var time = value.getTime();
40701         if(this.minValue && time < this.minValue.getTime()){
40702             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40703             return false;
40704         }
40705         if(this.maxValue && time > this.maxValue.getTime()){
40706             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40707             return false;
40708         }
40709         if(this.disabledDays){
40710             var day = value.getDay();
40711             for(var i = 0; i < this.disabledDays.length; i++) {
40712                 if(day === this.disabledDays[i]){
40713                     this.markInvalid(this.disabledDaysText);
40714                     return false;
40715                 }
40716             }
40717         }
40718         var fvalue = this.formatDate(value);
40719         if(this.ddMatch && this.ddMatch.test(fvalue)){
40720             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40721             return false;
40722         }
40723         return true;
40724     },
40725
40726     // private
40727     // Provides logic to override the default TriggerField.validateBlur which just returns true
40728     validateBlur : function(){
40729         return !this.menu || !this.menu.isVisible();
40730     },
40731     
40732     getName: function()
40733     {
40734         // returns hidden if it's set..
40735         if (!this.rendered) {return ''};
40736         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40737         
40738     },
40739
40740     /**
40741      * Returns the current date value of the date field.
40742      * @return {Date} The date value
40743      */
40744     getValue : function(){
40745         
40746         return  this.hiddenField ?
40747                 this.hiddenField.value :
40748                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40749     },
40750
40751     /**
40752      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40753      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40754      * (the default format used is "m/d/y").
40755      * <br />Usage:
40756      * <pre><code>
40757 //All of these calls set the same date value (May 4, 2006)
40758
40759 //Pass a date object:
40760 var dt = new Date('5/4/06');
40761 dateField.setValue(dt);
40762
40763 //Pass a date string (default format):
40764 dateField.setValue('5/4/06');
40765
40766 //Pass a date string (custom format):
40767 dateField.format = 'Y-m-d';
40768 dateField.setValue('2006-5-4');
40769 </code></pre>
40770      * @param {String/Date} date The date or valid date string
40771      */
40772     setValue : function(date){
40773         if (this.hiddenField) {
40774             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40775         }
40776         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40777         // make sure the value field is always stored as a date..
40778         this.value = this.parseDate(date);
40779         
40780         
40781     },
40782
40783     // private
40784     parseDate : function(value){
40785         if(!value || value instanceof Date){
40786             return value;
40787         }
40788         var v = Date.parseDate(value, this.format);
40789          if (!v && this.useIso) {
40790             v = Date.parseDate(value, 'Y-m-d');
40791         }
40792         if(!v && this.altFormats){
40793             if(!this.altFormatsArray){
40794                 this.altFormatsArray = this.altFormats.split("|");
40795             }
40796             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40797                 v = Date.parseDate(value, this.altFormatsArray[i]);
40798             }
40799         }
40800         return v;
40801     },
40802
40803     // private
40804     formatDate : function(date, fmt){
40805         return (!date || !(date instanceof Date)) ?
40806                date : date.dateFormat(fmt || this.format);
40807     },
40808
40809     // private
40810     menuListeners : {
40811         select: function(m, d){
40812             
40813             this.setValue(d);
40814             this.fireEvent('select', this, d);
40815         },
40816         show : function(){ // retain focus styling
40817             this.onFocus();
40818         },
40819         hide : function(){
40820             this.focus.defer(10, this);
40821             var ml = this.menuListeners;
40822             this.menu.un("select", ml.select,  this);
40823             this.menu.un("show", ml.show,  this);
40824             this.menu.un("hide", ml.hide,  this);
40825         }
40826     },
40827
40828     // private
40829     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40830     onTriggerClick : function(){
40831         if(this.disabled){
40832             return;
40833         }
40834         if(this.menu == null){
40835             this.menu = new Roo.menu.DateMenu();
40836         }
40837         Roo.apply(this.menu.picker,  {
40838             showClear: this.allowBlank,
40839             minDate : this.minValue,
40840             maxDate : this.maxValue,
40841             disabledDatesRE : this.ddMatch,
40842             disabledDatesText : this.disabledDatesText,
40843             disabledDays : this.disabledDays,
40844             disabledDaysText : this.disabledDaysText,
40845             format : this.useIso ? 'Y-m-d' : this.format,
40846             minText : String.format(this.minText, this.formatDate(this.minValue)),
40847             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40848         });
40849         this.menu.on(Roo.apply({}, this.menuListeners, {
40850             scope:this
40851         }));
40852         this.menu.picker.setValue(this.getValue() || new Date());
40853         this.menu.show(this.el, "tl-bl?");
40854     },
40855
40856     beforeBlur : function(){
40857         var v = this.parseDate(this.getRawValue());
40858         if(v){
40859             this.setValue(v);
40860         }
40861     },
40862
40863     /*@
40864      * overide
40865      * 
40866      */
40867     isDirty : function() {
40868         if(this.disabled) {
40869             return false;
40870         }
40871         
40872         if(typeof(this.startValue) === 'undefined'){
40873             return false;
40874         }
40875         
40876         return String(this.getValue()) !== String(this.startValue);
40877         
40878     },
40879     // @overide
40880     cleanLeadingSpace : function(e)
40881     {
40882        return;
40883     }
40884     
40885 });/*
40886  * Based on:
40887  * Ext JS Library 1.1.1
40888  * Copyright(c) 2006-2007, Ext JS, LLC.
40889  *
40890  * Originally Released Under LGPL - original licence link has changed is not relivant.
40891  *
40892  * Fork - LGPL
40893  * <script type="text/javascript">
40894  */
40895  
40896 /**
40897  * @class Roo.form.MonthField
40898  * @extends Roo.form.TriggerField
40899  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40900 * @constructor
40901 * Create a new MonthField
40902 * @param {Object} config
40903  */
40904 Roo.form.MonthField = function(config){
40905     
40906     Roo.form.MonthField.superclass.constructor.call(this, config);
40907     
40908       this.addEvents({
40909          
40910         /**
40911          * @event select
40912          * Fires when a date is selected
40913              * @param {Roo.form.MonthFieeld} combo This combo box
40914              * @param {Date} date The date selected
40915              */
40916         'select' : true
40917          
40918     });
40919     
40920     
40921     if(typeof this.minValue == "string") {
40922         this.minValue = this.parseDate(this.minValue);
40923     }
40924     if(typeof this.maxValue == "string") {
40925         this.maxValue = this.parseDate(this.maxValue);
40926     }
40927     this.ddMatch = null;
40928     if(this.disabledDates){
40929         var dd = this.disabledDates;
40930         var re = "(?:";
40931         for(var i = 0; i < dd.length; i++){
40932             re += dd[i];
40933             if(i != dd.length-1) {
40934                 re += "|";
40935             }
40936         }
40937         this.ddMatch = new RegExp(re + ")");
40938     }
40939 };
40940
40941 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40942     /**
40943      * @cfg {String} format
40944      * The default date format string which can be overriden for localization support.  The format must be
40945      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40946      */
40947     format : "M Y",
40948     /**
40949      * @cfg {String} altFormats
40950      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40951      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40952      */
40953     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40954     /**
40955      * @cfg {Array} disabledDays
40956      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40957      */
40958     disabledDays : [0,1,2,3,4,5,6],
40959     /**
40960      * @cfg {String} disabledDaysText
40961      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40962      */
40963     disabledDaysText : "Disabled",
40964     /**
40965      * @cfg {Array} disabledDates
40966      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40967      * expression so they are very powerful. Some examples:
40968      * <ul>
40969      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40970      * <li>["03/08", "09/16"] would disable those days for every year</li>
40971      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40972      * <li>["03/../2006"] would disable every day in March 2006</li>
40973      * <li>["^03"] would disable every day in every March</li>
40974      * </ul>
40975      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40976      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40977      */
40978     disabledDates : null,
40979     /**
40980      * @cfg {String} disabledDatesText
40981      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40982      */
40983     disabledDatesText : "Disabled",
40984     /**
40985      * @cfg {Date/String} minValue
40986      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40987      * valid format (defaults to null).
40988      */
40989     minValue : null,
40990     /**
40991      * @cfg {Date/String} maxValue
40992      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40993      * valid format (defaults to null).
40994      */
40995     maxValue : null,
40996     /**
40997      * @cfg {String} minText
40998      * The error text to display when the date in the cell is before minValue (defaults to
40999      * 'The date in this field must be after {minValue}').
41000      */
41001     minText : "The date in this field must be equal to or after {0}",
41002     /**
41003      * @cfg {String} maxTextf
41004      * The error text to display when the date in the cell is after maxValue (defaults to
41005      * 'The date in this field must be before {maxValue}').
41006      */
41007     maxText : "The date in this field must be equal to or before {0}",
41008     /**
41009      * @cfg {String} invalidText
41010      * The error text to display when the date in the field is invalid (defaults to
41011      * '{value} is not a valid date - it must be in the format {format}').
41012      */
41013     invalidText : "{0} is not a valid date - it must be in the format {1}",
41014     /**
41015      * @cfg {String} triggerClass
41016      * An additional CSS class used to style the trigger button.  The trigger will always get the
41017      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
41018      * which displays a calendar icon).
41019      */
41020     triggerClass : 'x-form-date-trigger',
41021     
41022
41023     /**
41024      * @cfg {Boolean} useIso
41025      * if enabled, then the date field will use a hidden field to store the 
41026      * real value as iso formated date. default (true)
41027      */ 
41028     useIso : true,
41029     /**
41030      * @cfg {String/Object} autoCreate
41031      * A DomHelper element spec, or true for a default element spec (defaults to
41032      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
41033      */ 
41034     // private
41035     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
41036     
41037     // private
41038     hiddenField: false,
41039     
41040     hideMonthPicker : false,
41041     
41042     onRender : function(ct, position)
41043     {
41044         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
41045         if (this.useIso) {
41046             this.el.dom.removeAttribute('name'); 
41047             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
41048                     'before', true);
41049             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
41050             // prevent input submission
41051             this.hiddenName = this.name;
41052         }
41053             
41054             
41055     },
41056     
41057     // private
41058     validateValue : function(value)
41059     {
41060         value = this.formatDate(value);
41061         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
41062             return false;
41063         }
41064         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41065              return true;
41066         }
41067         var svalue = value;
41068         value = this.parseDate(value);
41069         if(!value){
41070             this.markInvalid(String.format(this.invalidText, svalue, this.format));
41071             return false;
41072         }
41073         var time = value.getTime();
41074         if(this.minValue && time < this.minValue.getTime()){
41075             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
41076             return false;
41077         }
41078         if(this.maxValue && time > this.maxValue.getTime()){
41079             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
41080             return false;
41081         }
41082         /*if(this.disabledDays){
41083             var day = value.getDay();
41084             for(var i = 0; i < this.disabledDays.length; i++) {
41085                 if(day === this.disabledDays[i]){
41086                     this.markInvalid(this.disabledDaysText);
41087                     return false;
41088                 }
41089             }
41090         }
41091         */
41092         var fvalue = this.formatDate(value);
41093         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41094             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41095             return false;
41096         }
41097         */
41098         return true;
41099     },
41100
41101     // private
41102     // Provides logic to override the default TriggerField.validateBlur which just returns true
41103     validateBlur : function(){
41104         return !this.menu || !this.menu.isVisible();
41105     },
41106
41107     /**
41108      * Returns the current date value of the date field.
41109      * @return {Date} The date value
41110      */
41111     getValue : function(){
41112         
41113         
41114         
41115         return  this.hiddenField ?
41116                 this.hiddenField.value :
41117                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41118     },
41119
41120     /**
41121      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41122      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41123      * (the default format used is "m/d/y").
41124      * <br />Usage:
41125      * <pre><code>
41126 //All of these calls set the same date value (May 4, 2006)
41127
41128 //Pass a date object:
41129 var dt = new Date('5/4/06');
41130 monthField.setValue(dt);
41131
41132 //Pass a date string (default format):
41133 monthField.setValue('5/4/06');
41134
41135 //Pass a date string (custom format):
41136 monthField.format = 'Y-m-d';
41137 monthField.setValue('2006-5-4');
41138 </code></pre>
41139      * @param {String/Date} date The date or valid date string
41140      */
41141     setValue : function(date){
41142         Roo.log('month setValue' + date);
41143         // can only be first of month..
41144         
41145         var val = this.parseDate(date);
41146         
41147         if (this.hiddenField) {
41148             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41149         }
41150         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41151         this.value = this.parseDate(date);
41152     },
41153
41154     // private
41155     parseDate : function(value){
41156         if(!value || value instanceof Date){
41157             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41158             return value;
41159         }
41160         var v = Date.parseDate(value, this.format);
41161         if (!v && this.useIso) {
41162             v = Date.parseDate(value, 'Y-m-d');
41163         }
41164         if (v) {
41165             // 
41166             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41167         }
41168         
41169         
41170         if(!v && this.altFormats){
41171             if(!this.altFormatsArray){
41172                 this.altFormatsArray = this.altFormats.split("|");
41173             }
41174             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41175                 v = Date.parseDate(value, this.altFormatsArray[i]);
41176             }
41177         }
41178         return v;
41179     },
41180
41181     // private
41182     formatDate : function(date, fmt){
41183         return (!date || !(date instanceof Date)) ?
41184                date : date.dateFormat(fmt || this.format);
41185     },
41186
41187     // private
41188     menuListeners : {
41189         select: function(m, d){
41190             this.setValue(d);
41191             this.fireEvent('select', this, d);
41192         },
41193         show : function(){ // retain focus styling
41194             this.onFocus();
41195         },
41196         hide : function(){
41197             this.focus.defer(10, this);
41198             var ml = this.menuListeners;
41199             this.menu.un("select", ml.select,  this);
41200             this.menu.un("show", ml.show,  this);
41201             this.menu.un("hide", ml.hide,  this);
41202         }
41203     },
41204     // private
41205     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41206     onTriggerClick : function(){
41207         if(this.disabled){
41208             return;
41209         }
41210         if(this.menu == null){
41211             this.menu = new Roo.menu.DateMenu();
41212            
41213         }
41214         
41215         Roo.apply(this.menu.picker,  {
41216             
41217             showClear: this.allowBlank,
41218             minDate : this.minValue,
41219             maxDate : this.maxValue,
41220             disabledDatesRE : this.ddMatch,
41221             disabledDatesText : this.disabledDatesText,
41222             
41223             format : this.useIso ? 'Y-m-d' : this.format,
41224             minText : String.format(this.minText, this.formatDate(this.minValue)),
41225             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41226             
41227         });
41228          this.menu.on(Roo.apply({}, this.menuListeners, {
41229             scope:this
41230         }));
41231        
41232         
41233         var m = this.menu;
41234         var p = m.picker;
41235         
41236         // hide month picker get's called when we called by 'before hide';
41237         
41238         var ignorehide = true;
41239         p.hideMonthPicker  = function(disableAnim){
41240             if (ignorehide) {
41241                 return;
41242             }
41243              if(this.monthPicker){
41244                 Roo.log("hideMonthPicker called");
41245                 if(disableAnim === true){
41246                     this.monthPicker.hide();
41247                 }else{
41248                     this.monthPicker.slideOut('t', {duration:.2});
41249                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41250                     p.fireEvent("select", this, this.value);
41251                     m.hide();
41252                 }
41253             }
41254         }
41255         
41256         Roo.log('picker set value');
41257         Roo.log(this.getValue());
41258         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41259         m.show(this.el, 'tl-bl?');
41260         ignorehide  = false;
41261         // this will trigger hideMonthPicker..
41262         
41263         
41264         // hidden the day picker
41265         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41266         
41267         
41268         
41269       
41270         
41271         p.showMonthPicker.defer(100, p);
41272     
41273         
41274        
41275     },
41276
41277     beforeBlur : function(){
41278         var v = this.parseDate(this.getRawValue());
41279         if(v){
41280             this.setValue(v);
41281         }
41282     }
41283
41284     /** @cfg {Boolean} grow @hide */
41285     /** @cfg {Number} growMin @hide */
41286     /** @cfg {Number} growMax @hide */
41287     /**
41288      * @hide
41289      * @method autoSize
41290      */
41291 });/*
41292  * Based on:
41293  * Ext JS Library 1.1.1
41294  * Copyright(c) 2006-2007, Ext JS, LLC.
41295  *
41296  * Originally Released Under LGPL - original licence link has changed is not relivant.
41297  *
41298  * Fork - LGPL
41299  * <script type="text/javascript">
41300  */
41301  
41302
41303 /**
41304  * @class Roo.form.ComboBox
41305  * @extends Roo.form.TriggerField
41306  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41307  * @constructor
41308  * Create a new ComboBox.
41309  * @param {Object} config Configuration options
41310  */
41311 Roo.form.ComboBox = function(config){
41312     Roo.form.ComboBox.superclass.constructor.call(this, config);
41313     this.addEvents({
41314         /**
41315          * @event expand
41316          * Fires when the dropdown list is expanded
41317              * @param {Roo.form.ComboBox} combo This combo box
41318              */
41319         'expand' : true,
41320         /**
41321          * @event collapse
41322          * Fires when the dropdown list is collapsed
41323              * @param {Roo.form.ComboBox} combo This combo box
41324              */
41325         'collapse' : true,
41326         /**
41327          * @event beforeselect
41328          * Fires before a list item is selected. Return false to cancel the selection.
41329              * @param {Roo.form.ComboBox} combo This combo box
41330              * @param {Roo.data.Record} record The data record returned from the underlying store
41331              * @param {Number} index The index of the selected item in the dropdown list
41332              */
41333         'beforeselect' : true,
41334         /**
41335          * @event select
41336          * Fires when a list item is selected
41337              * @param {Roo.form.ComboBox} combo This combo box
41338              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41339              * @param {Number} index The index of the selected item in the dropdown list
41340              */
41341         'select' : true,
41342         /**
41343          * @event beforequery
41344          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41345          * The event object passed has these properties:
41346              * @param {Roo.form.ComboBox} combo This combo box
41347              * @param {String} query The query
41348              * @param {Boolean} forceAll true to force "all" query
41349              * @param {Boolean} cancel true to cancel the query
41350              * @param {Object} e The query event object
41351              */
41352         'beforequery': true,
41353          /**
41354          * @event add
41355          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41356              * @param {Roo.form.ComboBox} combo This combo box
41357              */
41358         'add' : true,
41359         /**
41360          * @event edit
41361          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41362              * @param {Roo.form.ComboBox} combo This combo box
41363              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41364              */
41365         'edit' : true
41366         
41367         
41368     });
41369     if(this.transform){
41370         this.allowDomMove = false;
41371         var s = Roo.getDom(this.transform);
41372         if(!this.hiddenName){
41373             this.hiddenName = s.name;
41374         }
41375         if(!this.store){
41376             this.mode = 'local';
41377             var d = [], opts = s.options;
41378             for(var i = 0, len = opts.length;i < len; i++){
41379                 var o = opts[i];
41380                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41381                 if(o.selected) {
41382                     this.value = value;
41383                 }
41384                 d.push([value, o.text]);
41385             }
41386             this.store = new Roo.data.SimpleStore({
41387                 'id': 0,
41388                 fields: ['value', 'text'],
41389                 data : d
41390             });
41391             this.valueField = 'value';
41392             this.displayField = 'text';
41393         }
41394         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41395         if(!this.lazyRender){
41396             this.target = true;
41397             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41398             s.parentNode.removeChild(s); // remove it
41399             this.render(this.el.parentNode);
41400         }else{
41401             s.parentNode.removeChild(s); // remove it
41402         }
41403
41404     }
41405     if (this.store) {
41406         this.store = Roo.factory(this.store, Roo.data);
41407     }
41408     
41409     this.selectedIndex = -1;
41410     if(this.mode == 'local'){
41411         if(config.queryDelay === undefined){
41412             this.queryDelay = 10;
41413         }
41414         if(config.minChars === undefined){
41415             this.minChars = 0;
41416         }
41417     }
41418 };
41419
41420 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41421     /**
41422      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41423      */
41424     /**
41425      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41426      * rendering into an Roo.Editor, defaults to false)
41427      */
41428     /**
41429      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41430      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41431      */
41432     /**
41433      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41434      */
41435     /**
41436      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41437      * the dropdown list (defaults to undefined, with no header element)
41438      */
41439
41440      /**
41441      * @cfg {String/Roo.Template} tpl The template to use to render the output
41442      */
41443      
41444     // private
41445     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41446     /**
41447      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41448      */
41449     listWidth: undefined,
41450     /**
41451      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41452      * mode = 'remote' or 'text' if mode = 'local')
41453      */
41454     displayField: undefined,
41455     /**
41456      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41457      * mode = 'remote' or 'value' if mode = 'local'). 
41458      * Note: use of a valueField requires the user make a selection
41459      * in order for a value to be mapped.
41460      */
41461     valueField: undefined,
41462     
41463     
41464     /**
41465      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41466      * field's data value (defaults to the underlying DOM element's name)
41467      */
41468     hiddenName: undefined,
41469     /**
41470      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41471      */
41472     listClass: '',
41473     /**
41474      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41475      */
41476     selectedClass: 'x-combo-selected',
41477     /**
41478      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41479      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41480      * which displays a downward arrow icon).
41481      */
41482     triggerClass : 'x-form-arrow-trigger',
41483     /**
41484      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41485      */
41486     shadow:'sides',
41487     /**
41488      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41489      * anchor positions (defaults to 'tl-bl')
41490      */
41491     listAlign: 'tl-bl?',
41492     /**
41493      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41494      */
41495     maxHeight: 300,
41496     /**
41497      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41498      * query specified by the allQuery config option (defaults to 'query')
41499      */
41500     triggerAction: 'query',
41501     /**
41502      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41503      * (defaults to 4, does not apply if editable = false)
41504      */
41505     minChars : 4,
41506     /**
41507      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41508      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41509      */
41510     typeAhead: false,
41511     /**
41512      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41513      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41514      */
41515     queryDelay: 500,
41516     /**
41517      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41518      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41519      */
41520     pageSize: 0,
41521     /**
41522      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41523      * when editable = true (defaults to false)
41524      */
41525     selectOnFocus:false,
41526     /**
41527      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41528      */
41529     queryParam: 'query',
41530     /**
41531      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41532      * when mode = 'remote' (defaults to 'Loading...')
41533      */
41534     loadingText: 'Loading...',
41535     /**
41536      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41537      */
41538     resizable: false,
41539     /**
41540      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41541      */
41542     handleHeight : 8,
41543     /**
41544      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41545      * traditional select (defaults to true)
41546      */
41547     editable: true,
41548     /**
41549      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41550      */
41551     allQuery: '',
41552     /**
41553      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41554      */
41555     mode: 'remote',
41556     /**
41557      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41558      * listWidth has a higher value)
41559      */
41560     minListWidth : 70,
41561     /**
41562      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41563      * allow the user to set arbitrary text into the field (defaults to false)
41564      */
41565     forceSelection:false,
41566     /**
41567      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41568      * if typeAhead = true (defaults to 250)
41569      */
41570     typeAheadDelay : 250,
41571     /**
41572      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41573      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41574      */
41575     valueNotFoundText : undefined,
41576     /**
41577      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41578      */
41579     blockFocus : false,
41580     
41581     /**
41582      * @cfg {Boolean} disableClear Disable showing of clear button.
41583      */
41584     disableClear : false,
41585     /**
41586      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41587      */
41588     alwaysQuery : false,
41589     
41590     //private
41591     addicon : false,
41592     editicon: false,
41593     
41594     // element that contains real text value.. (when hidden is used..)
41595      
41596     // private
41597     onRender : function(ct, position)
41598     {
41599         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41600         
41601         if(this.hiddenName){
41602             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41603                     'before', true);
41604             this.hiddenField.value =
41605                 this.hiddenValue !== undefined ? this.hiddenValue :
41606                 this.value !== undefined ? this.value : '';
41607
41608             // prevent input submission
41609             this.el.dom.removeAttribute('name');
41610              
41611              
41612         }
41613         
41614         if(Roo.isGecko){
41615             this.el.dom.setAttribute('autocomplete', 'off');
41616         }
41617
41618         var cls = 'x-combo-list';
41619
41620         this.list = new Roo.Layer({
41621             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41622         });
41623
41624         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41625         this.list.setWidth(lw);
41626         this.list.swallowEvent('mousewheel');
41627         this.assetHeight = 0;
41628
41629         if(this.title){
41630             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41631             this.assetHeight += this.header.getHeight();
41632         }
41633
41634         this.innerList = this.list.createChild({cls:cls+'-inner'});
41635         this.innerList.on('mouseover', this.onViewOver, this);
41636         this.innerList.on('mousemove', this.onViewMove, this);
41637         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41638         
41639         if(this.allowBlank && !this.pageSize && !this.disableClear){
41640             this.footer = this.list.createChild({cls:cls+'-ft'});
41641             this.pageTb = new Roo.Toolbar(this.footer);
41642            
41643         }
41644         if(this.pageSize){
41645             this.footer = this.list.createChild({cls:cls+'-ft'});
41646             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41647                     {pageSize: this.pageSize});
41648             
41649         }
41650         
41651         if (this.pageTb && this.allowBlank && !this.disableClear) {
41652             var _this = this;
41653             this.pageTb.add(new Roo.Toolbar.Fill(), {
41654                 cls: 'x-btn-icon x-btn-clear',
41655                 text: '&#160;',
41656                 handler: function()
41657                 {
41658                     _this.collapse();
41659                     _this.clearValue();
41660                     _this.onSelect(false, -1);
41661                 }
41662             });
41663         }
41664         if (this.footer) {
41665             this.assetHeight += this.footer.getHeight();
41666         }
41667         
41668
41669         if(!this.tpl){
41670             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41671         }
41672
41673         this.view = new Roo.View(this.innerList, this.tpl, {
41674             singleSelect:true,
41675             store: this.store,
41676             selectedClass: this.selectedClass
41677         });
41678
41679         this.view.on('click', this.onViewClick, this);
41680
41681         this.store.on('beforeload', this.onBeforeLoad, this);
41682         this.store.on('load', this.onLoad, this);
41683         this.store.on('loadexception', this.onLoadException, this);
41684
41685         if(this.resizable){
41686             this.resizer = new Roo.Resizable(this.list,  {
41687                pinned:true, handles:'se'
41688             });
41689             this.resizer.on('resize', function(r, w, h){
41690                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41691                 this.listWidth = w;
41692                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41693                 this.restrictHeight();
41694             }, this);
41695             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41696         }
41697         if(!this.editable){
41698             this.editable = true;
41699             this.setEditable(false);
41700         }  
41701         
41702         
41703         if (typeof(this.events.add.listeners) != 'undefined') {
41704             
41705             this.addicon = this.wrap.createChild(
41706                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41707        
41708             this.addicon.on('click', function(e) {
41709                 this.fireEvent('add', this);
41710             }, this);
41711         }
41712         if (typeof(this.events.edit.listeners) != 'undefined') {
41713             
41714             this.editicon = this.wrap.createChild(
41715                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41716             if (this.addicon) {
41717                 this.editicon.setStyle('margin-left', '40px');
41718             }
41719             this.editicon.on('click', function(e) {
41720                 
41721                 // we fire even  if inothing is selected..
41722                 this.fireEvent('edit', this, this.lastData );
41723                 
41724             }, this);
41725         }
41726         
41727         
41728         
41729     },
41730
41731     // private
41732     initEvents : function(){
41733         Roo.form.ComboBox.superclass.initEvents.call(this);
41734
41735         this.keyNav = new Roo.KeyNav(this.el, {
41736             "up" : function(e){
41737                 this.inKeyMode = true;
41738                 this.selectPrev();
41739             },
41740
41741             "down" : function(e){
41742                 if(!this.isExpanded()){
41743                     this.onTriggerClick();
41744                 }else{
41745                     this.inKeyMode = true;
41746                     this.selectNext();
41747                 }
41748             },
41749
41750             "enter" : function(e){
41751                 this.onViewClick();
41752                 //return true;
41753             },
41754
41755             "esc" : function(e){
41756                 this.collapse();
41757             },
41758
41759             "tab" : function(e){
41760                 this.onViewClick(false);
41761                 this.fireEvent("specialkey", this, e);
41762                 return true;
41763             },
41764
41765             scope : this,
41766
41767             doRelay : function(foo, bar, hname){
41768                 if(hname == 'down' || this.scope.isExpanded()){
41769                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41770                 }
41771                 return true;
41772             },
41773
41774             forceKeyDown: true
41775         });
41776         this.queryDelay = Math.max(this.queryDelay || 10,
41777                 this.mode == 'local' ? 10 : 250);
41778         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41779         if(this.typeAhead){
41780             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41781         }
41782         if(this.editable !== false){
41783             this.el.on("keyup", this.onKeyUp, this);
41784         }
41785         if(this.forceSelection){
41786             this.on('blur', this.doForce, this);
41787         }
41788     },
41789
41790     onDestroy : function(){
41791         if(this.view){
41792             this.view.setStore(null);
41793             this.view.el.removeAllListeners();
41794             this.view.el.remove();
41795             this.view.purgeListeners();
41796         }
41797         if(this.list){
41798             this.list.destroy();
41799         }
41800         if(this.store){
41801             this.store.un('beforeload', this.onBeforeLoad, this);
41802             this.store.un('load', this.onLoad, this);
41803             this.store.un('loadexception', this.onLoadException, this);
41804         }
41805         Roo.form.ComboBox.superclass.onDestroy.call(this);
41806     },
41807
41808     // private
41809     fireKey : function(e){
41810         if(e.isNavKeyPress() && !this.list.isVisible()){
41811             this.fireEvent("specialkey", this, e);
41812         }
41813     },
41814
41815     // private
41816     onResize: function(w, h){
41817         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41818         
41819         if(typeof w != 'number'){
41820             // we do not handle it!?!?
41821             return;
41822         }
41823         var tw = this.trigger.getWidth();
41824         tw += this.addicon ? this.addicon.getWidth() : 0;
41825         tw += this.editicon ? this.editicon.getWidth() : 0;
41826         var x = w - tw;
41827         this.el.setWidth( this.adjustWidth('input', x));
41828             
41829         this.trigger.setStyle('left', x+'px');
41830         
41831         if(this.list && this.listWidth === undefined){
41832             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41833             this.list.setWidth(lw);
41834             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41835         }
41836         
41837     
41838         
41839     },
41840
41841     /**
41842      * Allow or prevent the user from directly editing the field text.  If false is passed,
41843      * the user will only be able to select from the items defined in the dropdown list.  This method
41844      * is the runtime equivalent of setting the 'editable' config option at config time.
41845      * @param {Boolean} value True to allow the user to directly edit the field text
41846      */
41847     setEditable : function(value){
41848         if(value == this.editable){
41849             return;
41850         }
41851         this.editable = value;
41852         if(!value){
41853             this.el.dom.setAttribute('readOnly', true);
41854             this.el.on('mousedown', this.onTriggerClick,  this);
41855             this.el.addClass('x-combo-noedit');
41856         }else{
41857             this.el.dom.setAttribute('readOnly', false);
41858             this.el.un('mousedown', this.onTriggerClick,  this);
41859             this.el.removeClass('x-combo-noedit');
41860         }
41861     },
41862
41863     // private
41864     onBeforeLoad : function(){
41865         if(!this.hasFocus){
41866             return;
41867         }
41868         this.innerList.update(this.loadingText ?
41869                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41870         this.restrictHeight();
41871         this.selectedIndex = -1;
41872     },
41873
41874     // private
41875     onLoad : function(){
41876         if(!this.hasFocus){
41877             return;
41878         }
41879         if(this.store.getCount() > 0){
41880             this.expand();
41881             this.restrictHeight();
41882             if(this.lastQuery == this.allQuery){
41883                 if(this.editable){
41884                     this.el.dom.select();
41885                 }
41886                 if(!this.selectByValue(this.value, true)){
41887                     this.select(0, true);
41888                 }
41889             }else{
41890                 this.selectNext();
41891                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41892                     this.taTask.delay(this.typeAheadDelay);
41893                 }
41894             }
41895         }else{
41896             this.onEmptyResults();
41897         }
41898         //this.el.focus();
41899     },
41900     // private
41901     onLoadException : function()
41902     {
41903         this.collapse();
41904         Roo.log(this.store.reader.jsonData);
41905         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41906             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41907         }
41908         
41909         
41910     },
41911     // private
41912     onTypeAhead : function(){
41913         if(this.store.getCount() > 0){
41914             var r = this.store.getAt(0);
41915             var newValue = r.data[this.displayField];
41916             var len = newValue.length;
41917             var selStart = this.getRawValue().length;
41918             if(selStart != len){
41919                 this.setRawValue(newValue);
41920                 this.selectText(selStart, newValue.length);
41921             }
41922         }
41923     },
41924
41925     // private
41926     onSelect : function(record, index){
41927         if(this.fireEvent('beforeselect', this, record, index) !== false){
41928             this.setFromData(index > -1 ? record.data : false);
41929             this.collapse();
41930             this.fireEvent('select', this, record, index);
41931         }
41932     },
41933
41934     /**
41935      * Returns the currently selected field value or empty string if no value is set.
41936      * @return {String} value The selected value
41937      */
41938     getValue : function(){
41939         if(this.valueField){
41940             return typeof this.value != 'undefined' ? this.value : '';
41941         }
41942         return Roo.form.ComboBox.superclass.getValue.call(this);
41943     },
41944
41945     /**
41946      * Clears any text/value currently set in the field
41947      */
41948     clearValue : function(){
41949         if(this.hiddenField){
41950             this.hiddenField.value = '';
41951         }
41952         this.value = '';
41953         this.setRawValue('');
41954         this.lastSelectionText = '';
41955         
41956     },
41957
41958     /**
41959      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41960      * will be displayed in the field.  If the value does not match the data value of an existing item,
41961      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41962      * Otherwise the field will be blank (although the value will still be set).
41963      * @param {String} value The value to match
41964      */
41965     setValue : function(v){
41966         var text = v;
41967         if(this.valueField){
41968             var r = this.findRecord(this.valueField, v);
41969             if(r){
41970                 text = r.data[this.displayField];
41971             }else if(this.valueNotFoundText !== undefined){
41972                 text = this.valueNotFoundText;
41973             }
41974         }
41975         this.lastSelectionText = text;
41976         if(this.hiddenField){
41977             this.hiddenField.value = v;
41978         }
41979         Roo.form.ComboBox.superclass.setValue.call(this, text);
41980         this.value = v;
41981     },
41982     /**
41983      * @property {Object} the last set data for the element
41984      */
41985     
41986     lastData : false,
41987     /**
41988      * Sets the value of the field based on a object which is related to the record format for the store.
41989      * @param {Object} value the value to set as. or false on reset?
41990      */
41991     setFromData : function(o){
41992         var dv = ''; // display value
41993         var vv = ''; // value value..
41994         this.lastData = o;
41995         if (this.displayField) {
41996             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41997         } else {
41998             // this is an error condition!!!
41999             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
42000         }
42001         
42002         if(this.valueField){
42003             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
42004         }
42005         if(this.hiddenField){
42006             this.hiddenField.value = vv;
42007             
42008             this.lastSelectionText = dv;
42009             Roo.form.ComboBox.superclass.setValue.call(this, dv);
42010             this.value = vv;
42011             return;
42012         }
42013         // no hidden field.. - we store the value in 'value', but still display
42014         // display field!!!!
42015         this.lastSelectionText = dv;
42016         Roo.form.ComboBox.superclass.setValue.call(this, dv);
42017         this.value = vv;
42018         
42019         
42020     },
42021     // private
42022     reset : function(){
42023         // overridden so that last data is reset..
42024         this.setValue(this.resetValue);
42025         this.originalValue = this.getValue();
42026         this.clearInvalid();
42027         this.lastData = false;
42028         if (this.view) {
42029             this.view.clearSelections();
42030         }
42031     },
42032     // private
42033     findRecord : function(prop, value){
42034         var record;
42035         if(this.store.getCount() > 0){
42036             this.store.each(function(r){
42037                 if(r.data[prop] == value){
42038                     record = r;
42039                     return false;
42040                 }
42041                 return true;
42042             });
42043         }
42044         return record;
42045     },
42046     
42047     getName: function()
42048     {
42049         // returns hidden if it's set..
42050         if (!this.rendered) {return ''};
42051         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42052         
42053     },
42054     // private
42055     onViewMove : function(e, t){
42056         this.inKeyMode = false;
42057     },
42058
42059     // private
42060     onViewOver : function(e, t){
42061         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
42062             return;
42063         }
42064         var item = this.view.findItemFromChild(t);
42065         if(item){
42066             var index = this.view.indexOf(item);
42067             this.select(index, false);
42068         }
42069     },
42070
42071     // private
42072     onViewClick : function(doFocus)
42073     {
42074         var index = this.view.getSelectedIndexes()[0];
42075         var r = this.store.getAt(index);
42076         if(r){
42077             this.onSelect(r, index);
42078         }
42079         if(doFocus !== false && !this.blockFocus){
42080             this.el.focus();
42081         }
42082     },
42083
42084     // private
42085     restrictHeight : function(){
42086         this.innerList.dom.style.height = '';
42087         var inner = this.innerList.dom;
42088         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42089         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42090         this.list.beginUpdate();
42091         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42092         this.list.alignTo(this.el, this.listAlign);
42093         this.list.endUpdate();
42094     },
42095
42096     // private
42097     onEmptyResults : function(){
42098         this.collapse();
42099     },
42100
42101     /**
42102      * Returns true if the dropdown list is expanded, else false.
42103      */
42104     isExpanded : function(){
42105         return this.list.isVisible();
42106     },
42107
42108     /**
42109      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42110      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42111      * @param {String} value The data value of the item to select
42112      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42113      * selected item if it is not currently in view (defaults to true)
42114      * @return {Boolean} True if the value matched an item in the list, else false
42115      */
42116     selectByValue : function(v, scrollIntoView){
42117         if(v !== undefined && v !== null){
42118             var r = this.findRecord(this.valueField || this.displayField, v);
42119             if(r){
42120                 this.select(this.store.indexOf(r), scrollIntoView);
42121                 return true;
42122             }
42123         }
42124         return false;
42125     },
42126
42127     /**
42128      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42129      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42130      * @param {Number} index The zero-based index of the list item to select
42131      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42132      * selected item if it is not currently in view (defaults to true)
42133      */
42134     select : function(index, scrollIntoView){
42135         this.selectedIndex = index;
42136         this.view.select(index);
42137         if(scrollIntoView !== false){
42138             var el = this.view.getNode(index);
42139             if(el){
42140                 this.innerList.scrollChildIntoView(el, false);
42141             }
42142         }
42143     },
42144
42145     // private
42146     selectNext : function(){
42147         var ct = this.store.getCount();
42148         if(ct > 0){
42149             if(this.selectedIndex == -1){
42150                 this.select(0);
42151             }else if(this.selectedIndex < ct-1){
42152                 this.select(this.selectedIndex+1);
42153             }
42154         }
42155     },
42156
42157     // private
42158     selectPrev : function(){
42159         var ct = this.store.getCount();
42160         if(ct > 0){
42161             if(this.selectedIndex == -1){
42162                 this.select(0);
42163             }else if(this.selectedIndex != 0){
42164                 this.select(this.selectedIndex-1);
42165             }
42166         }
42167     },
42168
42169     // private
42170     onKeyUp : function(e){
42171         if(this.editable !== false && !e.isSpecialKey()){
42172             this.lastKey = e.getKey();
42173             this.dqTask.delay(this.queryDelay);
42174         }
42175     },
42176
42177     // private
42178     validateBlur : function(){
42179         return !this.list || !this.list.isVisible();   
42180     },
42181
42182     // private
42183     initQuery : function(){
42184         this.doQuery(this.getRawValue());
42185     },
42186
42187     // private
42188     doForce : function(){
42189         if(this.el.dom.value.length > 0){
42190             this.el.dom.value =
42191                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42192              
42193         }
42194     },
42195
42196     /**
42197      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42198      * query allowing the query action to be canceled if needed.
42199      * @param {String} query The SQL query to execute
42200      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42201      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42202      * saved in the current store (defaults to false)
42203      */
42204     doQuery : function(q, forceAll){
42205         if(q === undefined || q === null){
42206             q = '';
42207         }
42208         var qe = {
42209             query: q,
42210             forceAll: forceAll,
42211             combo: this,
42212             cancel:false
42213         };
42214         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42215             return false;
42216         }
42217         q = qe.query;
42218         forceAll = qe.forceAll;
42219         if(forceAll === true || (q.length >= this.minChars)){
42220             if(this.lastQuery != q || this.alwaysQuery){
42221                 this.lastQuery = q;
42222                 if(this.mode == 'local'){
42223                     this.selectedIndex = -1;
42224                     if(forceAll){
42225                         this.store.clearFilter();
42226                     }else{
42227                         this.store.filter(this.displayField, q);
42228                     }
42229                     this.onLoad();
42230                 }else{
42231                     this.store.baseParams[this.queryParam] = q;
42232                     this.store.load({
42233                         params: this.getParams(q)
42234                     });
42235                     this.expand();
42236                 }
42237             }else{
42238                 this.selectedIndex = -1;
42239                 this.onLoad();   
42240             }
42241         }
42242     },
42243
42244     // private
42245     getParams : function(q){
42246         var p = {};
42247         //p[this.queryParam] = q;
42248         if(this.pageSize){
42249             p.start = 0;
42250             p.limit = this.pageSize;
42251         }
42252         return p;
42253     },
42254
42255     /**
42256      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42257      */
42258     collapse : function(){
42259         if(!this.isExpanded()){
42260             return;
42261         }
42262         this.list.hide();
42263         Roo.get(document).un('mousedown', this.collapseIf, this);
42264         Roo.get(document).un('mousewheel', this.collapseIf, this);
42265         if (!this.editable) {
42266             Roo.get(document).un('keydown', this.listKeyPress, this);
42267         }
42268         this.fireEvent('collapse', this);
42269     },
42270
42271     // private
42272     collapseIf : function(e){
42273         if(!e.within(this.wrap) && !e.within(this.list)){
42274             this.collapse();
42275         }
42276     },
42277
42278     /**
42279      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42280      */
42281     expand : function(){
42282         if(this.isExpanded() || !this.hasFocus){
42283             return;
42284         }
42285         this.list.alignTo(this.el, this.listAlign);
42286         this.list.show();
42287         Roo.get(document).on('mousedown', this.collapseIf, this);
42288         Roo.get(document).on('mousewheel', this.collapseIf, this);
42289         if (!this.editable) {
42290             Roo.get(document).on('keydown', this.listKeyPress, this);
42291         }
42292         
42293         this.fireEvent('expand', this);
42294     },
42295
42296     // private
42297     // Implements the default empty TriggerField.onTriggerClick function
42298     onTriggerClick : function(){
42299         if(this.disabled){
42300             return;
42301         }
42302         if(this.isExpanded()){
42303             this.collapse();
42304             if (!this.blockFocus) {
42305                 this.el.focus();
42306             }
42307             
42308         }else {
42309             this.hasFocus = true;
42310             if(this.triggerAction == 'all') {
42311                 this.doQuery(this.allQuery, true);
42312             } else {
42313                 this.doQuery(this.getRawValue());
42314             }
42315             if (!this.blockFocus) {
42316                 this.el.focus();
42317             }
42318         }
42319     },
42320     listKeyPress : function(e)
42321     {
42322         //Roo.log('listkeypress');
42323         // scroll to first matching element based on key pres..
42324         if (e.isSpecialKey()) {
42325             return false;
42326         }
42327         var k = String.fromCharCode(e.getKey()).toUpperCase();
42328         //Roo.log(k);
42329         var match  = false;
42330         var csel = this.view.getSelectedNodes();
42331         var cselitem = false;
42332         if (csel.length) {
42333             var ix = this.view.indexOf(csel[0]);
42334             cselitem  = this.store.getAt(ix);
42335             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42336                 cselitem = false;
42337             }
42338             
42339         }
42340         
42341         this.store.each(function(v) { 
42342             if (cselitem) {
42343                 // start at existing selection.
42344                 if (cselitem.id == v.id) {
42345                     cselitem = false;
42346                 }
42347                 return;
42348             }
42349                 
42350             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42351                 match = this.store.indexOf(v);
42352                 return false;
42353             }
42354         }, this);
42355         
42356         if (match === false) {
42357             return true; // no more action?
42358         }
42359         // scroll to?
42360         this.view.select(match);
42361         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42362         sn.scrollIntoView(sn.dom.parentNode, false);
42363     } 
42364
42365     /** 
42366     * @cfg {Boolean} grow 
42367     * @hide 
42368     */
42369     /** 
42370     * @cfg {Number} growMin 
42371     * @hide 
42372     */
42373     /** 
42374     * @cfg {Number} growMax 
42375     * @hide 
42376     */
42377     /**
42378      * @hide
42379      * @method autoSize
42380      */
42381 });/*
42382  * Copyright(c) 2010-2012, Roo J Solutions Limited
42383  *
42384  * Licence LGPL
42385  *
42386  */
42387
42388 /**
42389  * @class Roo.form.ComboBoxArray
42390  * @extends Roo.form.TextField
42391  * A facebook style adder... for lists of email / people / countries  etc...
42392  * pick multiple items from a combo box, and shows each one.
42393  *
42394  *  Fred [x]  Brian [x]  [Pick another |v]
42395  *
42396  *
42397  *  For this to work: it needs various extra information
42398  *    - normal combo problay has
42399  *      name, hiddenName
42400  *    + displayField, valueField
42401  *
42402  *    For our purpose...
42403  *
42404  *
42405  *   If we change from 'extends' to wrapping...
42406  *   
42407  *  
42408  *
42409  
42410  
42411  * @constructor
42412  * Create a new ComboBoxArray.
42413  * @param {Object} config Configuration options
42414  */
42415  
42416
42417 Roo.form.ComboBoxArray = function(config)
42418 {
42419     this.addEvents({
42420         /**
42421          * @event beforeremove
42422          * Fires before remove the value from the list
42423              * @param {Roo.form.ComboBoxArray} _self This combo box array
42424              * @param {Roo.form.ComboBoxArray.Item} item removed item
42425              */
42426         'beforeremove' : true,
42427         /**
42428          * @event remove
42429          * Fires when remove the value from the list
42430              * @param {Roo.form.ComboBoxArray} _self This combo box array
42431              * @param {Roo.form.ComboBoxArray.Item} item removed item
42432              */
42433         'remove' : true
42434         
42435         
42436     });
42437     
42438     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42439     
42440     this.items = new Roo.util.MixedCollection(false);
42441     
42442     // construct the child combo...
42443     
42444     
42445     
42446     
42447    
42448     
42449 }
42450
42451  
42452 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42453
42454     /**
42455      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42456      */
42457     
42458     lastData : false,
42459     
42460     // behavies liek a hiddne field
42461     inputType:      'hidden',
42462     /**
42463      * @cfg {Number} width The width of the box that displays the selected element
42464      */ 
42465     width:          300,
42466
42467     
42468     
42469     /**
42470      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42471      */
42472     name : false,
42473     /**
42474      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42475      */
42476     hiddenName : false,
42477       /**
42478      * @cfg {String} seperator    The value seperator normally ',' 
42479      */
42480     seperator : ',',
42481     
42482     // private the array of items that are displayed..
42483     items  : false,
42484     // private - the hidden field el.
42485     hiddenEl : false,
42486     // private - the filed el..
42487     el : false,
42488     
42489     //validateValue : function() { return true; }, // all values are ok!
42490     //onAddClick: function() { },
42491     
42492     onRender : function(ct, position) 
42493     {
42494         
42495         // create the standard hidden element
42496         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42497         
42498         
42499         // give fake names to child combo;
42500         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42501         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42502         
42503         this.combo = Roo.factory(this.combo, Roo.form);
42504         this.combo.onRender(ct, position);
42505         if (typeof(this.combo.width) != 'undefined') {
42506             this.combo.onResize(this.combo.width,0);
42507         }
42508         
42509         this.combo.initEvents();
42510         
42511         // assigned so form know we need to do this..
42512         this.store          = this.combo.store;
42513         this.valueField     = this.combo.valueField;
42514         this.displayField   = this.combo.displayField ;
42515         
42516         
42517         this.combo.wrap.addClass('x-cbarray-grp');
42518         
42519         var cbwrap = this.combo.wrap.createChild(
42520             {tag: 'div', cls: 'x-cbarray-cb'},
42521             this.combo.el.dom
42522         );
42523         
42524              
42525         this.hiddenEl = this.combo.wrap.createChild({
42526             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42527         });
42528         this.el = this.combo.wrap.createChild({
42529             tag: 'input',  type:'hidden' , name: this.name, value : ''
42530         });
42531          //   this.el.dom.removeAttribute("name");
42532         
42533         
42534         this.outerWrap = this.combo.wrap;
42535         this.wrap = cbwrap;
42536         
42537         this.outerWrap.setWidth(this.width);
42538         this.outerWrap.dom.removeChild(this.el.dom);
42539         
42540         this.wrap.dom.appendChild(this.el.dom);
42541         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42542         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42543         
42544         this.combo.trigger.setStyle('position','relative');
42545         this.combo.trigger.setStyle('left', '0px');
42546         this.combo.trigger.setStyle('top', '2px');
42547         
42548         this.combo.el.setStyle('vertical-align', 'text-bottom');
42549         
42550         //this.trigger.setStyle('vertical-align', 'top');
42551         
42552         // this should use the code from combo really... on('add' ....)
42553         if (this.adder) {
42554             
42555         
42556             this.adder = this.outerWrap.createChild(
42557                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42558             var _t = this;
42559             this.adder.on('click', function(e) {
42560                 _t.fireEvent('adderclick', this, e);
42561             }, _t);
42562         }
42563         //var _t = this;
42564         //this.adder.on('click', this.onAddClick, _t);
42565         
42566         
42567         this.combo.on('select', function(cb, rec, ix) {
42568             this.addItem(rec.data);
42569             
42570             cb.setValue('');
42571             cb.el.dom.value = '';
42572             //cb.lastData = rec.data;
42573             // add to list
42574             
42575         }, this);
42576         
42577         
42578     },
42579     
42580     
42581     getName: function()
42582     {
42583         // returns hidden if it's set..
42584         if (!this.rendered) {return ''};
42585         return  this.hiddenName ? this.hiddenName : this.name;
42586         
42587     },
42588     
42589     
42590     onResize: function(w, h){
42591         
42592         return;
42593         // not sure if this is needed..
42594         //this.combo.onResize(w,h);
42595         
42596         if(typeof w != 'number'){
42597             // we do not handle it!?!?
42598             return;
42599         }
42600         var tw = this.combo.trigger.getWidth();
42601         tw += this.addicon ? this.addicon.getWidth() : 0;
42602         tw += this.editicon ? this.editicon.getWidth() : 0;
42603         var x = w - tw;
42604         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42605             
42606         this.combo.trigger.setStyle('left', '0px');
42607         
42608         if(this.list && this.listWidth === undefined){
42609             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42610             this.list.setWidth(lw);
42611             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42612         }
42613         
42614     
42615         
42616     },
42617     
42618     addItem: function(rec)
42619     {
42620         var valueField = this.combo.valueField;
42621         var displayField = this.combo.displayField;
42622         
42623         if (this.items.indexOfKey(rec[valueField]) > -1) {
42624             //console.log("GOT " + rec.data.id);
42625             return;
42626         }
42627         
42628         var x = new Roo.form.ComboBoxArray.Item({
42629             //id : rec[this.idField],
42630             data : rec,
42631             displayField : displayField ,
42632             tipField : displayField ,
42633             cb : this
42634         });
42635         // use the 
42636         this.items.add(rec[valueField],x);
42637         // add it before the element..
42638         this.updateHiddenEl();
42639         x.render(this.outerWrap, this.wrap.dom);
42640         // add the image handler..
42641     },
42642     
42643     updateHiddenEl : function()
42644     {
42645         this.validate();
42646         if (!this.hiddenEl) {
42647             return;
42648         }
42649         var ar = [];
42650         var idField = this.combo.valueField;
42651         
42652         this.items.each(function(f) {
42653             ar.push(f.data[idField]);
42654         });
42655         this.hiddenEl.dom.value = ar.join(this.seperator);
42656         this.validate();
42657     },
42658     
42659     reset : function()
42660     {
42661         this.items.clear();
42662         
42663         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42664            el.remove();
42665         });
42666         
42667         this.el.dom.value = '';
42668         if (this.hiddenEl) {
42669             this.hiddenEl.dom.value = '';
42670         }
42671         
42672     },
42673     getValue: function()
42674     {
42675         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42676     },
42677     setValue: function(v) // not a valid action - must use addItems..
42678     {
42679         
42680         this.reset();
42681          
42682         if (this.store.isLocal && (typeof(v) == 'string')) {
42683             // then we can use the store to find the values..
42684             // comma seperated at present.. this needs to allow JSON based encoding..
42685             this.hiddenEl.value  = v;
42686             var v_ar = [];
42687             Roo.each(v.split(this.seperator), function(k) {
42688                 Roo.log("CHECK " + this.valueField + ',' + k);
42689                 var li = this.store.query(this.valueField, k);
42690                 if (!li.length) {
42691                     return;
42692                 }
42693                 var add = {};
42694                 add[this.valueField] = k;
42695                 add[this.displayField] = li.item(0).data[this.displayField];
42696                 
42697                 this.addItem(add);
42698             }, this) 
42699              
42700         }
42701         if (typeof(v) == 'object' ) {
42702             // then let's assume it's an array of objects..
42703             Roo.each(v, function(l) {
42704                 var add = l;
42705                 if (typeof(l) == 'string') {
42706                     add = {};
42707                     add[this.valueField] = l;
42708                     add[this.displayField] = l
42709                 }
42710                 this.addItem(add);
42711             }, this);
42712              
42713         }
42714         
42715         
42716     },
42717     setFromData: function(v)
42718     {
42719         // this recieves an object, if setValues is called.
42720         this.reset();
42721         this.el.dom.value = v[this.displayField];
42722         this.hiddenEl.dom.value = v[this.valueField];
42723         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42724             return;
42725         }
42726         var kv = v[this.valueField];
42727         var dv = v[this.displayField];
42728         kv = typeof(kv) != 'string' ? '' : kv;
42729         dv = typeof(dv) != 'string' ? '' : dv;
42730         
42731         
42732         var keys = kv.split(this.seperator);
42733         var display = dv.split(this.seperator);
42734         for (var i = 0 ; i < keys.length; i++) {
42735             add = {};
42736             add[this.valueField] = keys[i];
42737             add[this.displayField] = display[i];
42738             this.addItem(add);
42739         }
42740       
42741         
42742     },
42743     
42744     /**
42745      * Validates the combox array value
42746      * @return {Boolean} True if the value is valid, else false
42747      */
42748     validate : function(){
42749         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42750             this.clearInvalid();
42751             return true;
42752         }
42753         return false;
42754     },
42755     
42756     validateValue : function(value){
42757         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42758         
42759     },
42760     
42761     /*@
42762      * overide
42763      * 
42764      */
42765     isDirty : function() {
42766         if(this.disabled) {
42767             return false;
42768         }
42769         
42770         try {
42771             var d = Roo.decode(String(this.originalValue));
42772         } catch (e) {
42773             return String(this.getValue()) !== String(this.originalValue);
42774         }
42775         
42776         var originalValue = [];
42777         
42778         for (var i = 0; i < d.length; i++){
42779             originalValue.push(d[i][this.valueField]);
42780         }
42781         
42782         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42783         
42784     }
42785     
42786 });
42787
42788
42789
42790 /**
42791  * @class Roo.form.ComboBoxArray.Item
42792  * @extends Roo.BoxComponent
42793  * A selected item in the list
42794  *  Fred [x]  Brian [x]  [Pick another |v]
42795  * 
42796  * @constructor
42797  * Create a new item.
42798  * @param {Object} config Configuration options
42799  */
42800  
42801 Roo.form.ComboBoxArray.Item = function(config) {
42802     config.id = Roo.id();
42803     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42804 }
42805
42806 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42807     data : {},
42808     cb: false,
42809     displayField : false,
42810     tipField : false,
42811     
42812     
42813     defaultAutoCreate : {
42814         tag: 'div',
42815         cls: 'x-cbarray-item',
42816         cn : [ 
42817             { tag: 'div' },
42818             {
42819                 tag: 'img',
42820                 width:16,
42821                 height : 16,
42822                 src : Roo.BLANK_IMAGE_URL ,
42823                 align: 'center'
42824             }
42825         ]
42826         
42827     },
42828     
42829  
42830     onRender : function(ct, position)
42831     {
42832         Roo.form.Field.superclass.onRender.call(this, ct, position);
42833         
42834         if(!this.el){
42835             var cfg = this.getAutoCreate();
42836             this.el = ct.createChild(cfg, position);
42837         }
42838         
42839         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42840         
42841         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42842             this.cb.renderer(this.data) :
42843             String.format('{0}',this.data[this.displayField]);
42844         
42845             
42846         this.el.child('div').dom.setAttribute('qtip',
42847                         String.format('{0}',this.data[this.tipField])
42848         );
42849         
42850         this.el.child('img').on('click', this.remove, this);
42851         
42852     },
42853    
42854     remove : function()
42855     {
42856         if(this.cb.disabled){
42857             return;
42858         }
42859         
42860         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42861             this.cb.items.remove(this);
42862             this.el.child('img').un('click', this.remove, this);
42863             this.el.remove();
42864             this.cb.updateHiddenEl();
42865
42866             this.cb.fireEvent('remove', this.cb, this);
42867         }
42868         
42869     }
42870 });/*
42871  * RooJS Library 1.1.1
42872  * Copyright(c) 2008-2011  Alan Knowles
42873  *
42874  * License - LGPL
42875  */
42876  
42877
42878 /**
42879  * @class Roo.form.ComboNested
42880  * @extends Roo.form.ComboBox
42881  * A combobox for that allows selection of nested items in a list,
42882  * eg.
42883  *
42884  *  Book
42885  *    -> red
42886  *    -> green
42887  *  Table
42888  *    -> square
42889  *      ->red
42890  *      ->green
42891  *    -> rectangle
42892  *      ->green
42893  *      
42894  * 
42895  * @constructor
42896  * Create a new ComboNested
42897  * @param {Object} config Configuration options
42898  */
42899 Roo.form.ComboNested = function(config){
42900     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42901     // should verify some data...
42902     // like
42903     // hiddenName = required..
42904     // displayField = required
42905     // valudField == required
42906     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42907     var _t = this;
42908     Roo.each(req, function(e) {
42909         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42910             throw "Roo.form.ComboNested : missing value for: " + e;
42911         }
42912     });
42913      
42914     
42915 };
42916
42917 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42918    
42919     /*
42920      * @config {Number} max Number of columns to show
42921      */
42922     
42923     maxColumns : 3,
42924    
42925     list : null, // the outermost div..
42926     innerLists : null, // the
42927     views : null,
42928     stores : null,
42929     // private
42930     loadingChildren : false,
42931     
42932     onRender : function(ct, position)
42933     {
42934         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42935         
42936         if(this.hiddenName){
42937             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42938                     'before', true);
42939             this.hiddenField.value =
42940                 this.hiddenValue !== undefined ? this.hiddenValue :
42941                 this.value !== undefined ? this.value : '';
42942
42943             // prevent input submission
42944             this.el.dom.removeAttribute('name');
42945              
42946              
42947         }
42948         
42949         if(Roo.isGecko){
42950             this.el.dom.setAttribute('autocomplete', 'off');
42951         }
42952
42953         var cls = 'x-combo-list';
42954
42955         this.list = new Roo.Layer({
42956             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42957         });
42958
42959         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42960         this.list.setWidth(lw);
42961         this.list.swallowEvent('mousewheel');
42962         this.assetHeight = 0;
42963
42964         if(this.title){
42965             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42966             this.assetHeight += this.header.getHeight();
42967         }
42968         this.innerLists = [];
42969         this.views = [];
42970         this.stores = [];
42971         for (var i =0 ; i < this.maxColumns; i++) {
42972             this.onRenderList( cls, i);
42973         }
42974         
42975         // always needs footer, as we are going to have an 'OK' button.
42976         this.footer = this.list.createChild({cls:cls+'-ft'});
42977         this.pageTb = new Roo.Toolbar(this.footer);  
42978         var _this = this;
42979         this.pageTb.add(  {
42980             
42981             text: 'Done',
42982             handler: function()
42983             {
42984                 _this.collapse();
42985             }
42986         });
42987         
42988         if ( this.allowBlank && !this.disableClear) {
42989             
42990             this.pageTb.add(new Roo.Toolbar.Fill(), {
42991                 cls: 'x-btn-icon x-btn-clear',
42992                 text: '&#160;',
42993                 handler: function()
42994                 {
42995                     _this.collapse();
42996                     _this.clearValue();
42997                     _this.onSelect(false, -1);
42998                 }
42999             });
43000         }
43001         if (this.footer) {
43002             this.assetHeight += this.footer.getHeight();
43003         }
43004         
43005     },
43006     onRenderList : function (  cls, i)
43007     {
43008         
43009         var lw = Math.floor(
43010                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43011         );
43012         
43013         this.list.setWidth(lw); // default to '1'
43014
43015         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
43016         //il.on('mouseover', this.onViewOver, this, { list:  i });
43017         //il.on('mousemove', this.onViewMove, this, { list:  i });
43018         il.setWidth(lw);
43019         il.setStyle({ 'overflow-x' : 'hidden'});
43020
43021         if(!this.tpl){
43022             this.tpl = new Roo.Template({
43023                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
43024                 isEmpty: function (value, allValues) {
43025                     //Roo.log(value);
43026                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
43027                     return dl ? 'has-children' : 'no-children'
43028                 }
43029             });
43030         }
43031         
43032         var store  = this.store;
43033         if (i > 0) {
43034             store  = new Roo.data.SimpleStore({
43035                 //fields : this.store.reader.meta.fields,
43036                 reader : this.store.reader,
43037                 data : [ ]
43038             });
43039         }
43040         this.stores[i]  = store;
43041                   
43042         var view = this.views[i] = new Roo.View(
43043             il,
43044             this.tpl,
43045             {
43046                 singleSelect:true,
43047                 store: store,
43048                 selectedClass: this.selectedClass
43049             }
43050         );
43051         view.getEl().setWidth(lw);
43052         view.getEl().setStyle({
43053             position: i < 1 ? 'relative' : 'absolute',
43054             top: 0,
43055             left: (i * lw ) + 'px',
43056             display : i > 0 ? 'none' : 'block'
43057         });
43058         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
43059         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
43060         //view.on('click', this.onViewClick, this, { list : i });
43061
43062         store.on('beforeload', this.onBeforeLoad, this);
43063         store.on('load',  this.onLoad, this, { list  : i});
43064         store.on('loadexception', this.onLoadException, this);
43065
43066         // hide the other vies..
43067         
43068         
43069         
43070     },
43071       
43072     restrictHeight : function()
43073     {
43074         var mh = 0;
43075         Roo.each(this.innerLists, function(il,i) {
43076             var el = this.views[i].getEl();
43077             el.dom.style.height = '';
43078             var inner = el.dom;
43079             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
43080             // only adjust heights on other ones..
43081             mh = Math.max(h, mh);
43082             if (i < 1) {
43083                 
43084                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43085                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43086                
43087             }
43088             
43089             
43090         }, this);
43091         
43092         this.list.beginUpdate();
43093         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43094         this.list.alignTo(this.el, this.listAlign);
43095         this.list.endUpdate();
43096         
43097     },
43098      
43099     
43100     // -- store handlers..
43101     // private
43102     onBeforeLoad : function()
43103     {
43104         if(!this.hasFocus){
43105             return;
43106         }
43107         this.innerLists[0].update(this.loadingText ?
43108                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43109         this.restrictHeight();
43110         this.selectedIndex = -1;
43111     },
43112     // private
43113     onLoad : function(a,b,c,d)
43114     {
43115         if (!this.loadingChildren) {
43116             // then we are loading the top level. - hide the children
43117             for (var i = 1;i < this.views.length; i++) {
43118                 this.views[i].getEl().setStyle({ display : 'none' });
43119             }
43120             var lw = Math.floor(
43121                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43122             );
43123         
43124              this.list.setWidth(lw); // default to '1'
43125
43126             
43127         }
43128         if(!this.hasFocus){
43129             return;
43130         }
43131         
43132         if(this.store.getCount() > 0) {
43133             this.expand();
43134             this.restrictHeight();   
43135         } else {
43136             this.onEmptyResults();
43137         }
43138         
43139         if (!this.loadingChildren) {
43140             this.selectActive();
43141         }
43142         /*
43143         this.stores[1].loadData([]);
43144         this.stores[2].loadData([]);
43145         this.views
43146         */    
43147     
43148         //this.el.focus();
43149     },
43150     
43151     
43152     // private
43153     onLoadException : function()
43154     {
43155         this.collapse();
43156         Roo.log(this.store.reader.jsonData);
43157         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43158             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43159         }
43160         
43161         
43162     },
43163     // no cleaning of leading spaces on blur here.
43164     cleanLeadingSpace : function(e) { },
43165     
43166
43167     onSelectChange : function (view, sels, opts )
43168     {
43169         var ix = view.getSelectedIndexes();
43170          
43171         if (opts.list > this.maxColumns - 2) {
43172             if (view.store.getCount()<  1) {
43173                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43174
43175             } else  {
43176                 if (ix.length) {
43177                     // used to clear ?? but if we are loading unselected 
43178                     this.setFromData(view.store.getAt(ix[0]).data);
43179                 }
43180                 
43181             }
43182             
43183             return;
43184         }
43185         
43186         if (!ix.length) {
43187             // this get's fired when trigger opens..
43188            // this.setFromData({});
43189             var str = this.stores[opts.list+1];
43190             str.data.clear(); // removeall wihtout the fire events..
43191             return;
43192         }
43193         
43194         var rec = view.store.getAt(ix[0]);
43195          
43196         this.setFromData(rec.data);
43197         this.fireEvent('select', this, rec, ix[0]);
43198         
43199         var lw = Math.floor(
43200              (
43201                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43202              ) / this.maxColumns
43203         );
43204         this.loadingChildren = true;
43205         this.stores[opts.list+1].loadDataFromChildren( rec );
43206         this.loadingChildren = false;
43207         var dl = this.stores[opts.list+1]. getTotalCount();
43208         
43209         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43210         
43211         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43212         for (var i = opts.list+2; i < this.views.length;i++) {
43213             this.views[i].getEl().setStyle({ display : 'none' });
43214         }
43215         
43216         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43217         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43218         
43219         if (this.isLoading) {
43220            // this.selectActive(opts.list);
43221         }
43222          
43223     },
43224     
43225     
43226     
43227     
43228     onDoubleClick : function()
43229     {
43230         this.collapse(); //??
43231     },
43232     
43233      
43234     
43235     
43236     
43237     // private
43238     recordToStack : function(store, prop, value, stack)
43239     {
43240         var cstore = new Roo.data.SimpleStore({
43241             //fields : this.store.reader.meta.fields, // we need array reader.. for
43242             reader : this.store.reader,
43243             data : [ ]
43244         });
43245         var _this = this;
43246         var record  = false;
43247         var srec = false;
43248         if(store.getCount() < 1){
43249             return false;
43250         }
43251         store.each(function(r){
43252             if(r.data[prop] == value){
43253                 record = r;
43254             srec = r;
43255                 return false;
43256             }
43257             if (r.data.cn && r.data.cn.length) {
43258                 cstore.loadDataFromChildren( r);
43259                 var cret = _this.recordToStack(cstore, prop, value, stack);
43260                 if (cret !== false) {
43261                     record = cret;
43262                     srec = r;
43263                     return false;
43264                 }
43265             }
43266              
43267             return true;
43268         });
43269         if (record == false) {
43270             return false
43271         }
43272         stack.unshift(srec);
43273         return record;
43274     },
43275     
43276     /*
43277      * find the stack of stores that match our value.
43278      *
43279      * 
43280      */
43281     
43282     selectActive : function ()
43283     {
43284         // if store is not loaded, then we will need to wait for that to happen first.
43285         var stack = [];
43286         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43287         for (var i = 0; i < stack.length; i++ ) {
43288             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43289         }
43290         
43291     }
43292         
43293          
43294     
43295     
43296     
43297     
43298 });/*
43299  * Based on:
43300  * Ext JS Library 1.1.1
43301  * Copyright(c) 2006-2007, Ext JS, LLC.
43302  *
43303  * Originally Released Under LGPL - original licence link has changed is not relivant.
43304  *
43305  * Fork - LGPL
43306  * <script type="text/javascript">
43307  */
43308 /**
43309  * @class Roo.form.Checkbox
43310  * @extends Roo.form.Field
43311  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43312  * @constructor
43313  * Creates a new Checkbox
43314  * @param {Object} config Configuration options
43315  */
43316 Roo.form.Checkbox = function(config){
43317     Roo.form.Checkbox.superclass.constructor.call(this, config);
43318     this.addEvents({
43319         /**
43320          * @event check
43321          * Fires when the checkbox is checked or unchecked.
43322              * @param {Roo.form.Checkbox} this This checkbox
43323              * @param {Boolean} checked The new checked value
43324              */
43325         check : true
43326     });
43327 };
43328
43329 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43330     /**
43331      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43332      */
43333     focusClass : undefined,
43334     /**
43335      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43336      */
43337     fieldClass: "x-form-field",
43338     /**
43339      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43340      */
43341     checked: false,
43342     /**
43343      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43344      * {tag: "input", type: "checkbox", autocomplete: "off"})
43345      */
43346     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43347     /**
43348      * @cfg {String} boxLabel The text that appears beside the checkbox
43349      */
43350     boxLabel : "",
43351     /**
43352      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43353      */  
43354     inputValue : '1',
43355     /**
43356      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43357      */
43358      valueOff: '0', // value when not checked..
43359
43360     actionMode : 'viewEl', 
43361     //
43362     // private
43363     itemCls : 'x-menu-check-item x-form-item',
43364     groupClass : 'x-menu-group-item',
43365     inputType : 'hidden',
43366     
43367     
43368     inSetChecked: false, // check that we are not calling self...
43369     
43370     inputElement: false, // real input element?
43371     basedOn: false, // ????
43372     
43373     isFormField: true, // not sure where this is needed!!!!
43374
43375     onResize : function(){
43376         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43377         if(!this.boxLabel){
43378             this.el.alignTo(this.wrap, 'c-c');
43379         }
43380     },
43381
43382     initEvents : function(){
43383         Roo.form.Checkbox.superclass.initEvents.call(this);
43384         this.el.on("click", this.onClick,  this);
43385         this.el.on("change", this.onClick,  this);
43386     },
43387
43388
43389     getResizeEl : function(){
43390         return this.wrap;
43391     },
43392
43393     getPositionEl : function(){
43394         return this.wrap;
43395     },
43396
43397     // private
43398     onRender : function(ct, position){
43399         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43400         /*
43401         if(this.inputValue !== undefined){
43402             this.el.dom.value = this.inputValue;
43403         }
43404         */
43405         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43406         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43407         var viewEl = this.wrap.createChild({ 
43408             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43409         this.viewEl = viewEl;   
43410         this.wrap.on('click', this.onClick,  this); 
43411         
43412         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43413         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43414         
43415         
43416         
43417         if(this.boxLabel){
43418             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43419         //    viewEl.on('click', this.onClick,  this); 
43420         }
43421         //if(this.checked){
43422             this.setChecked(this.checked);
43423         //}else{
43424             //this.checked = this.el.dom;
43425         //}
43426
43427     },
43428
43429     // private
43430     initValue : Roo.emptyFn,
43431
43432     /**
43433      * Returns the checked state of the checkbox.
43434      * @return {Boolean} True if checked, else false
43435      */
43436     getValue : function(){
43437         if(this.el){
43438             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43439         }
43440         return this.valueOff;
43441         
43442     },
43443
43444         // private
43445     onClick : function(){ 
43446         if (this.disabled) {
43447             return;
43448         }
43449         this.setChecked(!this.checked);
43450
43451         //if(this.el.dom.checked != this.checked){
43452         //    this.setValue(this.el.dom.checked);
43453        // }
43454     },
43455
43456     /**
43457      * Sets the checked state of the checkbox.
43458      * On is always based on a string comparison between inputValue and the param.
43459      * @param {Boolean/String} value - the value to set 
43460      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43461      */
43462     setValue : function(v,suppressEvent){
43463         
43464         
43465         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43466         //if(this.el && this.el.dom){
43467         //    this.el.dom.checked = this.checked;
43468         //    this.el.dom.defaultChecked = this.checked;
43469         //}
43470         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43471         //this.fireEvent("check", this, this.checked);
43472     },
43473     // private..
43474     setChecked : function(state,suppressEvent)
43475     {
43476         if (this.inSetChecked) {
43477             this.checked = state;
43478             return;
43479         }
43480         
43481     
43482         if(this.wrap){
43483             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43484         }
43485         this.checked = state;
43486         if(suppressEvent !== true){
43487             this.fireEvent('check', this, state);
43488         }
43489         this.inSetChecked = true;
43490         this.el.dom.value = state ? this.inputValue : this.valueOff;
43491         this.inSetChecked = false;
43492         
43493     },
43494     // handle setting of hidden value by some other method!!?!?
43495     setFromHidden: function()
43496     {
43497         if(!this.el){
43498             return;
43499         }
43500         //console.log("SET FROM HIDDEN");
43501         //alert('setFrom hidden');
43502         this.setValue(this.el.dom.value);
43503     },
43504     
43505     onDestroy : function()
43506     {
43507         if(this.viewEl){
43508             Roo.get(this.viewEl).remove();
43509         }
43510          
43511         Roo.form.Checkbox.superclass.onDestroy.call(this);
43512     },
43513     
43514     setBoxLabel : function(str)
43515     {
43516         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43517     }
43518
43519 });/*
43520  * Based on:
43521  * Ext JS Library 1.1.1
43522  * Copyright(c) 2006-2007, Ext JS, LLC.
43523  *
43524  * Originally Released Under LGPL - original licence link has changed is not relivant.
43525  *
43526  * Fork - LGPL
43527  * <script type="text/javascript">
43528  */
43529  
43530 /**
43531  * @class Roo.form.Radio
43532  * @extends Roo.form.Checkbox
43533  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43534  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43535  * @constructor
43536  * Creates a new Radio
43537  * @param {Object} config Configuration options
43538  */
43539 Roo.form.Radio = function(){
43540     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43541 };
43542 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43543     inputType: 'radio',
43544
43545     /**
43546      * If this radio is part of a group, it will return the selected value
43547      * @return {String}
43548      */
43549     getGroupValue : function(){
43550         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43551     },
43552     
43553     
43554     onRender : function(ct, position){
43555         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43556         
43557         if(this.inputValue !== undefined){
43558             this.el.dom.value = this.inputValue;
43559         }
43560          
43561         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43562         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43563         //var viewEl = this.wrap.createChild({ 
43564         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43565         //this.viewEl = viewEl;   
43566         //this.wrap.on('click', this.onClick,  this); 
43567         
43568         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43569         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43570         
43571         
43572         
43573         if(this.boxLabel){
43574             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43575         //    viewEl.on('click', this.onClick,  this); 
43576         }
43577          if(this.checked){
43578             this.el.dom.checked =   'checked' ;
43579         }
43580          
43581     } 
43582     
43583     
43584 });//<script type="text/javascript">
43585
43586 /*
43587  * Based  Ext JS Library 1.1.1
43588  * Copyright(c) 2006-2007, Ext JS, LLC.
43589  * LGPL
43590  *
43591  */
43592  
43593 /**
43594  * @class Roo.HtmlEditorCore
43595  * @extends Roo.Component
43596  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43597  *
43598  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43599  */
43600
43601 Roo.HtmlEditorCore = function(config){
43602     
43603     
43604     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43605     
43606     
43607     this.addEvents({
43608         /**
43609          * @event initialize
43610          * Fires when the editor is fully initialized (including the iframe)
43611          * @param {Roo.HtmlEditorCore} this
43612          */
43613         initialize: true,
43614         /**
43615          * @event activate
43616          * Fires when the editor is first receives the focus. Any insertion must wait
43617          * until after this event.
43618          * @param {Roo.HtmlEditorCore} this
43619          */
43620         activate: true,
43621          /**
43622          * @event beforesync
43623          * Fires before the textarea is updated with content from the editor iframe. Return false
43624          * to cancel the sync.
43625          * @param {Roo.HtmlEditorCore} this
43626          * @param {String} html
43627          */
43628         beforesync: true,
43629          /**
43630          * @event beforepush
43631          * Fires before the iframe editor is updated with content from the textarea. Return false
43632          * to cancel the push.
43633          * @param {Roo.HtmlEditorCore} this
43634          * @param {String} html
43635          */
43636         beforepush: true,
43637          /**
43638          * @event sync
43639          * Fires when the textarea is updated with content from the editor iframe.
43640          * @param {Roo.HtmlEditorCore} this
43641          * @param {String} html
43642          */
43643         sync: true,
43644          /**
43645          * @event push
43646          * Fires when the iframe editor is updated with content from the textarea.
43647          * @param {Roo.HtmlEditorCore} this
43648          * @param {String} html
43649          */
43650         push: true,
43651         
43652         /**
43653          * @event editorevent
43654          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43655          * @param {Roo.HtmlEditorCore} this
43656          */
43657         editorevent: true
43658         
43659     });
43660     
43661     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43662     
43663     // defaults : white / black...
43664     this.applyBlacklists();
43665     
43666     
43667     
43668 };
43669
43670
43671 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43672
43673
43674      /**
43675      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43676      */
43677     
43678     owner : false,
43679     
43680      /**
43681      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43682      *                        Roo.resizable.
43683      */
43684     resizable : false,
43685      /**
43686      * @cfg {Number} height (in pixels)
43687      */   
43688     height: 300,
43689    /**
43690      * @cfg {Number} width (in pixels)
43691      */   
43692     width: 500,
43693     
43694     /**
43695      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43696      * 
43697      */
43698     stylesheets: false,
43699     
43700     // id of frame..
43701     frameId: false,
43702     
43703     // private properties
43704     validationEvent : false,
43705     deferHeight: true,
43706     initialized : false,
43707     activated : false,
43708     sourceEditMode : false,
43709     onFocus : Roo.emptyFn,
43710     iframePad:3,
43711     hideMode:'offsets',
43712     
43713     clearUp: true,
43714     
43715     // blacklist + whitelisted elements..
43716     black: false,
43717     white: false,
43718      
43719     bodyCls : '',
43720
43721     /**
43722      * Protected method that will not generally be called directly. It
43723      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43724      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43725      */
43726     getDocMarkup : function(){
43727         // body styles..
43728         var st = '';
43729         
43730         // inherit styels from page...?? 
43731         if (this.stylesheets === false) {
43732             
43733             Roo.get(document.head).select('style').each(function(node) {
43734                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43735             });
43736             
43737             Roo.get(document.head).select('link').each(function(node) { 
43738                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43739             });
43740             
43741         } else if (!this.stylesheets.length) {
43742                 // simple..
43743                 st = '<style type="text/css">' +
43744                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43745                    '</style>';
43746         } else {
43747             for (var i in this.stylesheets) { 
43748                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43749             }
43750             
43751         }
43752         
43753         st +=  '<style type="text/css">' +
43754             'IMG { cursor: pointer } ' +
43755         '</style>';
43756
43757         var cls = 'roo-htmleditor-body';
43758         
43759         if(this.bodyCls.length){
43760             cls += ' ' + this.bodyCls;
43761         }
43762         
43763         return '<html><head>' + st  +
43764             //<style type="text/css">' +
43765             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43766             //'</style>' +
43767             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43768     },
43769
43770     // private
43771     onRender : function(ct, position)
43772     {
43773         var _t = this;
43774         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43775         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43776         
43777         
43778         this.el.dom.style.border = '0 none';
43779         this.el.dom.setAttribute('tabIndex', -1);
43780         this.el.addClass('x-hidden hide');
43781         
43782         
43783         
43784         if(Roo.isIE){ // fix IE 1px bogus margin
43785             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43786         }
43787        
43788         
43789         this.frameId = Roo.id();
43790         
43791          
43792         
43793         var iframe = this.owner.wrap.createChild({
43794             tag: 'iframe',
43795             cls: 'form-control', // bootstrap..
43796             id: this.frameId,
43797             name: this.frameId,
43798             frameBorder : 'no',
43799             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43800         }, this.el
43801         );
43802         
43803         
43804         this.iframe = iframe.dom;
43805
43806          this.assignDocWin();
43807         
43808         this.doc.designMode = 'on';
43809        
43810         this.doc.open();
43811         this.doc.write(this.getDocMarkup());
43812         this.doc.close();
43813
43814         
43815         var task = { // must defer to wait for browser to be ready
43816             run : function(){
43817                 //console.log("run task?" + this.doc.readyState);
43818                 this.assignDocWin();
43819                 if(this.doc.body || this.doc.readyState == 'complete'){
43820                     try {
43821                         this.doc.designMode="on";
43822                     } catch (e) {
43823                         return;
43824                     }
43825                     Roo.TaskMgr.stop(task);
43826                     this.initEditor.defer(10, this);
43827                 }
43828             },
43829             interval : 10,
43830             duration: 10000,
43831             scope: this
43832         };
43833         Roo.TaskMgr.start(task);
43834
43835     },
43836
43837     // private
43838     onResize : function(w, h)
43839     {
43840          Roo.log('resize: ' +w + ',' + h );
43841         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43842         if(!this.iframe){
43843             return;
43844         }
43845         if(typeof w == 'number'){
43846             
43847             this.iframe.style.width = w + 'px';
43848         }
43849         if(typeof h == 'number'){
43850             
43851             this.iframe.style.height = h + 'px';
43852             if(this.doc){
43853                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43854             }
43855         }
43856         
43857     },
43858
43859     /**
43860      * Toggles the editor between standard and source edit mode.
43861      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43862      */
43863     toggleSourceEdit : function(sourceEditMode){
43864         
43865         this.sourceEditMode = sourceEditMode === true;
43866         
43867         if(this.sourceEditMode){
43868  
43869             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43870             
43871         }else{
43872             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43873             //this.iframe.className = '';
43874             this.deferFocus();
43875         }
43876         //this.setSize(this.owner.wrap.getSize());
43877         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43878     },
43879
43880     
43881   
43882
43883     /**
43884      * Protected method that will not generally be called directly. If you need/want
43885      * custom HTML cleanup, this is the method you should override.
43886      * @param {String} html The HTML to be cleaned
43887      * return {String} The cleaned HTML
43888      */
43889     cleanHtml : function(html){
43890         html = String(html);
43891         if(html.length > 5){
43892             if(Roo.isSafari){ // strip safari nonsense
43893                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43894             }
43895         }
43896         if(html == '&nbsp;'){
43897             html = '';
43898         }
43899         return html;
43900     },
43901
43902     /**
43903      * HTML Editor -> Textarea
43904      * Protected method that will not generally be called directly. Syncs the contents
43905      * of the editor iframe with the textarea.
43906      */
43907     syncValue : function(){
43908         if(this.initialized){
43909             var bd = (this.doc.body || this.doc.documentElement);
43910             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43911             var html = bd.innerHTML;
43912             if(Roo.isSafari){
43913                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43914                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43915                 if(m && m[1]){
43916                     html = '<div style="'+m[0]+'">' + html + '</div>';
43917                 }
43918             }
43919             html = this.cleanHtml(html);
43920             // fix up the special chars.. normaly like back quotes in word...
43921             // however we do not want to do this with chinese..
43922             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43923                 
43924                 var cc = match.charCodeAt();
43925
43926                 // Get the character value, handling surrogate pairs
43927                 if (match.length == 2) {
43928                     // It's a surrogate pair, calculate the Unicode code point
43929                     var high = match.charCodeAt(0) - 0xD800;
43930                     var low  = match.charCodeAt(1) - 0xDC00;
43931                     cc = (high * 0x400) + low + 0x10000;
43932                 }  else if (
43933                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43934                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43935                     (cc >= 0xf900 && cc < 0xfb00 )
43936                 ) {
43937                         return match;
43938                 }  
43939          
43940                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43941                 return "&#" + cc + ";";
43942                 
43943                 
43944             });
43945             
43946             
43947              
43948             if(this.owner.fireEvent('beforesync', this, html) !== false){
43949                 this.el.dom.value = html;
43950                 this.owner.fireEvent('sync', this, html);
43951             }
43952         }
43953     },
43954
43955     /**
43956      * Protected method that will not generally be called directly. Pushes the value of the textarea
43957      * into the iframe editor.
43958      */
43959     pushValue : function(){
43960         if(this.initialized){
43961             var v = this.el.dom.value.trim();
43962             
43963 //            if(v.length < 1){
43964 //                v = '&#160;';
43965 //            }
43966             
43967             if(this.owner.fireEvent('beforepush', this, v) !== false){
43968                 var d = (this.doc.body || this.doc.documentElement);
43969                 d.innerHTML = v;
43970                 this.cleanUpPaste();
43971                 this.el.dom.value = d.innerHTML;
43972                 this.owner.fireEvent('push', this, v);
43973             }
43974         }
43975     },
43976
43977     // private
43978     deferFocus : function(){
43979         this.focus.defer(10, this);
43980     },
43981
43982     // doc'ed in Field
43983     focus : function(){
43984         if(this.win && !this.sourceEditMode){
43985             this.win.focus();
43986         }else{
43987             this.el.focus();
43988         }
43989     },
43990     
43991     assignDocWin: function()
43992     {
43993         var iframe = this.iframe;
43994         
43995          if(Roo.isIE){
43996             this.doc = iframe.contentWindow.document;
43997             this.win = iframe.contentWindow;
43998         } else {
43999 //            if (!Roo.get(this.frameId)) {
44000 //                return;
44001 //            }
44002 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44003 //            this.win = Roo.get(this.frameId).dom.contentWindow;
44004             
44005             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
44006                 return;
44007             }
44008             
44009             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44010             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
44011         }
44012     },
44013     
44014     // private
44015     initEditor : function(){
44016         //console.log("INIT EDITOR");
44017         this.assignDocWin();
44018         
44019         
44020         
44021         this.doc.designMode="on";
44022         this.doc.open();
44023         this.doc.write(this.getDocMarkup());
44024         this.doc.close();
44025         
44026         var dbody = (this.doc.body || this.doc.documentElement);
44027         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
44028         // this copies styles from the containing element into thsi one..
44029         // not sure why we need all of this..
44030         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
44031         
44032         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
44033         //ss['background-attachment'] = 'fixed'; // w3c
44034         dbody.bgProperties = 'fixed'; // ie
44035         //Roo.DomHelper.applyStyles(dbody, ss);
44036         Roo.EventManager.on(this.doc, {
44037             //'mousedown': this.onEditorEvent,
44038             'mouseup': this.onEditorEvent,
44039             'dblclick': this.onEditorEvent,
44040             'click': this.onEditorEvent,
44041             'keyup': this.onEditorEvent,
44042             buffer:100,
44043             scope: this
44044         });
44045         if(Roo.isGecko){
44046             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
44047         }
44048         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
44049             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
44050         }
44051         this.initialized = true;
44052
44053         this.owner.fireEvent('initialize', this);
44054         this.pushValue();
44055     },
44056
44057     // private
44058     onDestroy : function(){
44059         
44060         
44061         
44062         if(this.rendered){
44063             
44064             //for (var i =0; i < this.toolbars.length;i++) {
44065             //    // fixme - ask toolbars for heights?
44066             //    this.toolbars[i].onDestroy();
44067            // }
44068             
44069             //this.wrap.dom.innerHTML = '';
44070             //this.wrap.remove();
44071         }
44072     },
44073
44074     // private
44075     onFirstFocus : function(){
44076         
44077         this.assignDocWin();
44078         
44079         
44080         this.activated = true;
44081          
44082     
44083         if(Roo.isGecko){ // prevent silly gecko errors
44084             this.win.focus();
44085             var s = this.win.getSelection();
44086             if(!s.focusNode || s.focusNode.nodeType != 3){
44087                 var r = s.getRangeAt(0);
44088                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44089                 r.collapse(true);
44090                 this.deferFocus();
44091             }
44092             try{
44093                 this.execCmd('useCSS', true);
44094                 this.execCmd('styleWithCSS', false);
44095             }catch(e){}
44096         }
44097         this.owner.fireEvent('activate', this);
44098     },
44099
44100     // private
44101     adjustFont: function(btn){
44102         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44103         //if(Roo.isSafari){ // safari
44104         //    adjust *= 2;
44105        // }
44106         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44107         if(Roo.isSafari){ // safari
44108             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44109             v =  (v < 10) ? 10 : v;
44110             v =  (v > 48) ? 48 : v;
44111             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44112             
44113         }
44114         
44115         
44116         v = Math.max(1, v+adjust);
44117         
44118         this.execCmd('FontSize', v  );
44119     },
44120
44121     onEditorEvent : function(e)
44122     {
44123         this.owner.fireEvent('editorevent', this, e);
44124       //  this.updateToolbar();
44125         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44126     },
44127
44128     insertTag : function(tg)
44129     {
44130         // could be a bit smarter... -> wrap the current selected tRoo..
44131         if (tg.toLowerCase() == 'span' ||
44132             tg.toLowerCase() == 'code' ||
44133             tg.toLowerCase() == 'sup' ||
44134             tg.toLowerCase() == 'sub' 
44135             ) {
44136             
44137             range = this.createRange(this.getSelection());
44138             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44139             wrappingNode.appendChild(range.extractContents());
44140             range.insertNode(wrappingNode);
44141
44142             return;
44143             
44144             
44145             
44146         }
44147         this.execCmd("formatblock",   tg);
44148         
44149     },
44150     
44151     insertText : function(txt)
44152     {
44153         
44154         
44155         var range = this.createRange();
44156         range.deleteContents();
44157                //alert(Sender.getAttribute('label'));
44158                
44159         range.insertNode(this.doc.createTextNode(txt));
44160     } ,
44161     
44162      
44163
44164     /**
44165      * Executes a Midas editor command on the editor document and performs necessary focus and
44166      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44167      * @param {String} cmd The Midas command
44168      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44169      */
44170     relayCmd : function(cmd, value){
44171         this.win.focus();
44172         this.execCmd(cmd, value);
44173         this.owner.fireEvent('editorevent', this);
44174         //this.updateToolbar();
44175         this.owner.deferFocus();
44176     },
44177
44178     /**
44179      * Executes a Midas editor command directly on the editor document.
44180      * For visual commands, you should use {@link #relayCmd} instead.
44181      * <b>This should only be called after the editor is initialized.</b>
44182      * @param {String} cmd The Midas command
44183      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44184      */
44185     execCmd : function(cmd, value){
44186         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44187         this.syncValue();
44188     },
44189  
44190  
44191    
44192     /**
44193      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44194      * to insert tRoo.
44195      * @param {String} text | dom node.. 
44196      */
44197     insertAtCursor : function(text)
44198     {
44199         
44200         if(!this.activated){
44201             return;
44202         }
44203         /*
44204         if(Roo.isIE){
44205             this.win.focus();
44206             var r = this.doc.selection.createRange();
44207             if(r){
44208                 r.collapse(true);
44209                 r.pasteHTML(text);
44210                 this.syncValue();
44211                 this.deferFocus();
44212             
44213             }
44214             return;
44215         }
44216         */
44217         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44218             this.win.focus();
44219             
44220             
44221             // from jquery ui (MIT licenced)
44222             var range, node;
44223             var win = this.win;
44224             
44225             if (win.getSelection && win.getSelection().getRangeAt) {
44226                 range = win.getSelection().getRangeAt(0);
44227                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44228                 range.insertNode(node);
44229             } else if (win.document.selection && win.document.selection.createRange) {
44230                 // no firefox support
44231                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44232                 win.document.selection.createRange().pasteHTML(txt);
44233             } else {
44234                 // no firefox support
44235                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44236                 this.execCmd('InsertHTML', txt);
44237             } 
44238             
44239             this.syncValue();
44240             
44241             this.deferFocus();
44242         }
44243     },
44244  // private
44245     mozKeyPress : function(e){
44246         if(e.ctrlKey){
44247             var c = e.getCharCode(), cmd;
44248           
44249             if(c > 0){
44250                 c = String.fromCharCode(c).toLowerCase();
44251                 switch(c){
44252                     case 'b':
44253                         cmd = 'bold';
44254                         break;
44255                     case 'i':
44256                         cmd = 'italic';
44257                         break;
44258                     
44259                     case 'u':
44260                         cmd = 'underline';
44261                         break;
44262                     
44263                     case 'v':
44264                         this.cleanUpPaste.defer(100, this);
44265                         return;
44266                         
44267                 }
44268                 if(cmd){
44269                     this.win.focus();
44270                     this.execCmd(cmd);
44271                     this.deferFocus();
44272                     e.preventDefault();
44273                 }
44274                 
44275             }
44276         }
44277     },
44278
44279     // private
44280     fixKeys : function(){ // load time branching for fastest keydown performance
44281         if(Roo.isIE){
44282             return function(e){
44283                 var k = e.getKey(), r;
44284                 if(k == e.TAB){
44285                     e.stopEvent();
44286                     r = this.doc.selection.createRange();
44287                     if(r){
44288                         r.collapse(true);
44289                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44290                         this.deferFocus();
44291                     }
44292                     return;
44293                 }
44294                 
44295                 if(k == e.ENTER){
44296                     r = this.doc.selection.createRange();
44297                     if(r){
44298                         var target = r.parentElement();
44299                         if(!target || target.tagName.toLowerCase() != 'li'){
44300                             e.stopEvent();
44301                             r.pasteHTML('<br />');
44302                             r.collapse(false);
44303                             r.select();
44304                         }
44305                     }
44306                 }
44307                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44308                     this.cleanUpPaste.defer(100, this);
44309                     return;
44310                 }
44311                 
44312                 
44313             };
44314         }else if(Roo.isOpera){
44315             return function(e){
44316                 var k = e.getKey();
44317                 if(k == e.TAB){
44318                     e.stopEvent();
44319                     this.win.focus();
44320                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44321                     this.deferFocus();
44322                 }
44323                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44324                     this.cleanUpPaste.defer(100, this);
44325                     return;
44326                 }
44327                 
44328             };
44329         }else if(Roo.isSafari){
44330             return function(e){
44331                 var k = e.getKey();
44332                 
44333                 if(k == e.TAB){
44334                     e.stopEvent();
44335                     this.execCmd('InsertText','\t');
44336                     this.deferFocus();
44337                     return;
44338                 }
44339                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44340                     this.cleanUpPaste.defer(100, this);
44341                     return;
44342                 }
44343                 
44344              };
44345         }
44346     }(),
44347     
44348     getAllAncestors: function()
44349     {
44350         var p = this.getSelectedNode();
44351         var a = [];
44352         if (!p) {
44353             a.push(p); // push blank onto stack..
44354             p = this.getParentElement();
44355         }
44356         
44357         
44358         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44359             a.push(p);
44360             p = p.parentNode;
44361         }
44362         a.push(this.doc.body);
44363         return a;
44364     },
44365     lastSel : false,
44366     lastSelNode : false,
44367     
44368     
44369     getSelection : function() 
44370     {
44371         this.assignDocWin();
44372         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44373     },
44374     
44375     getSelectedNode: function() 
44376     {
44377         // this may only work on Gecko!!!
44378         
44379         // should we cache this!!!!
44380         
44381         
44382         
44383          
44384         var range = this.createRange(this.getSelection()).cloneRange();
44385         
44386         if (Roo.isIE) {
44387             var parent = range.parentElement();
44388             while (true) {
44389                 var testRange = range.duplicate();
44390                 testRange.moveToElementText(parent);
44391                 if (testRange.inRange(range)) {
44392                     break;
44393                 }
44394                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44395                     break;
44396                 }
44397                 parent = parent.parentElement;
44398             }
44399             return parent;
44400         }
44401         
44402         // is ancestor a text element.
44403         var ac =  range.commonAncestorContainer;
44404         if (ac.nodeType == 3) {
44405             ac = ac.parentNode;
44406         }
44407         
44408         var ar = ac.childNodes;
44409          
44410         var nodes = [];
44411         var other_nodes = [];
44412         var has_other_nodes = false;
44413         for (var i=0;i<ar.length;i++) {
44414             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44415                 continue;
44416             }
44417             // fullly contained node.
44418             
44419             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44420                 nodes.push(ar[i]);
44421                 continue;
44422             }
44423             
44424             // probably selected..
44425             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44426                 other_nodes.push(ar[i]);
44427                 continue;
44428             }
44429             // outer..
44430             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44431                 continue;
44432             }
44433             
44434             
44435             has_other_nodes = true;
44436         }
44437         if (!nodes.length && other_nodes.length) {
44438             nodes= other_nodes;
44439         }
44440         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44441             return false;
44442         }
44443         
44444         return nodes[0];
44445     },
44446     createRange: function(sel)
44447     {
44448         // this has strange effects when using with 
44449         // top toolbar - not sure if it's a great idea.
44450         //this.editor.contentWindow.focus();
44451         if (typeof sel != "undefined") {
44452             try {
44453                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44454             } catch(e) {
44455                 return this.doc.createRange();
44456             }
44457         } else {
44458             return this.doc.createRange();
44459         }
44460     },
44461     getParentElement: function()
44462     {
44463         
44464         this.assignDocWin();
44465         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44466         
44467         var range = this.createRange(sel);
44468          
44469         try {
44470             var p = range.commonAncestorContainer;
44471             while (p.nodeType == 3) { // text node
44472                 p = p.parentNode;
44473             }
44474             return p;
44475         } catch (e) {
44476             return null;
44477         }
44478     
44479     },
44480     /***
44481      *
44482      * Range intersection.. the hard stuff...
44483      *  '-1' = before
44484      *  '0' = hits..
44485      *  '1' = after.
44486      *         [ -- selected range --- ]
44487      *   [fail]                        [fail]
44488      *
44489      *    basically..
44490      *      if end is before start or  hits it. fail.
44491      *      if start is after end or hits it fail.
44492      *
44493      *   if either hits (but other is outside. - then it's not 
44494      *   
44495      *    
44496      **/
44497     
44498     
44499     // @see http://www.thismuchiknow.co.uk/?p=64.
44500     rangeIntersectsNode : function(range, node)
44501     {
44502         var nodeRange = node.ownerDocument.createRange();
44503         try {
44504             nodeRange.selectNode(node);
44505         } catch (e) {
44506             nodeRange.selectNodeContents(node);
44507         }
44508     
44509         var rangeStartRange = range.cloneRange();
44510         rangeStartRange.collapse(true);
44511     
44512         var rangeEndRange = range.cloneRange();
44513         rangeEndRange.collapse(false);
44514     
44515         var nodeStartRange = nodeRange.cloneRange();
44516         nodeStartRange.collapse(true);
44517     
44518         var nodeEndRange = nodeRange.cloneRange();
44519         nodeEndRange.collapse(false);
44520     
44521         return rangeStartRange.compareBoundaryPoints(
44522                  Range.START_TO_START, nodeEndRange) == -1 &&
44523                rangeEndRange.compareBoundaryPoints(
44524                  Range.START_TO_START, nodeStartRange) == 1;
44525         
44526          
44527     },
44528     rangeCompareNode : function(range, node)
44529     {
44530         var nodeRange = node.ownerDocument.createRange();
44531         try {
44532             nodeRange.selectNode(node);
44533         } catch (e) {
44534             nodeRange.selectNodeContents(node);
44535         }
44536         
44537         
44538         range.collapse(true);
44539     
44540         nodeRange.collapse(true);
44541      
44542         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44543         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44544          
44545         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44546         
44547         var nodeIsBefore   =  ss == 1;
44548         var nodeIsAfter    = ee == -1;
44549         
44550         if (nodeIsBefore && nodeIsAfter) {
44551             return 0; // outer
44552         }
44553         if (!nodeIsBefore && nodeIsAfter) {
44554             return 1; //right trailed.
44555         }
44556         
44557         if (nodeIsBefore && !nodeIsAfter) {
44558             return 2;  // left trailed.
44559         }
44560         // fully contined.
44561         return 3;
44562     },
44563
44564     // private? - in a new class?
44565     cleanUpPaste :  function()
44566     {
44567         // cleans up the whole document..
44568         Roo.log('cleanuppaste');
44569         
44570         this.cleanUpChildren(this.doc.body);
44571         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44572         if (clean != this.doc.body.innerHTML) {
44573             this.doc.body.innerHTML = clean;
44574         }
44575         
44576     },
44577     
44578     cleanWordChars : function(input) {// change the chars to hex code
44579         var he = Roo.HtmlEditorCore;
44580         
44581         var output = input;
44582         Roo.each(he.swapCodes, function(sw) { 
44583             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44584             
44585             output = output.replace(swapper, sw[1]);
44586         });
44587         
44588         return output;
44589     },
44590     
44591     
44592     cleanUpChildren : function (n)
44593     {
44594         if (!n.childNodes.length) {
44595             return;
44596         }
44597         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44598            this.cleanUpChild(n.childNodes[i]);
44599         }
44600     },
44601     
44602     
44603         
44604     
44605     cleanUpChild : function (node)
44606     {
44607         var ed = this;
44608         //console.log(node);
44609         if (node.nodeName == "#text") {
44610             // clean up silly Windows -- stuff?
44611             return; 
44612         }
44613         if (node.nodeName == "#comment") {
44614             node.parentNode.removeChild(node);
44615             // clean up silly Windows -- stuff?
44616             return; 
44617         }
44618         var lcname = node.tagName.toLowerCase();
44619         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44620         // whitelist of tags..
44621         
44622         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44623             // remove node.
44624             node.parentNode.removeChild(node);
44625             return;
44626             
44627         }
44628         
44629         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44630         
44631         // spans with no attributes - just remove them..
44632         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44633             remove_keep_children = true;
44634         }
44635         
44636         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44637         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44638         
44639         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44640         //    remove_keep_children = true;
44641         //}
44642         
44643         if (remove_keep_children) {
44644             this.cleanUpChildren(node);
44645             // inserts everything just before this node...
44646             while (node.childNodes.length) {
44647                 var cn = node.childNodes[0];
44648                 node.removeChild(cn);
44649                 node.parentNode.insertBefore(cn, node);
44650             }
44651             node.parentNode.removeChild(node);
44652             return;
44653         }
44654         
44655         if (!node.attributes || !node.attributes.length) {
44656             
44657           
44658             
44659             
44660             this.cleanUpChildren(node);
44661             return;
44662         }
44663         
44664         function cleanAttr(n,v)
44665         {
44666             
44667             if (v.match(/^\./) || v.match(/^\//)) {
44668                 return;
44669             }
44670             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44671                 return;
44672             }
44673             if (v.match(/^#/)) {
44674                 return;
44675             }
44676             if (v.match(/^\{/)) { // allow template editing.
44677                 return;
44678             }
44679 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44680             node.removeAttribute(n);
44681             
44682         }
44683         
44684         var cwhite = this.cwhite;
44685         var cblack = this.cblack;
44686             
44687         function cleanStyle(n,v)
44688         {
44689             if (v.match(/expression/)) { //XSS?? should we even bother..
44690                 node.removeAttribute(n);
44691                 return;
44692             }
44693             
44694             var parts = v.split(/;/);
44695             var clean = [];
44696             
44697             Roo.each(parts, function(p) {
44698                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44699                 if (!p.length) {
44700                     return true;
44701                 }
44702                 var l = p.split(':').shift().replace(/\s+/g,'');
44703                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44704                 
44705                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44706 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44707                     //node.removeAttribute(n);
44708                     return true;
44709                 }
44710                 //Roo.log()
44711                 // only allow 'c whitelisted system attributes'
44712                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44713 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44714                     //node.removeAttribute(n);
44715                     return true;
44716                 }
44717                 
44718                 
44719                  
44720                 
44721                 clean.push(p);
44722                 return true;
44723             });
44724             if (clean.length) { 
44725                 node.setAttribute(n, clean.join(';'));
44726             } else {
44727                 node.removeAttribute(n);
44728             }
44729             
44730         }
44731         
44732         
44733         for (var i = node.attributes.length-1; i > -1 ; i--) {
44734             var a = node.attributes[i];
44735             //console.log(a);
44736             
44737             if (a.name.toLowerCase().substr(0,2)=='on')  {
44738                 node.removeAttribute(a.name);
44739                 continue;
44740             }
44741             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44742                 node.removeAttribute(a.name);
44743                 continue;
44744             }
44745             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44746                 cleanAttr(a.name,a.value); // fixme..
44747                 continue;
44748             }
44749             if (a.name == 'style') {
44750                 cleanStyle(a.name,a.value);
44751                 continue;
44752             }
44753             /// clean up MS crap..
44754             // tecnically this should be a list of valid class'es..
44755             
44756             
44757             if (a.name == 'class') {
44758                 if (a.value.match(/^Mso/)) {
44759                     node.removeAttribute('class');
44760                 }
44761                 
44762                 if (a.value.match(/^body$/)) {
44763                     node.removeAttribute('class');
44764                 }
44765                 continue;
44766             }
44767             
44768             // style cleanup!?
44769             // class cleanup?
44770             
44771         }
44772         
44773         
44774         this.cleanUpChildren(node);
44775         
44776         
44777     },
44778     
44779     /**
44780      * Clean up MS wordisms...
44781      */
44782     cleanWord : function(node)
44783     {
44784         if (!node) {
44785             this.cleanWord(this.doc.body);
44786             return;
44787         }
44788         
44789         if(
44790                 node.nodeName == 'SPAN' &&
44791                 !node.hasAttributes() &&
44792                 node.childNodes.length == 1 &&
44793                 node.firstChild.nodeName == "#text"  
44794         ) {
44795             var textNode = node.firstChild;
44796             node.removeChild(textNode);
44797             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44798                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44799             }
44800             node.parentNode.insertBefore(textNode, node);
44801             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44802                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44803             }
44804             node.parentNode.removeChild(node);
44805         }
44806         
44807         if (node.nodeName == "#text") {
44808             // clean up silly Windows -- stuff?
44809             return; 
44810         }
44811         if (node.nodeName == "#comment") {
44812             node.parentNode.removeChild(node);
44813             // clean up silly Windows -- stuff?
44814             return; 
44815         }
44816         
44817         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44818             node.parentNode.removeChild(node);
44819             return;
44820         }
44821         //Roo.log(node.tagName);
44822         // remove - but keep children..
44823         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44824             //Roo.log('-- removed');
44825             while (node.childNodes.length) {
44826                 var cn = node.childNodes[0];
44827                 node.removeChild(cn);
44828                 node.parentNode.insertBefore(cn, node);
44829                 // move node to parent - and clean it..
44830                 this.cleanWord(cn);
44831             }
44832             node.parentNode.removeChild(node);
44833             /// no need to iterate chidlren = it's got none..
44834             //this.iterateChildren(node, this.cleanWord);
44835             return;
44836         }
44837         // clean styles
44838         if (node.className.length) {
44839             
44840             var cn = node.className.split(/\W+/);
44841             var cna = [];
44842             Roo.each(cn, function(cls) {
44843                 if (cls.match(/Mso[a-zA-Z]+/)) {
44844                     return;
44845                 }
44846                 cna.push(cls);
44847             });
44848             node.className = cna.length ? cna.join(' ') : '';
44849             if (!cna.length) {
44850                 node.removeAttribute("class");
44851             }
44852         }
44853         
44854         if (node.hasAttribute("lang")) {
44855             node.removeAttribute("lang");
44856         }
44857         
44858         if (node.hasAttribute("style")) {
44859             
44860             var styles = node.getAttribute("style").split(";");
44861             var nstyle = [];
44862             Roo.each(styles, function(s) {
44863                 if (!s.match(/:/)) {
44864                     return;
44865                 }
44866                 var kv = s.split(":");
44867                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44868                     return;
44869                 }
44870                 // what ever is left... we allow.
44871                 nstyle.push(s);
44872             });
44873             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44874             if (!nstyle.length) {
44875                 node.removeAttribute('style');
44876             }
44877         }
44878         this.iterateChildren(node, this.cleanWord);
44879         
44880         
44881         
44882     },
44883     /**
44884      * iterateChildren of a Node, calling fn each time, using this as the scole..
44885      * @param {DomNode} node node to iterate children of.
44886      * @param {Function} fn method of this class to call on each item.
44887      */
44888     iterateChildren : function(node, fn)
44889     {
44890         if (!node.childNodes.length) {
44891                 return;
44892         }
44893         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44894            fn.call(this, node.childNodes[i])
44895         }
44896     },
44897     
44898     
44899     /**
44900      * cleanTableWidths.
44901      *
44902      * Quite often pasting from word etc.. results in tables with column and widths.
44903      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44904      *
44905      */
44906     cleanTableWidths : function(node)
44907     {
44908          
44909          
44910         if (!node) {
44911             this.cleanTableWidths(this.doc.body);
44912             return;
44913         }
44914         
44915         // ignore list...
44916         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44917             return; 
44918         }
44919         Roo.log(node.tagName);
44920         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44921             this.iterateChildren(node, this.cleanTableWidths);
44922             return;
44923         }
44924         if (node.hasAttribute('width')) {
44925             node.removeAttribute('width');
44926         }
44927         
44928          
44929         if (node.hasAttribute("style")) {
44930             // pretty basic...
44931             
44932             var styles = node.getAttribute("style").split(";");
44933             var nstyle = [];
44934             Roo.each(styles, function(s) {
44935                 if (!s.match(/:/)) {
44936                     return;
44937                 }
44938                 var kv = s.split(":");
44939                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44940                     return;
44941                 }
44942                 // what ever is left... we allow.
44943                 nstyle.push(s);
44944             });
44945             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44946             if (!nstyle.length) {
44947                 node.removeAttribute('style');
44948             }
44949         }
44950         
44951         this.iterateChildren(node, this.cleanTableWidths);
44952         
44953         
44954     },
44955     
44956     
44957     
44958     
44959     domToHTML : function(currentElement, depth, nopadtext) {
44960         
44961         depth = depth || 0;
44962         nopadtext = nopadtext || false;
44963     
44964         if (!currentElement) {
44965             return this.domToHTML(this.doc.body);
44966         }
44967         
44968         //Roo.log(currentElement);
44969         var j;
44970         var allText = false;
44971         var nodeName = currentElement.nodeName;
44972         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44973         
44974         if  (nodeName == '#text') {
44975             
44976             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44977         }
44978         
44979         
44980         var ret = '';
44981         if (nodeName != 'BODY') {
44982              
44983             var i = 0;
44984             // Prints the node tagName, such as <A>, <IMG>, etc
44985             if (tagName) {
44986                 var attr = [];
44987                 for(i = 0; i < currentElement.attributes.length;i++) {
44988                     // quoting?
44989                     var aname = currentElement.attributes.item(i).name;
44990                     if (!currentElement.attributes.item(i).value.length) {
44991                         continue;
44992                     }
44993                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44994                 }
44995                 
44996                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44997             } 
44998             else {
44999                 
45000                 // eack
45001             }
45002         } else {
45003             tagName = false;
45004         }
45005         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
45006             return ret;
45007         }
45008         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
45009             nopadtext = true;
45010         }
45011         
45012         
45013         // Traverse the tree
45014         i = 0;
45015         var currentElementChild = currentElement.childNodes.item(i);
45016         var allText = true;
45017         var innerHTML  = '';
45018         lastnode = '';
45019         while (currentElementChild) {
45020             // Formatting code (indent the tree so it looks nice on the screen)
45021             var nopad = nopadtext;
45022             if (lastnode == 'SPAN') {
45023                 nopad  = true;
45024             }
45025             // text
45026             if  (currentElementChild.nodeName == '#text') {
45027                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
45028                 toadd = nopadtext ? toadd : toadd.trim();
45029                 if (!nopad && toadd.length > 80) {
45030                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
45031                 }
45032                 innerHTML  += toadd;
45033                 
45034                 i++;
45035                 currentElementChild = currentElement.childNodes.item(i);
45036                 lastNode = '';
45037                 continue;
45038             }
45039             allText = false;
45040             
45041             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
45042                 
45043             // Recursively traverse the tree structure of the child node
45044             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
45045             lastnode = currentElementChild.nodeName;
45046             i++;
45047             currentElementChild=currentElement.childNodes.item(i);
45048         }
45049         
45050         ret += innerHTML;
45051         
45052         if (!allText) {
45053                 // The remaining code is mostly for formatting the tree
45054             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
45055         }
45056         
45057         
45058         if (tagName) {
45059             ret+= "</"+tagName+">";
45060         }
45061         return ret;
45062         
45063     },
45064         
45065     applyBlacklists : function()
45066     {
45067         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
45068         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
45069         
45070         this.white = [];
45071         this.black = [];
45072         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
45073             if (b.indexOf(tag) > -1) {
45074                 return;
45075             }
45076             this.white.push(tag);
45077             
45078         }, this);
45079         
45080         Roo.each(w, function(tag) {
45081             if (b.indexOf(tag) > -1) {
45082                 return;
45083             }
45084             if (this.white.indexOf(tag) > -1) {
45085                 return;
45086             }
45087             this.white.push(tag);
45088             
45089         }, this);
45090         
45091         
45092         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45093             if (w.indexOf(tag) > -1) {
45094                 return;
45095             }
45096             this.black.push(tag);
45097             
45098         }, this);
45099         
45100         Roo.each(b, function(tag) {
45101             if (w.indexOf(tag) > -1) {
45102                 return;
45103             }
45104             if (this.black.indexOf(tag) > -1) {
45105                 return;
45106             }
45107             this.black.push(tag);
45108             
45109         }, this);
45110         
45111         
45112         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45113         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45114         
45115         this.cwhite = [];
45116         this.cblack = [];
45117         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45118             if (b.indexOf(tag) > -1) {
45119                 return;
45120             }
45121             this.cwhite.push(tag);
45122             
45123         }, this);
45124         
45125         Roo.each(w, function(tag) {
45126             if (b.indexOf(tag) > -1) {
45127                 return;
45128             }
45129             if (this.cwhite.indexOf(tag) > -1) {
45130                 return;
45131             }
45132             this.cwhite.push(tag);
45133             
45134         }, this);
45135         
45136         
45137         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45138             if (w.indexOf(tag) > -1) {
45139                 return;
45140             }
45141             this.cblack.push(tag);
45142             
45143         }, this);
45144         
45145         Roo.each(b, function(tag) {
45146             if (w.indexOf(tag) > -1) {
45147                 return;
45148             }
45149             if (this.cblack.indexOf(tag) > -1) {
45150                 return;
45151             }
45152             this.cblack.push(tag);
45153             
45154         }, this);
45155     },
45156     
45157     setStylesheets : function(stylesheets)
45158     {
45159         if(typeof(stylesheets) == 'string'){
45160             Roo.get(this.iframe.contentDocument.head).createChild({
45161                 tag : 'link',
45162                 rel : 'stylesheet',
45163                 type : 'text/css',
45164                 href : stylesheets
45165             });
45166             
45167             return;
45168         }
45169         var _this = this;
45170      
45171         Roo.each(stylesheets, function(s) {
45172             if(!s.length){
45173                 return;
45174             }
45175             
45176             Roo.get(_this.iframe.contentDocument.head).createChild({
45177                 tag : 'link',
45178                 rel : 'stylesheet',
45179                 type : 'text/css',
45180                 href : s
45181             });
45182         });
45183
45184         
45185     },
45186     
45187     removeStylesheets : function()
45188     {
45189         var _this = this;
45190         
45191         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45192             s.remove();
45193         });
45194     },
45195     
45196     setStyle : function(style)
45197     {
45198         Roo.get(this.iframe.contentDocument.head).createChild({
45199             tag : 'style',
45200             type : 'text/css',
45201             html : style
45202         });
45203
45204         return;
45205     }
45206     
45207     // hide stuff that is not compatible
45208     /**
45209      * @event blur
45210      * @hide
45211      */
45212     /**
45213      * @event change
45214      * @hide
45215      */
45216     /**
45217      * @event focus
45218      * @hide
45219      */
45220     /**
45221      * @event specialkey
45222      * @hide
45223      */
45224     /**
45225      * @cfg {String} fieldClass @hide
45226      */
45227     /**
45228      * @cfg {String} focusClass @hide
45229      */
45230     /**
45231      * @cfg {String} autoCreate @hide
45232      */
45233     /**
45234      * @cfg {String} inputType @hide
45235      */
45236     /**
45237      * @cfg {String} invalidClass @hide
45238      */
45239     /**
45240      * @cfg {String} invalidText @hide
45241      */
45242     /**
45243      * @cfg {String} msgFx @hide
45244      */
45245     /**
45246      * @cfg {String} validateOnBlur @hide
45247      */
45248 });
45249
45250 Roo.HtmlEditorCore.white = [
45251         'area', 'br', 'img', 'input', 'hr', 'wbr',
45252         
45253        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45254        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45255        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45256        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45257        'table',   'ul',         'xmp', 
45258        
45259        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45260       'thead',   'tr', 
45261      
45262       'dir', 'menu', 'ol', 'ul', 'dl',
45263        
45264       'embed',  'object'
45265 ];
45266
45267
45268 Roo.HtmlEditorCore.black = [
45269     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45270         'applet', // 
45271         'base',   'basefont', 'bgsound', 'blink',  'body', 
45272         'frame',  'frameset', 'head',    'html',   'ilayer', 
45273         'iframe', 'layer',  'link',     'meta',    'object',   
45274         'script', 'style' ,'title',  'xml' // clean later..
45275 ];
45276 Roo.HtmlEditorCore.clean = [
45277     'script', 'style', 'title', 'xml'
45278 ];
45279 Roo.HtmlEditorCore.remove = [
45280     'font'
45281 ];
45282 // attributes..
45283
45284 Roo.HtmlEditorCore.ablack = [
45285     'on'
45286 ];
45287     
45288 Roo.HtmlEditorCore.aclean = [ 
45289     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45290 ];
45291
45292 // protocols..
45293 Roo.HtmlEditorCore.pwhite= [
45294         'http',  'https',  'mailto'
45295 ];
45296
45297 // white listed style attributes.
45298 Roo.HtmlEditorCore.cwhite= [
45299       //  'text-align', /// default is to allow most things..
45300       
45301          
45302 //        'font-size'//??
45303 ];
45304
45305 // black listed style attributes.
45306 Roo.HtmlEditorCore.cblack= [
45307       //  'font-size' -- this can be set by the project 
45308 ];
45309
45310
45311 Roo.HtmlEditorCore.swapCodes   =[ 
45312     [    8211, "&#8211;" ], 
45313     [    8212, "&#8212;" ], 
45314     [    8216,  "'" ],  
45315     [    8217, "'" ],  
45316     [    8220, '"' ],  
45317     [    8221, '"' ],  
45318     [    8226, "*" ],  
45319     [    8230, "..." ]
45320 ]; 
45321
45322     //<script type="text/javascript">
45323
45324 /*
45325  * Ext JS Library 1.1.1
45326  * Copyright(c) 2006-2007, Ext JS, LLC.
45327  * Licence LGPL
45328  * 
45329  */
45330  
45331  
45332 Roo.form.HtmlEditor = function(config){
45333     
45334     
45335     
45336     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45337     
45338     if (!this.toolbars) {
45339         this.toolbars = [];
45340     }
45341     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45342     
45343     
45344 };
45345
45346 /**
45347  * @class Roo.form.HtmlEditor
45348  * @extends Roo.form.Field
45349  * Provides a lightweight HTML Editor component.
45350  *
45351  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45352  * 
45353  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45354  * supported by this editor.</b><br/><br/>
45355  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45356  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45357  */
45358 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45359     /**
45360      * @cfg {Boolean} clearUp
45361      */
45362     clearUp : true,
45363       /**
45364      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45365      */
45366     toolbars : false,
45367    
45368      /**
45369      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45370      *                        Roo.resizable.
45371      */
45372     resizable : false,
45373      /**
45374      * @cfg {Number} height (in pixels)
45375      */   
45376     height: 300,
45377    /**
45378      * @cfg {Number} width (in pixels)
45379      */   
45380     width: 500,
45381     
45382     /**
45383      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45384      * 
45385      */
45386     stylesheets: false,
45387     
45388     
45389      /**
45390      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45391      * 
45392      */
45393     cblack: false,
45394     /**
45395      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45396      * 
45397      */
45398     cwhite: false,
45399     
45400      /**
45401      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45402      * 
45403      */
45404     black: false,
45405     /**
45406      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45407      * 
45408      */
45409     white: false,
45410     
45411     // id of frame..
45412     frameId: false,
45413     
45414     // private properties
45415     validationEvent : false,
45416     deferHeight: true,
45417     initialized : false,
45418     activated : false,
45419     
45420     onFocus : Roo.emptyFn,
45421     iframePad:3,
45422     hideMode:'offsets',
45423     
45424     actionMode : 'container', // defaults to hiding it...
45425     
45426     defaultAutoCreate : { // modified by initCompnoent..
45427         tag: "textarea",
45428         style:"width:500px;height:300px;",
45429         autocomplete: "new-password"
45430     },
45431
45432     // private
45433     initComponent : function(){
45434         this.addEvents({
45435             /**
45436              * @event initialize
45437              * Fires when the editor is fully initialized (including the iframe)
45438              * @param {HtmlEditor} this
45439              */
45440             initialize: true,
45441             /**
45442              * @event activate
45443              * Fires when the editor is first receives the focus. Any insertion must wait
45444              * until after this event.
45445              * @param {HtmlEditor} this
45446              */
45447             activate: true,
45448              /**
45449              * @event beforesync
45450              * Fires before the textarea is updated with content from the editor iframe. Return false
45451              * to cancel the sync.
45452              * @param {HtmlEditor} this
45453              * @param {String} html
45454              */
45455             beforesync: true,
45456              /**
45457              * @event beforepush
45458              * Fires before the iframe editor is updated with content from the textarea. Return false
45459              * to cancel the push.
45460              * @param {HtmlEditor} this
45461              * @param {String} html
45462              */
45463             beforepush: true,
45464              /**
45465              * @event sync
45466              * Fires when the textarea is updated with content from the editor iframe.
45467              * @param {HtmlEditor} this
45468              * @param {String} html
45469              */
45470             sync: true,
45471              /**
45472              * @event push
45473              * Fires when the iframe editor is updated with content from the textarea.
45474              * @param {HtmlEditor} this
45475              * @param {String} html
45476              */
45477             push: true,
45478              /**
45479              * @event editmodechange
45480              * Fires when the editor switches edit modes
45481              * @param {HtmlEditor} this
45482              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45483              */
45484             editmodechange: true,
45485             /**
45486              * @event editorevent
45487              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45488              * @param {HtmlEditor} this
45489              */
45490             editorevent: true,
45491             /**
45492              * @event firstfocus
45493              * Fires when on first focus - needed by toolbars..
45494              * @param {HtmlEditor} this
45495              */
45496             firstfocus: true,
45497             /**
45498              * @event autosave
45499              * Auto save the htmlEditor value as a file into Events
45500              * @param {HtmlEditor} this
45501              */
45502             autosave: true,
45503             /**
45504              * @event savedpreview
45505              * preview the saved version of htmlEditor
45506              * @param {HtmlEditor} this
45507              */
45508             savedpreview: true,
45509             
45510             /**
45511             * @event stylesheetsclick
45512             * Fires when press the Sytlesheets button
45513             * @param {Roo.HtmlEditorCore} this
45514             */
45515             stylesheetsclick: true
45516         });
45517         this.defaultAutoCreate =  {
45518             tag: "textarea",
45519             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45520             autocomplete: "new-password"
45521         };
45522     },
45523
45524     /**
45525      * Protected method that will not generally be called directly. It
45526      * is called when the editor creates its toolbar. Override this method if you need to
45527      * add custom toolbar buttons.
45528      * @param {HtmlEditor} editor
45529      */
45530     createToolbar : function(editor){
45531         Roo.log("create toolbars");
45532         if (!editor.toolbars || !editor.toolbars.length) {
45533             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45534         }
45535         
45536         for (var i =0 ; i < editor.toolbars.length;i++) {
45537             editor.toolbars[i] = Roo.factory(
45538                     typeof(editor.toolbars[i]) == 'string' ?
45539                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45540                 Roo.form.HtmlEditor);
45541             editor.toolbars[i].init(editor);
45542         }
45543          
45544         
45545     },
45546
45547      
45548     // private
45549     onRender : function(ct, position)
45550     {
45551         var _t = this;
45552         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45553         
45554         this.wrap = this.el.wrap({
45555             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45556         });
45557         
45558         this.editorcore.onRender(ct, position);
45559          
45560         if (this.resizable) {
45561             this.resizeEl = new Roo.Resizable(this.wrap, {
45562                 pinned : true,
45563                 wrap: true,
45564                 dynamic : true,
45565                 minHeight : this.height,
45566                 height: this.height,
45567                 handles : this.resizable,
45568                 width: this.width,
45569                 listeners : {
45570                     resize : function(r, w, h) {
45571                         _t.onResize(w,h); // -something
45572                     }
45573                 }
45574             });
45575             
45576         }
45577         this.createToolbar(this);
45578        
45579         
45580         if(!this.width){
45581             this.setSize(this.wrap.getSize());
45582         }
45583         if (this.resizeEl) {
45584             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45585             // should trigger onReize..
45586         }
45587         
45588         this.keyNav = new Roo.KeyNav(this.el, {
45589             
45590             "tab" : function(e){
45591                 e.preventDefault();
45592                 
45593                 var value = this.getValue();
45594                 
45595                 var start = this.el.dom.selectionStart;
45596                 var end = this.el.dom.selectionEnd;
45597                 
45598                 if(!e.shiftKey){
45599                     
45600                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45601                     this.el.dom.setSelectionRange(end + 1, end + 1);
45602                     return;
45603                 }
45604                 
45605                 var f = value.substring(0, start).split("\t");
45606                 
45607                 if(f.pop().length != 0){
45608                     return;
45609                 }
45610                 
45611                 this.setValue(f.join("\t") + value.substring(end));
45612                 this.el.dom.setSelectionRange(start - 1, start - 1);
45613                 
45614             },
45615             
45616             "home" : function(e){
45617                 e.preventDefault();
45618                 
45619                 var curr = this.el.dom.selectionStart;
45620                 var lines = this.getValue().split("\n");
45621                 
45622                 if(!lines.length){
45623                     return;
45624                 }
45625                 
45626                 if(e.ctrlKey){
45627                     this.el.dom.setSelectionRange(0, 0);
45628                     return;
45629                 }
45630                 
45631                 var pos = 0;
45632                 
45633                 for (var i = 0; i < lines.length;i++) {
45634                     pos += lines[i].length;
45635                     
45636                     if(i != 0){
45637                         pos += 1;
45638                     }
45639                     
45640                     if(pos < curr){
45641                         continue;
45642                     }
45643                     
45644                     pos -= lines[i].length;
45645                     
45646                     break;
45647                 }
45648                 
45649                 if(!e.shiftKey){
45650                     this.el.dom.setSelectionRange(pos, pos);
45651                     return;
45652                 }
45653                 
45654                 this.el.dom.selectionStart = pos;
45655                 this.el.dom.selectionEnd = curr;
45656             },
45657             
45658             "end" : function(e){
45659                 e.preventDefault();
45660                 
45661                 var curr = this.el.dom.selectionStart;
45662                 var lines = this.getValue().split("\n");
45663                 
45664                 if(!lines.length){
45665                     return;
45666                 }
45667                 
45668                 if(e.ctrlKey){
45669                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45670                     return;
45671                 }
45672                 
45673                 var pos = 0;
45674                 
45675                 for (var i = 0; i < lines.length;i++) {
45676                     
45677                     pos += lines[i].length;
45678                     
45679                     if(i != 0){
45680                         pos += 1;
45681                     }
45682                     
45683                     if(pos < curr){
45684                         continue;
45685                     }
45686                     
45687                     break;
45688                 }
45689                 
45690                 if(!e.shiftKey){
45691                     this.el.dom.setSelectionRange(pos, pos);
45692                     return;
45693                 }
45694                 
45695                 this.el.dom.selectionStart = curr;
45696                 this.el.dom.selectionEnd = pos;
45697             },
45698
45699             scope : this,
45700
45701             doRelay : function(foo, bar, hname){
45702                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45703             },
45704
45705             forceKeyDown: true
45706         });
45707         
45708 //        if(this.autosave && this.w){
45709 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45710 //        }
45711     },
45712
45713     // private
45714     onResize : function(w, h)
45715     {
45716         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45717         var ew = false;
45718         var eh = false;
45719         
45720         if(this.el ){
45721             if(typeof w == 'number'){
45722                 var aw = w - this.wrap.getFrameWidth('lr');
45723                 this.el.setWidth(this.adjustWidth('textarea', aw));
45724                 ew = aw;
45725             }
45726             if(typeof h == 'number'){
45727                 var tbh = 0;
45728                 for (var i =0; i < this.toolbars.length;i++) {
45729                     // fixme - ask toolbars for heights?
45730                     tbh += this.toolbars[i].tb.el.getHeight();
45731                     if (this.toolbars[i].footer) {
45732                         tbh += this.toolbars[i].footer.el.getHeight();
45733                     }
45734                 }
45735                 
45736                 
45737                 
45738                 
45739                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45740                 ah -= 5; // knock a few pixes off for look..
45741 //                Roo.log(ah);
45742                 this.el.setHeight(this.adjustWidth('textarea', ah));
45743                 var eh = ah;
45744             }
45745         }
45746         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45747         this.editorcore.onResize(ew,eh);
45748         
45749     },
45750
45751     /**
45752      * Toggles the editor between standard and source edit mode.
45753      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45754      */
45755     toggleSourceEdit : function(sourceEditMode)
45756     {
45757         this.editorcore.toggleSourceEdit(sourceEditMode);
45758         
45759         if(this.editorcore.sourceEditMode){
45760             Roo.log('editor - showing textarea');
45761             
45762 //            Roo.log('in');
45763 //            Roo.log(this.syncValue());
45764             this.editorcore.syncValue();
45765             this.el.removeClass('x-hidden');
45766             this.el.dom.removeAttribute('tabIndex');
45767             this.el.focus();
45768             
45769             for (var i = 0; i < this.toolbars.length; i++) {
45770                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45771                     this.toolbars[i].tb.hide();
45772                     this.toolbars[i].footer.hide();
45773                 }
45774             }
45775             
45776         }else{
45777             Roo.log('editor - hiding textarea');
45778 //            Roo.log('out')
45779 //            Roo.log(this.pushValue()); 
45780             this.editorcore.pushValue();
45781             
45782             this.el.addClass('x-hidden');
45783             this.el.dom.setAttribute('tabIndex', -1);
45784             
45785             for (var i = 0; i < this.toolbars.length; i++) {
45786                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45787                     this.toolbars[i].tb.show();
45788                     this.toolbars[i].footer.show();
45789                 }
45790             }
45791             
45792             //this.deferFocus();
45793         }
45794         
45795         this.setSize(this.wrap.getSize());
45796         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45797         
45798         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45799     },
45800  
45801     // private (for BoxComponent)
45802     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45803
45804     // private (for BoxComponent)
45805     getResizeEl : function(){
45806         return this.wrap;
45807     },
45808
45809     // private (for BoxComponent)
45810     getPositionEl : function(){
45811         return this.wrap;
45812     },
45813
45814     // private
45815     initEvents : function(){
45816         this.originalValue = this.getValue();
45817     },
45818
45819     /**
45820      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45821      * @method
45822      */
45823     markInvalid : Roo.emptyFn,
45824     /**
45825      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45826      * @method
45827      */
45828     clearInvalid : Roo.emptyFn,
45829
45830     setValue : function(v){
45831         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45832         this.editorcore.pushValue();
45833     },
45834
45835      
45836     // private
45837     deferFocus : function(){
45838         this.focus.defer(10, this);
45839     },
45840
45841     // doc'ed in Field
45842     focus : function(){
45843         this.editorcore.focus();
45844         
45845     },
45846       
45847
45848     // private
45849     onDestroy : function(){
45850         
45851         
45852         
45853         if(this.rendered){
45854             
45855             for (var i =0; i < this.toolbars.length;i++) {
45856                 // fixme - ask toolbars for heights?
45857                 this.toolbars[i].onDestroy();
45858             }
45859             
45860             this.wrap.dom.innerHTML = '';
45861             this.wrap.remove();
45862         }
45863     },
45864
45865     // private
45866     onFirstFocus : function(){
45867         //Roo.log("onFirstFocus");
45868         this.editorcore.onFirstFocus();
45869          for (var i =0; i < this.toolbars.length;i++) {
45870             this.toolbars[i].onFirstFocus();
45871         }
45872         
45873     },
45874     
45875     // private
45876     syncValue : function()
45877     {
45878         this.editorcore.syncValue();
45879     },
45880     
45881     pushValue : function()
45882     {
45883         this.editorcore.pushValue();
45884     },
45885     
45886     setStylesheets : function(stylesheets)
45887     {
45888         this.editorcore.setStylesheets(stylesheets);
45889     },
45890     
45891     removeStylesheets : function()
45892     {
45893         this.editorcore.removeStylesheets();
45894     }
45895      
45896     
45897     // hide stuff that is not compatible
45898     /**
45899      * @event blur
45900      * @hide
45901      */
45902     /**
45903      * @event change
45904      * @hide
45905      */
45906     /**
45907      * @event focus
45908      * @hide
45909      */
45910     /**
45911      * @event specialkey
45912      * @hide
45913      */
45914     /**
45915      * @cfg {String} fieldClass @hide
45916      */
45917     /**
45918      * @cfg {String} focusClass @hide
45919      */
45920     /**
45921      * @cfg {String} autoCreate @hide
45922      */
45923     /**
45924      * @cfg {String} inputType @hide
45925      */
45926     /**
45927      * @cfg {String} invalidClass @hide
45928      */
45929     /**
45930      * @cfg {String} invalidText @hide
45931      */
45932     /**
45933      * @cfg {String} msgFx @hide
45934      */
45935     /**
45936      * @cfg {String} validateOnBlur @hide
45937      */
45938 });
45939  
45940     // <script type="text/javascript">
45941 /*
45942  * Based on
45943  * Ext JS Library 1.1.1
45944  * Copyright(c) 2006-2007, Ext JS, LLC.
45945  *  
45946  
45947  */
45948
45949 /**
45950  * @class Roo.form.HtmlEditorToolbar1
45951  * Basic Toolbar
45952  * 
45953  * Usage:
45954  *
45955  new Roo.form.HtmlEditor({
45956     ....
45957     toolbars : [
45958         new Roo.form.HtmlEditorToolbar1({
45959             disable : { fonts: 1 , format: 1, ..., ... , ...],
45960             btns : [ .... ]
45961         })
45962     }
45963      
45964  * 
45965  * @cfg {Object} disable List of elements to disable..
45966  * @cfg {Array} btns List of additional buttons.
45967  * 
45968  * 
45969  * NEEDS Extra CSS? 
45970  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45971  */
45972  
45973 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45974 {
45975     
45976     Roo.apply(this, config);
45977     
45978     // default disabled, based on 'good practice'..
45979     this.disable = this.disable || {};
45980     Roo.applyIf(this.disable, {
45981         fontSize : true,
45982         colors : true,
45983         specialElements : true
45984     });
45985     
45986     
45987     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45988     // dont call parent... till later.
45989 }
45990
45991 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45992     
45993     tb: false,
45994     
45995     rendered: false,
45996     
45997     editor : false,
45998     editorcore : false,
45999     /**
46000      * @cfg {Object} disable  List of toolbar elements to disable
46001          
46002      */
46003     disable : false,
46004     
46005     
46006      /**
46007      * @cfg {String} createLinkText The default text for the create link prompt
46008      */
46009     createLinkText : 'Please enter the URL for the link:',
46010     /**
46011      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
46012      */
46013     defaultLinkValue : 'http:/'+'/',
46014    
46015     
46016       /**
46017      * @cfg {Array} fontFamilies An array of available font families
46018      */
46019     fontFamilies : [
46020         'Arial',
46021         'Courier New',
46022         'Tahoma',
46023         'Times New Roman',
46024         'Verdana'
46025     ],
46026     
46027     specialChars : [
46028            "&#169;",
46029           "&#174;",     
46030           "&#8482;",    
46031           "&#163;" ,    
46032          // "&#8212;",    
46033           "&#8230;",    
46034           "&#247;" ,    
46035         //  "&#225;" ,     ?? a acute?
46036            "&#8364;"    , //Euro
46037        //   "&#8220;"    ,
46038         //  "&#8221;"    ,
46039         //  "&#8226;"    ,
46040           "&#176;"  //   , // degrees
46041
46042          // "&#233;"     , // e ecute
46043          // "&#250;"     , // u ecute?
46044     ],
46045     
46046     specialElements : [
46047         {
46048             text: "Insert Table",
46049             xtype: 'MenuItem',
46050             xns : Roo.Menu,
46051             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
46052                 
46053         },
46054         {    
46055             text: "Insert Image",
46056             xtype: 'MenuItem',
46057             xns : Roo.Menu,
46058             ihtml : '<img src="about:blank"/>'
46059             
46060         }
46061         
46062          
46063     ],
46064     
46065     
46066     inputElements : [ 
46067             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
46068             "input:submit", "input:button", "select", "textarea", "label" ],
46069     formats : [
46070         ["p"] ,  
46071         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
46072         ["pre"],[ "code"], 
46073         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
46074         ['div'],['span'],
46075         ['sup'],['sub']
46076     ],
46077     
46078     cleanStyles : [
46079         "font-size"
46080     ],
46081      /**
46082      * @cfg {String} defaultFont default font to use.
46083      */
46084     defaultFont: 'tahoma',
46085    
46086     fontSelect : false,
46087     
46088     
46089     formatCombo : false,
46090     
46091     init : function(editor)
46092     {
46093         this.editor = editor;
46094         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46095         var editorcore = this.editorcore;
46096         
46097         var _t = this;
46098         
46099         var fid = editorcore.frameId;
46100         var etb = this;
46101         function btn(id, toggle, handler){
46102             var xid = fid + '-'+ id ;
46103             return {
46104                 id : xid,
46105                 cmd : id,
46106                 cls : 'x-btn-icon x-edit-'+id,
46107                 enableToggle:toggle !== false,
46108                 scope: _t, // was editor...
46109                 handler:handler||_t.relayBtnCmd,
46110                 clickEvent:'mousedown',
46111                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46112                 tabIndex:-1
46113             };
46114         }
46115         
46116         
46117         
46118         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46119         this.tb = tb;
46120          // stop form submits
46121         tb.el.on('click', function(e){
46122             e.preventDefault(); // what does this do?
46123         });
46124
46125         if(!this.disable.font) { // && !Roo.isSafari){
46126             /* why no safari for fonts 
46127             editor.fontSelect = tb.el.createChild({
46128                 tag:'select',
46129                 tabIndex: -1,
46130                 cls:'x-font-select',
46131                 html: this.createFontOptions()
46132             });
46133             
46134             editor.fontSelect.on('change', function(){
46135                 var font = editor.fontSelect.dom.value;
46136                 editor.relayCmd('fontname', font);
46137                 editor.deferFocus();
46138             }, editor);
46139             
46140             tb.add(
46141                 editor.fontSelect.dom,
46142                 '-'
46143             );
46144             */
46145             
46146         };
46147         if(!this.disable.formats){
46148             this.formatCombo = new Roo.form.ComboBox({
46149                 store: new Roo.data.SimpleStore({
46150                     id : 'tag',
46151                     fields: ['tag'],
46152                     data : this.formats // from states.js
46153                 }),
46154                 blockFocus : true,
46155                 name : '',
46156                 //autoCreate : {tag: "div",  size: "20"},
46157                 displayField:'tag',
46158                 typeAhead: false,
46159                 mode: 'local',
46160                 editable : false,
46161                 triggerAction: 'all',
46162                 emptyText:'Add tag',
46163                 selectOnFocus:true,
46164                 width:135,
46165                 listeners : {
46166                     'select': function(c, r, i) {
46167                         editorcore.insertTag(r.get('tag'));
46168                         editor.focus();
46169                     }
46170                 }
46171
46172             });
46173             tb.addField(this.formatCombo);
46174             
46175         }
46176         
46177         if(!this.disable.format){
46178             tb.add(
46179                 btn('bold'),
46180                 btn('italic'),
46181                 btn('underline'),
46182                 btn('strikethrough')
46183             );
46184         };
46185         if(!this.disable.fontSize){
46186             tb.add(
46187                 '-',
46188                 
46189                 
46190                 btn('increasefontsize', false, editorcore.adjustFont),
46191                 btn('decreasefontsize', false, editorcore.adjustFont)
46192             );
46193         };
46194         
46195         
46196         if(!this.disable.colors){
46197             tb.add(
46198                 '-', {
46199                     id:editorcore.frameId +'-forecolor',
46200                     cls:'x-btn-icon x-edit-forecolor',
46201                     clickEvent:'mousedown',
46202                     tooltip: this.buttonTips['forecolor'] || undefined,
46203                     tabIndex:-1,
46204                     menu : new Roo.menu.ColorMenu({
46205                         allowReselect: true,
46206                         focus: Roo.emptyFn,
46207                         value:'000000',
46208                         plain:true,
46209                         selectHandler: function(cp, color){
46210                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46211                             editor.deferFocus();
46212                         },
46213                         scope: editorcore,
46214                         clickEvent:'mousedown'
46215                     })
46216                 }, {
46217                     id:editorcore.frameId +'backcolor',
46218                     cls:'x-btn-icon x-edit-backcolor',
46219                     clickEvent:'mousedown',
46220                     tooltip: this.buttonTips['backcolor'] || undefined,
46221                     tabIndex:-1,
46222                     menu : new Roo.menu.ColorMenu({
46223                         focus: Roo.emptyFn,
46224                         value:'FFFFFF',
46225                         plain:true,
46226                         allowReselect: true,
46227                         selectHandler: function(cp, color){
46228                             if(Roo.isGecko){
46229                                 editorcore.execCmd('useCSS', false);
46230                                 editorcore.execCmd('hilitecolor', color);
46231                                 editorcore.execCmd('useCSS', true);
46232                                 editor.deferFocus();
46233                             }else{
46234                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46235                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46236                                 editor.deferFocus();
46237                             }
46238                         },
46239                         scope:editorcore,
46240                         clickEvent:'mousedown'
46241                     })
46242                 }
46243             );
46244         };
46245         // now add all the items...
46246         
46247
46248         if(!this.disable.alignments){
46249             tb.add(
46250                 '-',
46251                 btn('justifyleft'),
46252                 btn('justifycenter'),
46253                 btn('justifyright')
46254             );
46255         };
46256
46257         //if(!Roo.isSafari){
46258             if(!this.disable.links){
46259                 tb.add(
46260                     '-',
46261                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46262                 );
46263             };
46264
46265             if(!this.disable.lists){
46266                 tb.add(
46267                     '-',
46268                     btn('insertorderedlist'),
46269                     btn('insertunorderedlist')
46270                 );
46271             }
46272             if(!this.disable.sourceEdit){
46273                 tb.add(
46274                     '-',
46275                     btn('sourceedit', true, function(btn){
46276                         this.toggleSourceEdit(btn.pressed);
46277                     })
46278                 );
46279             }
46280         //}
46281         
46282         var smenu = { };
46283         // special menu.. - needs to be tidied up..
46284         if (!this.disable.special) {
46285             smenu = {
46286                 text: "&#169;",
46287                 cls: 'x-edit-none',
46288                 
46289                 menu : {
46290                     items : []
46291                 }
46292             };
46293             for (var i =0; i < this.specialChars.length; i++) {
46294                 smenu.menu.items.push({
46295                     
46296                     html: this.specialChars[i],
46297                     handler: function(a,b) {
46298                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46299                         //editor.insertAtCursor(a.html);
46300                         
46301                     },
46302                     tabIndex:-1
46303                 });
46304             }
46305             
46306             
46307             tb.add(smenu);
46308             
46309             
46310         }
46311         
46312         var cmenu = { };
46313         if (!this.disable.cleanStyles) {
46314             cmenu = {
46315                 cls: 'x-btn-icon x-btn-clear',
46316                 
46317                 menu : {
46318                     items : []
46319                 }
46320             };
46321             for (var i =0; i < this.cleanStyles.length; i++) {
46322                 cmenu.menu.items.push({
46323                     actiontype : this.cleanStyles[i],
46324                     html: 'Remove ' + this.cleanStyles[i],
46325                     handler: function(a,b) {
46326 //                        Roo.log(a);
46327 //                        Roo.log(b);
46328                         var c = Roo.get(editorcore.doc.body);
46329                         c.select('[style]').each(function(s) {
46330                             s.dom.style.removeProperty(a.actiontype);
46331                         });
46332                         editorcore.syncValue();
46333                     },
46334                     tabIndex:-1
46335                 });
46336             }
46337              cmenu.menu.items.push({
46338                 actiontype : 'tablewidths',
46339                 html: 'Remove Table Widths',
46340                 handler: function(a,b) {
46341                     editorcore.cleanTableWidths();
46342                     editorcore.syncValue();
46343                 },
46344                 tabIndex:-1
46345             });
46346             cmenu.menu.items.push({
46347                 actiontype : 'word',
46348                 html: 'Remove MS Word Formating',
46349                 handler: function(a,b) {
46350                     editorcore.cleanWord();
46351                     editorcore.syncValue();
46352                 },
46353                 tabIndex:-1
46354             });
46355             
46356             cmenu.menu.items.push({
46357                 actiontype : 'all',
46358                 html: 'Remove All Styles',
46359                 handler: function(a,b) {
46360                     
46361                     var c = Roo.get(editorcore.doc.body);
46362                     c.select('[style]').each(function(s) {
46363                         s.dom.removeAttribute('style');
46364                     });
46365                     editorcore.syncValue();
46366                 },
46367                 tabIndex:-1
46368             });
46369             
46370             cmenu.menu.items.push({
46371                 actiontype : 'all',
46372                 html: 'Remove All CSS Classes',
46373                 handler: function(a,b) {
46374                     
46375                     var c = Roo.get(editorcore.doc.body);
46376                     c.select('[class]').each(function(s) {
46377                         s.dom.removeAttribute('class');
46378                     });
46379                     editorcore.cleanWord();
46380                     editorcore.syncValue();
46381                 },
46382                 tabIndex:-1
46383             });
46384             
46385              cmenu.menu.items.push({
46386                 actiontype : 'tidy',
46387                 html: 'Tidy HTML Source',
46388                 handler: function(a,b) {
46389                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46390                     editorcore.syncValue();
46391                 },
46392                 tabIndex:-1
46393             });
46394             
46395             
46396             tb.add(cmenu);
46397         }
46398          
46399         if (!this.disable.specialElements) {
46400             var semenu = {
46401                 text: "Other;",
46402                 cls: 'x-edit-none',
46403                 menu : {
46404                     items : []
46405                 }
46406             };
46407             for (var i =0; i < this.specialElements.length; i++) {
46408                 semenu.menu.items.push(
46409                     Roo.apply({ 
46410                         handler: function(a,b) {
46411                             editor.insertAtCursor(this.ihtml);
46412                         }
46413                     }, this.specialElements[i])
46414                 );
46415                     
46416             }
46417             
46418             tb.add(semenu);
46419             
46420             
46421         }
46422          
46423         
46424         if (this.btns) {
46425             for(var i =0; i< this.btns.length;i++) {
46426                 var b = Roo.factory(this.btns[i],Roo.form);
46427                 b.cls =  'x-edit-none';
46428                 
46429                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46430                     b.cls += ' x-init-enable';
46431                 }
46432                 
46433                 b.scope = editorcore;
46434                 tb.add(b);
46435             }
46436         
46437         }
46438         
46439         
46440         
46441         // disable everything...
46442         
46443         this.tb.items.each(function(item){
46444             
46445            if(
46446                 item.id != editorcore.frameId+ '-sourceedit' && 
46447                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46448             ){
46449                 
46450                 item.disable();
46451             }
46452         });
46453         this.rendered = true;
46454         
46455         // the all the btns;
46456         editor.on('editorevent', this.updateToolbar, this);
46457         // other toolbars need to implement this..
46458         //editor.on('editmodechange', this.updateToolbar, this);
46459     },
46460     
46461     
46462     relayBtnCmd : function(btn) {
46463         this.editorcore.relayCmd(btn.cmd);
46464     },
46465     // private used internally
46466     createLink : function(){
46467         Roo.log("create link?");
46468         var url = prompt(this.createLinkText, this.defaultLinkValue);
46469         if(url && url != 'http:/'+'/'){
46470             this.editorcore.relayCmd('createlink', url);
46471         }
46472     },
46473
46474     
46475     /**
46476      * Protected method that will not generally be called directly. It triggers
46477      * a toolbar update by reading the markup state of the current selection in the editor.
46478      */
46479     updateToolbar: function(){
46480
46481         if(!this.editorcore.activated){
46482             this.editor.onFirstFocus();
46483             return;
46484         }
46485
46486         var btns = this.tb.items.map, 
46487             doc = this.editorcore.doc,
46488             frameId = this.editorcore.frameId;
46489
46490         if(!this.disable.font && !Roo.isSafari){
46491             /*
46492             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46493             if(name != this.fontSelect.dom.value){
46494                 this.fontSelect.dom.value = name;
46495             }
46496             */
46497         }
46498         if(!this.disable.format){
46499             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46500             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46501             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46502             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46503         }
46504         if(!this.disable.alignments){
46505             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46506             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46507             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46508         }
46509         if(!Roo.isSafari && !this.disable.lists){
46510             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46511             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46512         }
46513         
46514         var ans = this.editorcore.getAllAncestors();
46515         if (this.formatCombo) {
46516             
46517             
46518             var store = this.formatCombo.store;
46519             this.formatCombo.setValue("");
46520             for (var i =0; i < ans.length;i++) {
46521                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46522                     // select it..
46523                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46524                     break;
46525                 }
46526             }
46527         }
46528         
46529         
46530         
46531         // hides menus... - so this cant be on a menu...
46532         Roo.menu.MenuMgr.hideAll();
46533
46534         //this.editorsyncValue();
46535     },
46536    
46537     
46538     createFontOptions : function(){
46539         var buf = [], fs = this.fontFamilies, ff, lc;
46540         
46541         
46542         
46543         for(var i = 0, len = fs.length; i< len; i++){
46544             ff = fs[i];
46545             lc = ff.toLowerCase();
46546             buf.push(
46547                 '<option value="',lc,'" style="font-family:',ff,';"',
46548                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46549                     ff,
46550                 '</option>'
46551             );
46552         }
46553         return buf.join('');
46554     },
46555     
46556     toggleSourceEdit : function(sourceEditMode){
46557         
46558         Roo.log("toolbar toogle");
46559         if(sourceEditMode === undefined){
46560             sourceEditMode = !this.sourceEditMode;
46561         }
46562         this.sourceEditMode = sourceEditMode === true;
46563         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46564         // just toggle the button?
46565         if(btn.pressed !== this.sourceEditMode){
46566             btn.toggle(this.sourceEditMode);
46567             return;
46568         }
46569         
46570         if(sourceEditMode){
46571             Roo.log("disabling buttons");
46572             this.tb.items.each(function(item){
46573                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46574                     item.disable();
46575                 }
46576             });
46577           
46578         }else{
46579             Roo.log("enabling buttons");
46580             if(this.editorcore.initialized){
46581                 this.tb.items.each(function(item){
46582                     item.enable();
46583                 });
46584             }
46585             
46586         }
46587         Roo.log("calling toggole on editor");
46588         // tell the editor that it's been pressed..
46589         this.editor.toggleSourceEdit(sourceEditMode);
46590        
46591     },
46592      /**
46593      * Object collection of toolbar tooltips for the buttons in the editor. The key
46594      * is the command id associated with that button and the value is a valid QuickTips object.
46595      * For example:
46596 <pre><code>
46597 {
46598     bold : {
46599         title: 'Bold (Ctrl+B)',
46600         text: 'Make the selected text bold.',
46601         cls: 'x-html-editor-tip'
46602     },
46603     italic : {
46604         title: 'Italic (Ctrl+I)',
46605         text: 'Make the selected text italic.',
46606         cls: 'x-html-editor-tip'
46607     },
46608     ...
46609 </code></pre>
46610     * @type Object
46611      */
46612     buttonTips : {
46613         bold : {
46614             title: 'Bold (Ctrl+B)',
46615             text: 'Make the selected text bold.',
46616             cls: 'x-html-editor-tip'
46617         },
46618         italic : {
46619             title: 'Italic (Ctrl+I)',
46620             text: 'Make the selected text italic.',
46621             cls: 'x-html-editor-tip'
46622         },
46623         underline : {
46624             title: 'Underline (Ctrl+U)',
46625             text: 'Underline the selected text.',
46626             cls: 'x-html-editor-tip'
46627         },
46628         strikethrough : {
46629             title: 'Strikethrough',
46630             text: 'Strikethrough the selected text.',
46631             cls: 'x-html-editor-tip'
46632         },
46633         increasefontsize : {
46634             title: 'Grow Text',
46635             text: 'Increase the font size.',
46636             cls: 'x-html-editor-tip'
46637         },
46638         decreasefontsize : {
46639             title: 'Shrink Text',
46640             text: 'Decrease the font size.',
46641             cls: 'x-html-editor-tip'
46642         },
46643         backcolor : {
46644             title: 'Text Highlight Color',
46645             text: 'Change the background color of the selected text.',
46646             cls: 'x-html-editor-tip'
46647         },
46648         forecolor : {
46649             title: 'Font Color',
46650             text: 'Change the color of the selected text.',
46651             cls: 'x-html-editor-tip'
46652         },
46653         justifyleft : {
46654             title: 'Align Text Left',
46655             text: 'Align text to the left.',
46656             cls: 'x-html-editor-tip'
46657         },
46658         justifycenter : {
46659             title: 'Center Text',
46660             text: 'Center text in the editor.',
46661             cls: 'x-html-editor-tip'
46662         },
46663         justifyright : {
46664             title: 'Align Text Right',
46665             text: 'Align text to the right.',
46666             cls: 'x-html-editor-tip'
46667         },
46668         insertunorderedlist : {
46669             title: 'Bullet List',
46670             text: 'Start a bulleted list.',
46671             cls: 'x-html-editor-tip'
46672         },
46673         insertorderedlist : {
46674             title: 'Numbered List',
46675             text: 'Start a numbered list.',
46676             cls: 'x-html-editor-tip'
46677         },
46678         createlink : {
46679             title: 'Hyperlink',
46680             text: 'Make the selected text a hyperlink.',
46681             cls: 'x-html-editor-tip'
46682         },
46683         sourceedit : {
46684             title: 'Source Edit',
46685             text: 'Switch to source editing mode.',
46686             cls: 'x-html-editor-tip'
46687         }
46688     },
46689     // private
46690     onDestroy : function(){
46691         if(this.rendered){
46692             
46693             this.tb.items.each(function(item){
46694                 if(item.menu){
46695                     item.menu.removeAll();
46696                     if(item.menu.el){
46697                         item.menu.el.destroy();
46698                     }
46699                 }
46700                 item.destroy();
46701             });
46702              
46703         }
46704     },
46705     onFirstFocus: function() {
46706         this.tb.items.each(function(item){
46707            item.enable();
46708         });
46709     }
46710 });
46711
46712
46713
46714
46715 // <script type="text/javascript">
46716 /*
46717  * Based on
46718  * Ext JS Library 1.1.1
46719  * Copyright(c) 2006-2007, Ext JS, LLC.
46720  *  
46721  
46722  */
46723
46724  
46725 /**
46726  * @class Roo.form.HtmlEditor.ToolbarContext
46727  * Context Toolbar
46728  * 
46729  * Usage:
46730  *
46731  new Roo.form.HtmlEditor({
46732     ....
46733     toolbars : [
46734         { xtype: 'ToolbarStandard', styles : {} }
46735         { xtype: 'ToolbarContext', disable : {} }
46736     ]
46737 })
46738
46739      
46740  * 
46741  * @config : {Object} disable List of elements to disable.. (not done yet.)
46742  * @config : {Object} styles  Map of styles available.
46743  * 
46744  */
46745
46746 Roo.form.HtmlEditor.ToolbarContext = function(config)
46747 {
46748     
46749     Roo.apply(this, config);
46750     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46751     // dont call parent... till later.
46752     this.styles = this.styles || {};
46753 }
46754
46755  
46756
46757 Roo.form.HtmlEditor.ToolbarContext.types = {
46758     'IMG' : {
46759         width : {
46760             title: "Width",
46761             width: 40
46762         },
46763         height:  {
46764             title: "Height",
46765             width: 40
46766         },
46767         align: {
46768             title: "Align",
46769             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46770             width : 80
46771             
46772         },
46773         border: {
46774             title: "Border",
46775             width: 40
46776         },
46777         alt: {
46778             title: "Alt",
46779             width: 120
46780         },
46781         src : {
46782             title: "Src",
46783             width: 220
46784         }
46785         
46786     },
46787     'A' : {
46788         name : {
46789             title: "Name",
46790             width: 50
46791         },
46792         target:  {
46793             title: "Target",
46794             width: 120
46795         },
46796         href:  {
46797             title: "Href",
46798             width: 220
46799         } // border?
46800         
46801     },
46802     'TABLE' : {
46803         rows : {
46804             title: "Rows",
46805             width: 20
46806         },
46807         cols : {
46808             title: "Cols",
46809             width: 20
46810         },
46811         width : {
46812             title: "Width",
46813             width: 40
46814         },
46815         height : {
46816             title: "Height",
46817             width: 40
46818         },
46819         border : {
46820             title: "Border",
46821             width: 20
46822         }
46823     },
46824     'TD' : {
46825         width : {
46826             title: "Width",
46827             width: 40
46828         },
46829         height : {
46830             title: "Height",
46831             width: 40
46832         },   
46833         align: {
46834             title: "Align",
46835             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46836             width: 80
46837         },
46838         valign: {
46839             title: "Valign",
46840             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46841             width: 80
46842         },
46843         colspan: {
46844             title: "Colspan",
46845             width: 20
46846             
46847         },
46848          'font-family'  : {
46849             title : "Font",
46850             style : 'fontFamily',
46851             displayField: 'display',
46852             optname : 'font-family',
46853             width: 140
46854         }
46855     },
46856     'INPUT' : {
46857         name : {
46858             title: "name",
46859             width: 120
46860         },
46861         value : {
46862             title: "Value",
46863             width: 120
46864         },
46865         width : {
46866             title: "Width",
46867             width: 40
46868         }
46869     },
46870     'LABEL' : {
46871         'for' : {
46872             title: "For",
46873             width: 120
46874         }
46875     },
46876     'TEXTAREA' : {
46877           name : {
46878             title: "name",
46879             width: 120
46880         },
46881         rows : {
46882             title: "Rows",
46883             width: 20
46884         },
46885         cols : {
46886             title: "Cols",
46887             width: 20
46888         }
46889     },
46890     'SELECT' : {
46891         name : {
46892             title: "name",
46893             width: 120
46894         },
46895         selectoptions : {
46896             title: "Options",
46897             width: 200
46898         }
46899     },
46900     
46901     // should we really allow this??
46902     // should this just be 
46903     'BODY' : {
46904         title : {
46905             title: "Title",
46906             width: 200,
46907             disabled : true
46908         }
46909     },
46910     'SPAN' : {
46911         'font-family'  : {
46912             title : "Font",
46913             style : 'fontFamily',
46914             displayField: 'display',
46915             optname : 'font-family',
46916             width: 140
46917         }
46918     },
46919     'DIV' : {
46920         'font-family'  : {
46921             title : "Font",
46922             style : 'fontFamily',
46923             displayField: 'display',
46924             optname : 'font-family',
46925             width: 140
46926         }
46927     },
46928      'P' : {
46929         'font-family'  : {
46930             title : "Font",
46931             style : 'fontFamily',
46932             displayField: 'display',
46933             optname : 'font-family',
46934             width: 140
46935         }
46936     },
46937     
46938     '*' : {
46939         // empty..
46940     }
46941
46942 };
46943
46944 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46945 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46946
46947 Roo.form.HtmlEditor.ToolbarContext.options = {
46948         'font-family'  : [ 
46949                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46950                 [ 'Courier New', 'Courier New'],
46951                 [ 'Tahoma', 'Tahoma'],
46952                 [ 'Times New Roman,serif', 'Times'],
46953                 [ 'Verdana','Verdana' ]
46954         ]
46955 };
46956
46957 // fixme - these need to be configurable..
46958  
46959
46960 //Roo.form.HtmlEditor.ToolbarContext.types
46961
46962
46963 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46964     
46965     tb: false,
46966     
46967     rendered: false,
46968     
46969     editor : false,
46970     editorcore : false,
46971     /**
46972      * @cfg {Object} disable  List of toolbar elements to disable
46973          
46974      */
46975     disable : false,
46976     /**
46977      * @cfg {Object} styles List of styles 
46978      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46979      *
46980      * These must be defined in the page, so they get rendered correctly..
46981      * .headline { }
46982      * TD.underline { }
46983      * 
46984      */
46985     styles : false,
46986     
46987     options: false,
46988     
46989     toolbars : false,
46990     
46991     init : function(editor)
46992     {
46993         this.editor = editor;
46994         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46995         var editorcore = this.editorcore;
46996         
46997         var fid = editorcore.frameId;
46998         var etb = this;
46999         function btn(id, toggle, handler){
47000             var xid = fid + '-'+ id ;
47001             return {
47002                 id : xid,
47003                 cmd : id,
47004                 cls : 'x-btn-icon x-edit-'+id,
47005                 enableToggle:toggle !== false,
47006                 scope: editorcore, // was editor...
47007                 handler:handler||editorcore.relayBtnCmd,
47008                 clickEvent:'mousedown',
47009                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
47010                 tabIndex:-1
47011             };
47012         }
47013         // create a new element.
47014         var wdiv = editor.wrap.createChild({
47015                 tag: 'div'
47016             }, editor.wrap.dom.firstChild.nextSibling, true);
47017         
47018         // can we do this more than once??
47019         
47020          // stop form submits
47021       
47022  
47023         // disable everything...
47024         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47025         this.toolbars = {};
47026            
47027         for (var i in  ty) {
47028           
47029             this.toolbars[i] = this.buildToolbar(ty[i],i);
47030         }
47031         this.tb = this.toolbars.BODY;
47032         this.tb.el.show();
47033         this.buildFooter();
47034         this.footer.show();
47035         editor.on('hide', function( ) { this.footer.hide() }, this);
47036         editor.on('show', function( ) { this.footer.show() }, this);
47037         
47038          
47039         this.rendered = true;
47040         
47041         // the all the btns;
47042         editor.on('editorevent', this.updateToolbar, this);
47043         // other toolbars need to implement this..
47044         //editor.on('editmodechange', this.updateToolbar, this);
47045     },
47046     
47047     
47048     
47049     /**
47050      * Protected method that will not generally be called directly. It triggers
47051      * a toolbar update by reading the markup state of the current selection in the editor.
47052      *
47053      * Note you can force an update by calling on('editorevent', scope, false)
47054      */
47055     updateToolbar: function(editor,ev,sel){
47056
47057         //Roo.log(ev);
47058         // capture mouse up - this is handy for selecting images..
47059         // perhaps should go somewhere else...
47060         if(!this.editorcore.activated){
47061              this.editor.onFirstFocus();
47062             return;
47063         }
47064         
47065         
47066         
47067         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
47068         // selectNode - might want to handle IE?
47069         if (ev &&
47070             (ev.type == 'mouseup' || ev.type == 'click' ) &&
47071             ev.target && ev.target.tagName == 'IMG') {
47072             // they have click on an image...
47073             // let's see if we can change the selection...
47074             sel = ev.target;
47075          
47076               var nodeRange = sel.ownerDocument.createRange();
47077             try {
47078                 nodeRange.selectNode(sel);
47079             } catch (e) {
47080                 nodeRange.selectNodeContents(sel);
47081             }
47082             //nodeRange.collapse(true);
47083             var s = this.editorcore.win.getSelection();
47084             s.removeAllRanges();
47085             s.addRange(nodeRange);
47086         }  
47087         
47088       
47089         var updateFooter = sel ? false : true;
47090         
47091         
47092         var ans = this.editorcore.getAllAncestors();
47093         
47094         // pick
47095         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47096         
47097         if (!sel) { 
47098             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47099             sel = sel ? sel : this.editorcore.doc.body;
47100             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47101             
47102         }
47103         // pick a menu that exists..
47104         var tn = sel.tagName.toUpperCase();
47105         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47106         
47107         tn = sel.tagName.toUpperCase();
47108         
47109         var lastSel = this.tb.selectedNode;
47110         
47111         this.tb.selectedNode = sel;
47112         
47113         // if current menu does not match..
47114         
47115         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47116                 
47117             this.tb.el.hide();
47118             ///console.log("show: " + tn);
47119             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47120             this.tb.el.show();
47121             // update name
47122             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47123             
47124             
47125             // update attributes
47126             if (this.tb.fields) {
47127                 this.tb.fields.each(function(e) {
47128                     if (e.stylename) {
47129                         e.setValue(sel.style[e.stylename]);
47130                         return;
47131                     } 
47132                    e.setValue(sel.getAttribute(e.attrname));
47133                 });
47134             }
47135             
47136             var hasStyles = false;
47137             for(var i in this.styles) {
47138                 hasStyles = true;
47139                 break;
47140             }
47141             
47142             // update styles
47143             if (hasStyles) { 
47144                 var st = this.tb.fields.item(0);
47145                 
47146                 st.store.removeAll();
47147                
47148                 
47149                 var cn = sel.className.split(/\s+/);
47150                 
47151                 var avs = [];
47152                 if (this.styles['*']) {
47153                     
47154                     Roo.each(this.styles['*'], function(v) {
47155                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47156                     });
47157                 }
47158                 if (this.styles[tn]) { 
47159                     Roo.each(this.styles[tn], function(v) {
47160                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47161                     });
47162                 }
47163                 
47164                 st.store.loadData(avs);
47165                 st.collapse();
47166                 st.setValue(cn);
47167             }
47168             // flag our selected Node.
47169             this.tb.selectedNode = sel;
47170            
47171            
47172             Roo.menu.MenuMgr.hideAll();
47173
47174         }
47175         
47176         if (!updateFooter) {
47177             //this.footDisp.dom.innerHTML = ''; 
47178             return;
47179         }
47180         // update the footer
47181         //
47182         var html = '';
47183         
47184         this.footerEls = ans.reverse();
47185         Roo.each(this.footerEls, function(a,i) {
47186             if (!a) { return; }
47187             html += html.length ? ' &gt; '  :  '';
47188             
47189             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47190             
47191         });
47192        
47193         // 
47194         var sz = this.footDisp.up('td').getSize();
47195         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47196         this.footDisp.dom.style.marginLeft = '5px';
47197         
47198         this.footDisp.dom.style.overflow = 'hidden';
47199         
47200         this.footDisp.dom.innerHTML = html;
47201             
47202         //this.editorsyncValue();
47203     },
47204      
47205     
47206    
47207        
47208     // private
47209     onDestroy : function(){
47210         if(this.rendered){
47211             
47212             this.tb.items.each(function(item){
47213                 if(item.menu){
47214                     item.menu.removeAll();
47215                     if(item.menu.el){
47216                         item.menu.el.destroy();
47217                     }
47218                 }
47219                 item.destroy();
47220             });
47221              
47222         }
47223     },
47224     onFirstFocus: function() {
47225         // need to do this for all the toolbars..
47226         this.tb.items.each(function(item){
47227            item.enable();
47228         });
47229     },
47230     buildToolbar: function(tlist, nm)
47231     {
47232         var editor = this.editor;
47233         var editorcore = this.editorcore;
47234          // create a new element.
47235         var wdiv = editor.wrap.createChild({
47236                 tag: 'div'
47237             }, editor.wrap.dom.firstChild.nextSibling, true);
47238         
47239        
47240         var tb = new Roo.Toolbar(wdiv);
47241         // add the name..
47242         
47243         tb.add(nm+ ":&nbsp;");
47244         
47245         var styles = [];
47246         for(var i in this.styles) {
47247             styles.push(i);
47248         }
47249         
47250         // styles...
47251         if (styles && styles.length) {
47252             
47253             // this needs a multi-select checkbox...
47254             tb.addField( new Roo.form.ComboBox({
47255                 store: new Roo.data.SimpleStore({
47256                     id : 'val',
47257                     fields: ['val', 'selected'],
47258                     data : [] 
47259                 }),
47260                 name : '-roo-edit-className',
47261                 attrname : 'className',
47262                 displayField: 'val',
47263                 typeAhead: false,
47264                 mode: 'local',
47265                 editable : false,
47266                 triggerAction: 'all',
47267                 emptyText:'Select Style',
47268                 selectOnFocus:true,
47269                 width: 130,
47270                 listeners : {
47271                     'select': function(c, r, i) {
47272                         // initial support only for on class per el..
47273                         tb.selectedNode.className =  r ? r.get('val') : '';
47274                         editorcore.syncValue();
47275                     }
47276                 }
47277     
47278             }));
47279         }
47280         
47281         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47282         var tbops = tbc.options;
47283         
47284         for (var i in tlist) {
47285             
47286             var item = tlist[i];
47287             tb.add(item.title + ":&nbsp;");
47288             
47289             
47290             //optname == used so you can configure the options available..
47291             var opts = item.opts ? item.opts : false;
47292             if (item.optname) {
47293                 opts = tbops[item.optname];
47294            
47295             }
47296             
47297             if (opts) {
47298                 // opts == pulldown..
47299                 tb.addField( new Roo.form.ComboBox({
47300                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47301                         id : 'val',
47302                         fields: ['val', 'display'],
47303                         data : opts  
47304                     }),
47305                     name : '-roo-edit-' + i,
47306                     attrname : i,
47307                     stylename : item.style ? item.style : false,
47308                     displayField: item.displayField ? item.displayField : 'val',
47309                     valueField :  'val',
47310                     typeAhead: false,
47311                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47312                     editable : false,
47313                     triggerAction: 'all',
47314                     emptyText:'Select',
47315                     selectOnFocus:true,
47316                     width: item.width ? item.width  : 130,
47317                     listeners : {
47318                         'select': function(c, r, i) {
47319                             if (c.stylename) {
47320                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47321                                 return;
47322                             }
47323                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47324                         }
47325                     }
47326
47327                 }));
47328                 continue;
47329                     
47330                  
47331                 
47332                 tb.addField( new Roo.form.TextField({
47333                     name: i,
47334                     width: 100,
47335                     //allowBlank:false,
47336                     value: ''
47337                 }));
47338                 continue;
47339             }
47340             tb.addField( new Roo.form.TextField({
47341                 name: '-roo-edit-' + i,
47342                 attrname : i,
47343                 
47344                 width: item.width,
47345                 //allowBlank:true,
47346                 value: '',
47347                 listeners: {
47348                     'change' : function(f, nv, ov) {
47349                         tb.selectedNode.setAttribute(f.attrname, nv);
47350                         editorcore.syncValue();
47351                     }
47352                 }
47353             }));
47354              
47355         }
47356         
47357         var _this = this;
47358         
47359         if(nm == 'BODY'){
47360             tb.addSeparator();
47361         
47362             tb.addButton( {
47363                 text: 'Stylesheets',
47364
47365                 listeners : {
47366                     click : function ()
47367                     {
47368                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47369                     }
47370                 }
47371             });
47372         }
47373         
47374         tb.addFill();
47375         tb.addButton( {
47376             text: 'Remove Tag',
47377     
47378             listeners : {
47379                 click : function ()
47380                 {
47381                     // remove
47382                     // undo does not work.
47383                      
47384                     var sn = tb.selectedNode;
47385                     
47386                     var pn = sn.parentNode;
47387                     
47388                     var stn =  sn.childNodes[0];
47389                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47390                     while (sn.childNodes.length) {
47391                         var node = sn.childNodes[0];
47392                         sn.removeChild(node);
47393                         //Roo.log(node);
47394                         pn.insertBefore(node, sn);
47395                         
47396                     }
47397                     pn.removeChild(sn);
47398                     var range = editorcore.createRange();
47399         
47400                     range.setStart(stn,0);
47401                     range.setEnd(en,0); //????
47402                     //range.selectNode(sel);
47403                     
47404                     
47405                     var selection = editorcore.getSelection();
47406                     selection.removeAllRanges();
47407                     selection.addRange(range);
47408                     
47409                     
47410                     
47411                     //_this.updateToolbar(null, null, pn);
47412                     _this.updateToolbar(null, null, null);
47413                     _this.footDisp.dom.innerHTML = ''; 
47414                 }
47415             }
47416             
47417                     
47418                 
47419             
47420         });
47421         
47422         
47423         tb.el.on('click', function(e){
47424             e.preventDefault(); // what does this do?
47425         });
47426         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47427         tb.el.hide();
47428         tb.name = nm;
47429         // dont need to disable them... as they will get hidden
47430         return tb;
47431          
47432         
47433     },
47434     buildFooter : function()
47435     {
47436         
47437         var fel = this.editor.wrap.createChild();
47438         this.footer = new Roo.Toolbar(fel);
47439         // toolbar has scrolly on left / right?
47440         var footDisp= new Roo.Toolbar.Fill();
47441         var _t = this;
47442         this.footer.add(
47443             {
47444                 text : '&lt;',
47445                 xtype: 'Button',
47446                 handler : function() {
47447                     _t.footDisp.scrollTo('left',0,true)
47448                 }
47449             }
47450         );
47451         this.footer.add( footDisp );
47452         this.footer.add( 
47453             {
47454                 text : '&gt;',
47455                 xtype: 'Button',
47456                 handler : function() {
47457                     // no animation..
47458                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47459                 }
47460             }
47461         );
47462         var fel = Roo.get(footDisp.el);
47463         fel.addClass('x-editor-context');
47464         this.footDispWrap = fel; 
47465         this.footDispWrap.overflow  = 'hidden';
47466         
47467         this.footDisp = fel.createChild();
47468         this.footDispWrap.on('click', this.onContextClick, this)
47469         
47470         
47471     },
47472     onContextClick : function (ev,dom)
47473     {
47474         ev.preventDefault();
47475         var  cn = dom.className;
47476         //Roo.log(cn);
47477         if (!cn.match(/x-ed-loc-/)) {
47478             return;
47479         }
47480         var n = cn.split('-').pop();
47481         var ans = this.footerEls;
47482         var sel = ans[n];
47483         
47484          // pick
47485         var range = this.editorcore.createRange();
47486         
47487         range.selectNodeContents(sel);
47488         //range.selectNode(sel);
47489         
47490         
47491         var selection = this.editorcore.getSelection();
47492         selection.removeAllRanges();
47493         selection.addRange(range);
47494         
47495         
47496         
47497         this.updateToolbar(null, null, sel);
47498         
47499         
47500     }
47501     
47502     
47503     
47504     
47505     
47506 });
47507
47508
47509
47510
47511
47512 /*
47513  * Based on:
47514  * Ext JS Library 1.1.1
47515  * Copyright(c) 2006-2007, Ext JS, LLC.
47516  *
47517  * Originally Released Under LGPL - original licence link has changed is not relivant.
47518  *
47519  * Fork - LGPL
47520  * <script type="text/javascript">
47521  */
47522  
47523 /**
47524  * @class Roo.form.BasicForm
47525  * @extends Roo.util.Observable
47526  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47527  * @constructor
47528  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47529  * @param {Object} config Configuration options
47530  */
47531 Roo.form.BasicForm = function(el, config){
47532     this.allItems = [];
47533     this.childForms = [];
47534     Roo.apply(this, config);
47535     /*
47536      * The Roo.form.Field items in this form.
47537      * @type MixedCollection
47538      */
47539      
47540      
47541     this.items = new Roo.util.MixedCollection(false, function(o){
47542         return o.id || (o.id = Roo.id());
47543     });
47544     this.addEvents({
47545         /**
47546          * @event beforeaction
47547          * Fires before any action is performed. Return false to cancel the action.
47548          * @param {Form} this
47549          * @param {Action} action The action to be performed
47550          */
47551         beforeaction: true,
47552         /**
47553          * @event actionfailed
47554          * Fires when an action fails.
47555          * @param {Form} this
47556          * @param {Action} action The action that failed
47557          */
47558         actionfailed : true,
47559         /**
47560          * @event actioncomplete
47561          * Fires when an action is completed.
47562          * @param {Form} this
47563          * @param {Action} action The action that completed
47564          */
47565         actioncomplete : true
47566     });
47567     if(el){
47568         this.initEl(el);
47569     }
47570     Roo.form.BasicForm.superclass.constructor.call(this);
47571     
47572     Roo.form.BasicForm.popover.apply();
47573 };
47574
47575 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47576     /**
47577      * @cfg {String} method
47578      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47579      */
47580     /**
47581      * @cfg {DataReader} reader
47582      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47583      * This is optional as there is built-in support for processing JSON.
47584      */
47585     /**
47586      * @cfg {DataReader} errorReader
47587      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47588      * This is completely optional as there is built-in support for processing JSON.
47589      */
47590     /**
47591      * @cfg {String} url
47592      * The URL to use for form actions if one isn't supplied in the action options.
47593      */
47594     /**
47595      * @cfg {Boolean} fileUpload
47596      * Set to true if this form is a file upload.
47597      */
47598      
47599     /**
47600      * @cfg {Object} baseParams
47601      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47602      */
47603      /**
47604      
47605     /**
47606      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47607      */
47608     timeout: 30,
47609
47610     // private
47611     activeAction : null,
47612
47613     /**
47614      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47615      * or setValues() data instead of when the form was first created.
47616      */
47617     trackResetOnLoad : false,
47618     
47619     
47620     /**
47621      * childForms - used for multi-tab forms
47622      * @type {Array}
47623      */
47624     childForms : false,
47625     
47626     /**
47627      * allItems - full list of fields.
47628      * @type {Array}
47629      */
47630     allItems : false,
47631     
47632     /**
47633      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47634      * element by passing it or its id or mask the form itself by passing in true.
47635      * @type Mixed
47636      */
47637     waitMsgTarget : false,
47638     
47639     /**
47640      * @type Boolean
47641      */
47642     disableMask : false,
47643     
47644     /**
47645      * @cfg {Boolean} errorMask (true|false) default false
47646      */
47647     errorMask : false,
47648     
47649     /**
47650      * @cfg {Number} maskOffset Default 100
47651      */
47652     maskOffset : 100,
47653
47654     // private
47655     initEl : function(el){
47656         this.el = Roo.get(el);
47657         this.id = this.el.id || Roo.id();
47658         this.el.on('submit', this.onSubmit, this);
47659         this.el.addClass('x-form');
47660     },
47661
47662     // private
47663     onSubmit : function(e){
47664         e.stopEvent();
47665     },
47666
47667     /**
47668      * Returns true if client-side validation on the form is successful.
47669      * @return Boolean
47670      */
47671     isValid : function(){
47672         var valid = true;
47673         var target = false;
47674         this.items.each(function(f){
47675             if(f.validate()){
47676                 return;
47677             }
47678             
47679             valid = false;
47680                 
47681             if(!target && f.el.isVisible(true)){
47682                 target = f;
47683             }
47684         });
47685         
47686         if(this.errorMask && !valid){
47687             Roo.form.BasicForm.popover.mask(this, target);
47688         }
47689         
47690         return valid;
47691     },
47692     /**
47693      * Returns array of invalid form fields.
47694      * @return Array
47695      */
47696     
47697     invalidFields : function()
47698     {
47699         var ret = [];
47700         this.items.each(function(f){
47701             if(f.validate()){
47702                 return;
47703             }
47704             ret.push(f);
47705             
47706         });
47707         
47708         return ret;
47709     },
47710     
47711     
47712     /**
47713      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47714      * @return Boolean
47715      */
47716     isDirty : function(){
47717         var dirty = false;
47718         this.items.each(function(f){
47719            if(f.isDirty()){
47720                dirty = true;
47721                return false;
47722            }
47723         });
47724         return dirty;
47725     },
47726     
47727     /**
47728      * Returns true if any fields in this form have changed since their original load. (New version)
47729      * @return Boolean
47730      */
47731     
47732     hasChanged : function()
47733     {
47734         var dirty = false;
47735         this.items.each(function(f){
47736            if(f.hasChanged()){
47737                dirty = true;
47738                return false;
47739            }
47740         });
47741         return dirty;
47742         
47743     },
47744     /**
47745      * Resets all hasChanged to 'false' -
47746      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47747      * So hasChanged storage is only to be used for this purpose
47748      * @return Boolean
47749      */
47750     resetHasChanged : function()
47751     {
47752         this.items.each(function(f){
47753            f.resetHasChanged();
47754         });
47755         
47756     },
47757     
47758     
47759     /**
47760      * Performs a predefined action (submit or load) or custom actions you define on this form.
47761      * @param {String} actionName The name of the action type
47762      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47763      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47764      * accept other config options):
47765      * <pre>
47766 Property          Type             Description
47767 ----------------  ---------------  ----------------------------------------------------------------------------------
47768 url               String           The url for the action (defaults to the form's url)
47769 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47770 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47771 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47772                                    validate the form on the client (defaults to false)
47773      * </pre>
47774      * @return {BasicForm} this
47775      */
47776     doAction : function(action, options){
47777         if(typeof action == 'string'){
47778             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47779         }
47780         if(this.fireEvent('beforeaction', this, action) !== false){
47781             this.beforeAction(action);
47782             action.run.defer(100, action);
47783         }
47784         return this;
47785     },
47786
47787     /**
47788      * Shortcut to do a submit action.
47789      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47790      * @return {BasicForm} this
47791      */
47792     submit : function(options){
47793         this.doAction('submit', options);
47794         return this;
47795     },
47796
47797     /**
47798      * Shortcut to do a load action.
47799      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47800      * @return {BasicForm} this
47801      */
47802     load : function(options){
47803         this.doAction('load', options);
47804         return this;
47805     },
47806
47807     /**
47808      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47809      * @param {Record} record The record to edit
47810      * @return {BasicForm} this
47811      */
47812     updateRecord : function(record){
47813         record.beginEdit();
47814         var fs = record.fields;
47815         fs.each(function(f){
47816             var field = this.findField(f.name);
47817             if(field){
47818                 record.set(f.name, field.getValue());
47819             }
47820         }, this);
47821         record.endEdit();
47822         return this;
47823     },
47824
47825     /**
47826      * Loads an Roo.data.Record into this form.
47827      * @param {Record} record The record to load
47828      * @return {BasicForm} this
47829      */
47830     loadRecord : function(record){
47831         this.setValues(record.data);
47832         return this;
47833     },
47834
47835     // private
47836     beforeAction : function(action){
47837         var o = action.options;
47838         
47839         if(!this.disableMask) {
47840             if(this.waitMsgTarget === true){
47841                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47842             }else if(this.waitMsgTarget){
47843                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47844                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47845             }else {
47846                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47847             }
47848         }
47849         
47850          
47851     },
47852
47853     // private
47854     afterAction : function(action, success){
47855         this.activeAction = null;
47856         var o = action.options;
47857         
47858         if(!this.disableMask) {
47859             if(this.waitMsgTarget === true){
47860                 this.el.unmask();
47861             }else if(this.waitMsgTarget){
47862                 this.waitMsgTarget.unmask();
47863             }else{
47864                 Roo.MessageBox.updateProgress(1);
47865                 Roo.MessageBox.hide();
47866             }
47867         }
47868         
47869         if(success){
47870             if(o.reset){
47871                 this.reset();
47872             }
47873             Roo.callback(o.success, o.scope, [this, action]);
47874             this.fireEvent('actioncomplete', this, action);
47875             
47876         }else{
47877             
47878             // failure condition..
47879             // we have a scenario where updates need confirming.
47880             // eg. if a locking scenario exists..
47881             // we look for { errors : { needs_confirm : true }} in the response.
47882             if (
47883                 (typeof(action.result) != 'undefined')  &&
47884                 (typeof(action.result.errors) != 'undefined')  &&
47885                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47886            ){
47887                 var _t = this;
47888                 Roo.MessageBox.confirm(
47889                     "Change requires confirmation",
47890                     action.result.errorMsg,
47891                     function(r) {
47892                         if (r != 'yes') {
47893                             return;
47894                         }
47895                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47896                     }
47897                     
47898                 );
47899                 
47900                 
47901                 
47902                 return;
47903             }
47904             
47905             Roo.callback(o.failure, o.scope, [this, action]);
47906             // show an error message if no failed handler is set..
47907             if (!this.hasListener('actionfailed')) {
47908                 Roo.MessageBox.alert("Error",
47909                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47910                         action.result.errorMsg :
47911                         "Saving Failed, please check your entries or try again"
47912                 );
47913             }
47914             
47915             this.fireEvent('actionfailed', this, action);
47916         }
47917         
47918     },
47919
47920     /**
47921      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47922      * @param {String} id The value to search for
47923      * @return Field
47924      */
47925     findField : function(id){
47926         var field = this.items.get(id);
47927         if(!field){
47928             this.items.each(function(f){
47929                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47930                     field = f;
47931                     return false;
47932                 }
47933             });
47934         }
47935         return field || null;
47936     },
47937
47938     /**
47939      * Add a secondary form to this one, 
47940      * Used to provide tabbed forms. One form is primary, with hidden values 
47941      * which mirror the elements from the other forms.
47942      * 
47943      * @param {Roo.form.Form} form to add.
47944      * 
47945      */
47946     addForm : function(form)
47947     {
47948        
47949         if (this.childForms.indexOf(form) > -1) {
47950             // already added..
47951             return;
47952         }
47953         this.childForms.push(form);
47954         var n = '';
47955         Roo.each(form.allItems, function (fe) {
47956             
47957             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47958             if (this.findField(n)) { // already added..
47959                 return;
47960             }
47961             var add = new Roo.form.Hidden({
47962                 name : n
47963             });
47964             add.render(this.el);
47965             
47966             this.add( add );
47967         }, this);
47968         
47969     },
47970     /**
47971      * Mark fields in this form invalid in bulk.
47972      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47973      * @return {BasicForm} this
47974      */
47975     markInvalid : function(errors){
47976         if(errors instanceof Array){
47977             for(var i = 0, len = errors.length; i < len; i++){
47978                 var fieldError = errors[i];
47979                 var f = this.findField(fieldError.id);
47980                 if(f){
47981                     f.markInvalid(fieldError.msg);
47982                 }
47983             }
47984         }else{
47985             var field, id;
47986             for(id in errors){
47987                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47988                     field.markInvalid(errors[id]);
47989                 }
47990             }
47991         }
47992         Roo.each(this.childForms || [], function (f) {
47993             f.markInvalid(errors);
47994         });
47995         
47996         return this;
47997     },
47998
47999     /**
48000      * Set values for fields in this form in bulk.
48001      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
48002      * @return {BasicForm} this
48003      */
48004     setValues : function(values){
48005         if(values instanceof Array){ // array of objects
48006             for(var i = 0, len = values.length; i < len; i++){
48007                 var v = values[i];
48008                 var f = this.findField(v.id);
48009                 if(f){
48010                     f.setValue(v.value);
48011                     if(this.trackResetOnLoad){
48012                         f.originalValue = f.getValue();
48013                     }
48014                 }
48015             }
48016         }else{ // object hash
48017             var field, id;
48018             for(id in values){
48019                 if(typeof values[id] != 'function' && (field = this.findField(id))){
48020                     
48021                     if (field.setFromData && 
48022                         field.valueField && 
48023                         field.displayField &&
48024                         // combos' with local stores can 
48025                         // be queried via setValue()
48026                         // to set their value..
48027                         (field.store && !field.store.isLocal)
48028                         ) {
48029                         // it's a combo
48030                         var sd = { };
48031                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
48032                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
48033                         field.setFromData(sd);
48034                         
48035                     } else {
48036                         field.setValue(values[id]);
48037                     }
48038                     
48039                     
48040                     if(this.trackResetOnLoad){
48041                         field.originalValue = field.getValue();
48042                     }
48043                 }
48044             }
48045         }
48046         this.resetHasChanged();
48047         
48048         
48049         Roo.each(this.childForms || [], function (f) {
48050             f.setValues(values);
48051             f.resetHasChanged();
48052         });
48053                 
48054         return this;
48055     },
48056  
48057     /**
48058      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
48059      * they are returned as an array.
48060      * @param {Boolean} asString
48061      * @return {Object}
48062      */
48063     getValues : function(asString){
48064         if (this.childForms) {
48065             // copy values from the child forms
48066             Roo.each(this.childForms, function (f) {
48067                 this.setValues(f.getValues());
48068             }, this);
48069         }
48070         
48071         // use formdata
48072         if (typeof(FormData) != 'undefined' && asString !== true) {
48073             // this relies on a 'recent' version of chrome apparently...
48074             try {
48075                 var fd = (new FormData(this.el.dom)).entries();
48076                 var ret = {};
48077                 var ent = fd.next();
48078                 while (!ent.done) {
48079                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
48080                     ent = fd.next();
48081                 };
48082                 return ret;
48083             } catch(e) {
48084                 
48085             }
48086             
48087         }
48088         
48089         
48090         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48091         if(asString === true){
48092             return fs;
48093         }
48094         return Roo.urlDecode(fs);
48095     },
48096     
48097     /**
48098      * Returns the fields in this form as an object with key/value pairs. 
48099      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48100      * @return {Object}
48101      */
48102     getFieldValues : function(with_hidden)
48103     {
48104         if (this.childForms) {
48105             // copy values from the child forms
48106             // should this call getFieldValues - probably not as we do not currently copy
48107             // hidden fields when we generate..
48108             Roo.each(this.childForms, function (f) {
48109                 this.setValues(f.getValues());
48110             }, this);
48111         }
48112         
48113         var ret = {};
48114         this.items.each(function(f){
48115             if (!f.getName()) {
48116                 return;
48117             }
48118             var v = f.getValue();
48119             if (f.inputType =='radio') {
48120                 if (typeof(ret[f.getName()]) == 'undefined') {
48121                     ret[f.getName()] = ''; // empty..
48122                 }
48123                 
48124                 if (!f.el.dom.checked) {
48125                     return;
48126                     
48127                 }
48128                 v = f.el.dom.value;
48129                 
48130             }
48131             
48132             // not sure if this supported any more..
48133             if ((typeof(v) == 'object') && f.getRawValue) {
48134                 v = f.getRawValue() ; // dates..
48135             }
48136             // combo boxes where name != hiddenName...
48137             if (f.name != f.getName()) {
48138                 ret[f.name] = f.getRawValue();
48139             }
48140             ret[f.getName()] = v;
48141         });
48142         
48143         return ret;
48144     },
48145
48146     /**
48147      * Clears all invalid messages in this form.
48148      * @return {BasicForm} this
48149      */
48150     clearInvalid : function(){
48151         this.items.each(function(f){
48152            f.clearInvalid();
48153         });
48154         
48155         Roo.each(this.childForms || [], function (f) {
48156             f.clearInvalid();
48157         });
48158         
48159         
48160         return this;
48161     },
48162
48163     /**
48164      * Resets this form.
48165      * @return {BasicForm} this
48166      */
48167     reset : function(){
48168         this.items.each(function(f){
48169             f.reset();
48170         });
48171         
48172         Roo.each(this.childForms || [], function (f) {
48173             f.reset();
48174         });
48175         this.resetHasChanged();
48176         
48177         return this;
48178     },
48179
48180     /**
48181      * Add Roo.form components to this form.
48182      * @param {Field} field1
48183      * @param {Field} field2 (optional)
48184      * @param {Field} etc (optional)
48185      * @return {BasicForm} this
48186      */
48187     add : function(){
48188         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48189         return this;
48190     },
48191
48192
48193     /**
48194      * Removes a field from the items collection (does NOT remove its markup).
48195      * @param {Field} field
48196      * @return {BasicForm} this
48197      */
48198     remove : function(field){
48199         this.items.remove(field);
48200         return this;
48201     },
48202
48203     /**
48204      * Looks at the fields in this form, checks them for an id attribute,
48205      * and calls applyTo on the existing dom element with that id.
48206      * @return {BasicForm} this
48207      */
48208     render : function(){
48209         this.items.each(function(f){
48210             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48211                 f.applyTo(f.id);
48212             }
48213         });
48214         return this;
48215     },
48216
48217     /**
48218      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48219      * @param {Object} values
48220      * @return {BasicForm} this
48221      */
48222     applyToFields : function(o){
48223         this.items.each(function(f){
48224            Roo.apply(f, o);
48225         });
48226         return this;
48227     },
48228
48229     /**
48230      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48231      * @param {Object} values
48232      * @return {BasicForm} this
48233      */
48234     applyIfToFields : function(o){
48235         this.items.each(function(f){
48236            Roo.applyIf(f, o);
48237         });
48238         return this;
48239     }
48240 });
48241
48242 // back compat
48243 Roo.BasicForm = Roo.form.BasicForm;
48244
48245 Roo.apply(Roo.form.BasicForm, {
48246     
48247     popover : {
48248         
48249         padding : 5,
48250         
48251         isApplied : false,
48252         
48253         isMasked : false,
48254         
48255         form : false,
48256         
48257         target : false,
48258         
48259         intervalID : false,
48260         
48261         maskEl : false,
48262         
48263         apply : function()
48264         {
48265             if(this.isApplied){
48266                 return;
48267             }
48268             
48269             this.maskEl = {
48270                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48271                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48272                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48273                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48274             };
48275             
48276             this.maskEl.top.enableDisplayMode("block");
48277             this.maskEl.left.enableDisplayMode("block");
48278             this.maskEl.bottom.enableDisplayMode("block");
48279             this.maskEl.right.enableDisplayMode("block");
48280             
48281             Roo.get(document.body).on('click', function(){
48282                 this.unmask();
48283             }, this);
48284             
48285             Roo.get(document.body).on('touchstart', function(){
48286                 this.unmask();
48287             }, this);
48288             
48289             this.isApplied = true
48290         },
48291         
48292         mask : function(form, target)
48293         {
48294             this.form = form;
48295             
48296             this.target = target;
48297             
48298             if(!this.form.errorMask || !target.el){
48299                 return;
48300             }
48301             
48302             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48303             
48304             var ot = this.target.el.calcOffsetsTo(scrollable);
48305             
48306             var scrollTo = ot[1] - this.form.maskOffset;
48307             
48308             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48309             
48310             scrollable.scrollTo('top', scrollTo);
48311             
48312             var el = this.target.wrap || this.target.el;
48313             
48314             var box = el.getBox();
48315             
48316             this.maskEl.top.setStyle('position', 'absolute');
48317             this.maskEl.top.setStyle('z-index', 10000);
48318             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48319             this.maskEl.top.setLeft(0);
48320             this.maskEl.top.setTop(0);
48321             this.maskEl.top.show();
48322             
48323             this.maskEl.left.setStyle('position', 'absolute');
48324             this.maskEl.left.setStyle('z-index', 10000);
48325             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48326             this.maskEl.left.setLeft(0);
48327             this.maskEl.left.setTop(box.y - this.padding);
48328             this.maskEl.left.show();
48329
48330             this.maskEl.bottom.setStyle('position', 'absolute');
48331             this.maskEl.bottom.setStyle('z-index', 10000);
48332             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48333             this.maskEl.bottom.setLeft(0);
48334             this.maskEl.bottom.setTop(box.bottom + this.padding);
48335             this.maskEl.bottom.show();
48336
48337             this.maskEl.right.setStyle('position', 'absolute');
48338             this.maskEl.right.setStyle('z-index', 10000);
48339             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48340             this.maskEl.right.setLeft(box.right + this.padding);
48341             this.maskEl.right.setTop(box.y - this.padding);
48342             this.maskEl.right.show();
48343
48344             this.intervalID = window.setInterval(function() {
48345                 Roo.form.BasicForm.popover.unmask();
48346             }, 10000);
48347
48348             window.onwheel = function(){ return false;};
48349             
48350             (function(){ this.isMasked = true; }).defer(500, this);
48351             
48352         },
48353         
48354         unmask : function()
48355         {
48356             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48357                 return;
48358             }
48359             
48360             this.maskEl.top.setStyle('position', 'absolute');
48361             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48362             this.maskEl.top.hide();
48363
48364             this.maskEl.left.setStyle('position', 'absolute');
48365             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48366             this.maskEl.left.hide();
48367
48368             this.maskEl.bottom.setStyle('position', 'absolute');
48369             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48370             this.maskEl.bottom.hide();
48371
48372             this.maskEl.right.setStyle('position', 'absolute');
48373             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48374             this.maskEl.right.hide();
48375             
48376             window.onwheel = function(){ return true;};
48377             
48378             if(this.intervalID){
48379                 window.clearInterval(this.intervalID);
48380                 this.intervalID = false;
48381             }
48382             
48383             this.isMasked = false;
48384             
48385         }
48386         
48387     }
48388     
48389 });/*
48390  * Based on:
48391  * Ext JS Library 1.1.1
48392  * Copyright(c) 2006-2007, Ext JS, LLC.
48393  *
48394  * Originally Released Under LGPL - original licence link has changed is not relivant.
48395  *
48396  * Fork - LGPL
48397  * <script type="text/javascript">
48398  */
48399
48400 /**
48401  * @class Roo.form.Form
48402  * @extends Roo.form.BasicForm
48403  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48404  * @constructor
48405  * @param {Object} config Configuration options
48406  */
48407 Roo.form.Form = function(config){
48408     var xitems =  [];
48409     if (config.items) {
48410         xitems = config.items;
48411         delete config.items;
48412     }
48413    
48414     
48415     Roo.form.Form.superclass.constructor.call(this, null, config);
48416     this.url = this.url || this.action;
48417     if(!this.root){
48418         this.root = new Roo.form.Layout(Roo.applyIf({
48419             id: Roo.id()
48420         }, config));
48421     }
48422     this.active = this.root;
48423     /**
48424      * Array of all the buttons that have been added to this form via {@link addButton}
48425      * @type Array
48426      */
48427     this.buttons = [];
48428     this.allItems = [];
48429     this.addEvents({
48430         /**
48431          * @event clientvalidation
48432          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48433          * @param {Form} this
48434          * @param {Boolean} valid true if the form has passed client-side validation
48435          */
48436         clientvalidation: true,
48437         /**
48438          * @event rendered
48439          * Fires when the form is rendered
48440          * @param {Roo.form.Form} form
48441          */
48442         rendered : true
48443     });
48444     
48445     if (this.progressUrl) {
48446             // push a hidden field onto the list of fields..
48447             this.addxtype( {
48448                     xns: Roo.form, 
48449                     xtype : 'Hidden', 
48450                     name : 'UPLOAD_IDENTIFIER' 
48451             });
48452         }
48453         
48454     
48455     Roo.each(xitems, this.addxtype, this);
48456     
48457 };
48458
48459 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48460     /**
48461      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48462      */
48463     /**
48464      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48465      */
48466     /**
48467      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48468      */
48469     buttonAlign:'center',
48470
48471     /**
48472      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48473      */
48474     minButtonWidth:75,
48475
48476     /**
48477      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48478      * This property cascades to child containers if not set.
48479      */
48480     labelAlign:'left',
48481
48482     /**
48483      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48484      * fires a looping event with that state. This is required to bind buttons to the valid
48485      * state using the config value formBind:true on the button.
48486      */
48487     monitorValid : false,
48488
48489     /**
48490      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48491      */
48492     monitorPoll : 200,
48493     
48494     /**
48495      * @cfg {String} progressUrl - Url to return progress data 
48496      */
48497     
48498     progressUrl : false,
48499     /**
48500      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48501      * sending a formdata with extra parameters - eg uploaded elements.
48502      */
48503     
48504     formData : false,
48505     
48506     /**
48507      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48508      * fields are added and the column is closed. If no fields are passed the column remains open
48509      * until end() is called.
48510      * @param {Object} config The config to pass to the column
48511      * @param {Field} field1 (optional)
48512      * @param {Field} field2 (optional)
48513      * @param {Field} etc (optional)
48514      * @return Column The column container object
48515      */
48516     column : function(c){
48517         var col = new Roo.form.Column(c);
48518         this.start(col);
48519         if(arguments.length > 1){ // duplicate code required because of Opera
48520             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48521             this.end();
48522         }
48523         return col;
48524     },
48525
48526     /**
48527      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48528      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48529      * until end() is called.
48530      * @param {Object} config The config to pass to the fieldset
48531      * @param {Field} field1 (optional)
48532      * @param {Field} field2 (optional)
48533      * @param {Field} etc (optional)
48534      * @return FieldSet The fieldset container object
48535      */
48536     fieldset : function(c){
48537         var fs = new Roo.form.FieldSet(c);
48538         this.start(fs);
48539         if(arguments.length > 1){ // duplicate code required because of Opera
48540             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48541             this.end();
48542         }
48543         return fs;
48544     },
48545
48546     /**
48547      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48548      * fields are added and the container is closed. If no fields are passed the container remains open
48549      * until end() is called.
48550      * @param {Object} config The config to pass to the Layout
48551      * @param {Field} field1 (optional)
48552      * @param {Field} field2 (optional)
48553      * @param {Field} etc (optional)
48554      * @return Layout The container object
48555      */
48556     container : function(c){
48557         var l = new Roo.form.Layout(c);
48558         this.start(l);
48559         if(arguments.length > 1){ // duplicate code required because of Opera
48560             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48561             this.end();
48562         }
48563         return l;
48564     },
48565
48566     /**
48567      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48568      * @param {Object} container A Roo.form.Layout or subclass of Layout
48569      * @return {Form} this
48570      */
48571     start : function(c){
48572         // cascade label info
48573         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48574         this.active.stack.push(c);
48575         c.ownerCt = this.active;
48576         this.active = c;
48577         return this;
48578     },
48579
48580     /**
48581      * Closes the current open container
48582      * @return {Form} this
48583      */
48584     end : function(){
48585         if(this.active == this.root){
48586             return this;
48587         }
48588         this.active = this.active.ownerCt;
48589         return this;
48590     },
48591
48592     /**
48593      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48594      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48595      * as the label of the field.
48596      * @param {Field} field1
48597      * @param {Field} field2 (optional)
48598      * @param {Field} etc. (optional)
48599      * @return {Form} this
48600      */
48601     add : function(){
48602         this.active.stack.push.apply(this.active.stack, arguments);
48603         this.allItems.push.apply(this.allItems,arguments);
48604         var r = [];
48605         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48606             if(a[i].isFormField){
48607                 r.push(a[i]);
48608             }
48609         }
48610         if(r.length > 0){
48611             Roo.form.Form.superclass.add.apply(this, r);
48612         }
48613         return this;
48614     },
48615     
48616
48617     
48618     
48619     
48620      /**
48621      * Find any element that has been added to a form, using it's ID or name
48622      * This can include framesets, columns etc. along with regular fields..
48623      * @param {String} id - id or name to find.
48624      
48625      * @return {Element} e - or false if nothing found.
48626      */
48627     findbyId : function(id)
48628     {
48629         var ret = false;
48630         if (!id) {
48631             return ret;
48632         }
48633         Roo.each(this.allItems, function(f){
48634             if (f.id == id || f.name == id ){
48635                 ret = f;
48636                 return false;
48637             }
48638         });
48639         return ret;
48640     },
48641
48642     
48643     
48644     /**
48645      * Render this form into the passed container. This should only be called once!
48646      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48647      * @return {Form} this
48648      */
48649     render : function(ct)
48650     {
48651         
48652         
48653         
48654         ct = Roo.get(ct);
48655         var o = this.autoCreate || {
48656             tag: 'form',
48657             method : this.method || 'POST',
48658             id : this.id || Roo.id()
48659         };
48660         this.initEl(ct.createChild(o));
48661
48662         this.root.render(this.el);
48663         
48664        
48665              
48666         this.items.each(function(f){
48667             f.render('x-form-el-'+f.id);
48668         });
48669
48670         if(this.buttons.length > 0){
48671             // tables are required to maintain order and for correct IE layout
48672             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48673                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48674                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48675             }}, null, true);
48676             var tr = tb.getElementsByTagName('tr')[0];
48677             for(var i = 0, len = this.buttons.length; i < len; i++) {
48678                 var b = this.buttons[i];
48679                 var td = document.createElement('td');
48680                 td.className = 'x-form-btn-td';
48681                 b.render(tr.appendChild(td));
48682             }
48683         }
48684         if(this.monitorValid){ // initialize after render
48685             this.startMonitoring();
48686         }
48687         this.fireEvent('rendered', this);
48688         return this;
48689     },
48690
48691     /**
48692      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48693      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48694      * object or a valid Roo.DomHelper element config
48695      * @param {Function} handler The function called when the button is clicked
48696      * @param {Object} scope (optional) The scope of the handler function
48697      * @return {Roo.Button}
48698      */
48699     addButton : function(config, handler, scope){
48700         var bc = {
48701             handler: handler,
48702             scope: scope,
48703             minWidth: this.minButtonWidth,
48704             hideParent:true
48705         };
48706         if(typeof config == "string"){
48707             bc.text = config;
48708         }else{
48709             Roo.apply(bc, config);
48710         }
48711         var btn = new Roo.Button(null, bc);
48712         this.buttons.push(btn);
48713         return btn;
48714     },
48715
48716      /**
48717      * Adds a series of form elements (using the xtype property as the factory method.
48718      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48719      * @param {Object} config 
48720      */
48721     
48722     addxtype : function()
48723     {
48724         var ar = Array.prototype.slice.call(arguments, 0);
48725         var ret = false;
48726         for(var i = 0; i < ar.length; i++) {
48727             if (!ar[i]) {
48728                 continue; // skip -- if this happends something invalid got sent, we 
48729                 // should ignore it, as basically that interface element will not show up
48730                 // and that should be pretty obvious!!
48731             }
48732             
48733             if (Roo.form[ar[i].xtype]) {
48734                 ar[i].form = this;
48735                 var fe = Roo.factory(ar[i], Roo.form);
48736                 if (!ret) {
48737                     ret = fe;
48738                 }
48739                 fe.form = this;
48740                 if (fe.store) {
48741                     fe.store.form = this;
48742                 }
48743                 if (fe.isLayout) {  
48744                          
48745                     this.start(fe);
48746                     this.allItems.push(fe);
48747                     if (fe.items && fe.addxtype) {
48748                         fe.addxtype.apply(fe, fe.items);
48749                         delete fe.items;
48750                     }
48751                      this.end();
48752                     continue;
48753                 }
48754                 
48755                 
48756                  
48757                 this.add(fe);
48758               //  console.log('adding ' + ar[i].xtype);
48759             }
48760             if (ar[i].xtype == 'Button') {  
48761                 //console.log('adding button');
48762                 //console.log(ar[i]);
48763                 this.addButton(ar[i]);
48764                 this.allItems.push(fe);
48765                 continue;
48766             }
48767             
48768             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48769                 alert('end is not supported on xtype any more, use items');
48770             //    this.end();
48771             //    //console.log('adding end');
48772             }
48773             
48774         }
48775         return ret;
48776     },
48777     
48778     /**
48779      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48780      * option "monitorValid"
48781      */
48782     startMonitoring : function(){
48783         if(!this.bound){
48784             this.bound = true;
48785             Roo.TaskMgr.start({
48786                 run : this.bindHandler,
48787                 interval : this.monitorPoll || 200,
48788                 scope: this
48789             });
48790         }
48791     },
48792
48793     /**
48794      * Stops monitoring of the valid state of this form
48795      */
48796     stopMonitoring : function(){
48797         this.bound = false;
48798     },
48799
48800     // private
48801     bindHandler : function(){
48802         if(!this.bound){
48803             return false; // stops binding
48804         }
48805         var valid = true;
48806         this.items.each(function(f){
48807             if(!f.isValid(true)){
48808                 valid = false;
48809                 return false;
48810             }
48811         });
48812         for(var i = 0, len = this.buttons.length; i < len; i++){
48813             var btn = this.buttons[i];
48814             if(btn.formBind === true && btn.disabled === valid){
48815                 btn.setDisabled(!valid);
48816             }
48817         }
48818         this.fireEvent('clientvalidation', this, valid);
48819     }
48820     
48821     
48822     
48823     
48824     
48825     
48826     
48827     
48828 });
48829
48830
48831 // back compat
48832 Roo.Form = Roo.form.Form;
48833 /*
48834  * Based on:
48835  * Ext JS Library 1.1.1
48836  * Copyright(c) 2006-2007, Ext JS, LLC.
48837  *
48838  * Originally Released Under LGPL - original licence link has changed is not relivant.
48839  *
48840  * Fork - LGPL
48841  * <script type="text/javascript">
48842  */
48843
48844 // as we use this in bootstrap.
48845 Roo.namespace('Roo.form');
48846  /**
48847  * @class Roo.form.Action
48848  * Internal Class used to handle form actions
48849  * @constructor
48850  * @param {Roo.form.BasicForm} el The form element or its id
48851  * @param {Object} config Configuration options
48852  */
48853
48854  
48855  
48856 // define the action interface
48857 Roo.form.Action = function(form, options){
48858     this.form = form;
48859     this.options = options || {};
48860 };
48861 /**
48862  * Client Validation Failed
48863  * @const 
48864  */
48865 Roo.form.Action.CLIENT_INVALID = 'client';
48866 /**
48867  * Server Validation Failed
48868  * @const 
48869  */
48870 Roo.form.Action.SERVER_INVALID = 'server';
48871  /**
48872  * Connect to Server Failed
48873  * @const 
48874  */
48875 Roo.form.Action.CONNECT_FAILURE = 'connect';
48876 /**
48877  * Reading Data from Server Failed
48878  * @const 
48879  */
48880 Roo.form.Action.LOAD_FAILURE = 'load';
48881
48882 Roo.form.Action.prototype = {
48883     type : 'default',
48884     failureType : undefined,
48885     response : undefined,
48886     result : undefined,
48887
48888     // interface method
48889     run : function(options){
48890
48891     },
48892
48893     // interface method
48894     success : function(response){
48895
48896     },
48897
48898     // interface method
48899     handleResponse : function(response){
48900
48901     },
48902
48903     // default connection failure
48904     failure : function(response){
48905         
48906         this.response = response;
48907         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48908         this.form.afterAction(this, false);
48909     },
48910
48911     processResponse : function(response){
48912         this.response = response;
48913         if(!response.responseText){
48914             return true;
48915         }
48916         this.result = this.handleResponse(response);
48917         return this.result;
48918     },
48919
48920     // utility functions used internally
48921     getUrl : function(appendParams){
48922         var url = this.options.url || this.form.url || this.form.el.dom.action;
48923         if(appendParams){
48924             var p = this.getParams();
48925             if(p){
48926                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48927             }
48928         }
48929         return url;
48930     },
48931
48932     getMethod : function(){
48933         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48934     },
48935
48936     getParams : function(){
48937         var bp = this.form.baseParams;
48938         var p = this.options.params;
48939         if(p){
48940             if(typeof p == "object"){
48941                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48942             }else if(typeof p == 'string' && bp){
48943                 p += '&' + Roo.urlEncode(bp);
48944             }
48945         }else if(bp){
48946             p = Roo.urlEncode(bp);
48947         }
48948         return p;
48949     },
48950
48951     createCallback : function(){
48952         return {
48953             success: this.success,
48954             failure: this.failure,
48955             scope: this,
48956             timeout: (this.form.timeout*1000),
48957             upload: this.form.fileUpload ? this.success : undefined
48958         };
48959     }
48960 };
48961
48962 Roo.form.Action.Submit = function(form, options){
48963     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48964 };
48965
48966 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48967     type : 'submit',
48968
48969     haveProgress : false,
48970     uploadComplete : false,
48971     
48972     // uploadProgress indicator.
48973     uploadProgress : function()
48974     {
48975         if (!this.form.progressUrl) {
48976             return;
48977         }
48978         
48979         if (!this.haveProgress) {
48980             Roo.MessageBox.progress("Uploading", "Uploading");
48981         }
48982         if (this.uploadComplete) {
48983            Roo.MessageBox.hide();
48984            return;
48985         }
48986         
48987         this.haveProgress = true;
48988    
48989         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
48990         
48991         var c = new Roo.data.Connection();
48992         c.request({
48993             url : this.form.progressUrl,
48994             params: {
48995                 id : uid
48996             },
48997             method: 'GET',
48998             success : function(req){
48999                //console.log(data);
49000                 var rdata = false;
49001                 var edata;
49002                 try  {
49003                    rdata = Roo.decode(req.responseText)
49004                 } catch (e) {
49005                     Roo.log("Invalid data from server..");
49006                     Roo.log(edata);
49007                     return;
49008                 }
49009                 if (!rdata || !rdata.success) {
49010                     Roo.log(rdata);
49011                     Roo.MessageBox.alert(Roo.encode(rdata));
49012                     return;
49013                 }
49014                 var data = rdata.data;
49015                 
49016                 if (this.uploadComplete) {
49017                    Roo.MessageBox.hide();
49018                    return;
49019                 }
49020                    
49021                 if (data){
49022                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
49023                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
49024                     );
49025                 }
49026                 this.uploadProgress.defer(2000,this);
49027             },
49028        
49029             failure: function(data) {
49030                 Roo.log('progress url failed ');
49031                 Roo.log(data);
49032             },
49033             scope : this
49034         });
49035            
49036     },
49037     
49038     
49039     run : function()
49040     {
49041         // run get Values on the form, so it syncs any secondary forms.
49042         this.form.getValues();
49043         
49044         var o = this.options;
49045         var method = this.getMethod();
49046         var isPost = method == 'POST';
49047         if(o.clientValidation === false || this.form.isValid()){
49048             
49049             if (this.form.progressUrl) {
49050                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
49051                     (new Date() * 1) + '' + Math.random());
49052                     
49053             } 
49054             
49055             
49056             Roo.Ajax.request(Roo.apply(this.createCallback(), {
49057                 form:this.form.el.dom,
49058                 url:this.getUrl(!isPost),
49059                 method: method,
49060                 params:isPost ? this.getParams() : null,
49061                 isUpload: this.form.fileUpload,
49062                 formData : this.form.formData
49063             }));
49064             
49065             this.uploadProgress();
49066
49067         }else if (o.clientValidation !== false){ // client validation failed
49068             this.failureType = Roo.form.Action.CLIENT_INVALID;
49069             this.form.afterAction(this, false);
49070         }
49071     },
49072
49073     success : function(response)
49074     {
49075         this.uploadComplete= true;
49076         if (this.haveProgress) {
49077             Roo.MessageBox.hide();
49078         }
49079         
49080         
49081         var result = this.processResponse(response);
49082         if(result === true || result.success){
49083             this.form.afterAction(this, true);
49084             return;
49085         }
49086         if(result.errors){
49087             this.form.markInvalid(result.errors);
49088             this.failureType = Roo.form.Action.SERVER_INVALID;
49089         }
49090         this.form.afterAction(this, false);
49091     },
49092     failure : function(response)
49093     {
49094         this.uploadComplete= true;
49095         if (this.haveProgress) {
49096             Roo.MessageBox.hide();
49097         }
49098         
49099         this.response = response;
49100         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49101         this.form.afterAction(this, false);
49102     },
49103     
49104     handleResponse : function(response){
49105         if(this.form.errorReader){
49106             var rs = this.form.errorReader.read(response);
49107             var errors = [];
49108             if(rs.records){
49109                 for(var i = 0, len = rs.records.length; i < len; i++) {
49110                     var r = rs.records[i];
49111                     errors[i] = r.data;
49112                 }
49113             }
49114             if(errors.length < 1){
49115                 errors = null;
49116             }
49117             return {
49118                 success : rs.success,
49119                 errors : errors
49120             };
49121         }
49122         var ret = false;
49123         try {
49124             ret = Roo.decode(response.responseText);
49125         } catch (e) {
49126             ret = {
49127                 success: false,
49128                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49129                 errors : []
49130             };
49131         }
49132         return ret;
49133         
49134     }
49135 });
49136
49137
49138 Roo.form.Action.Load = function(form, options){
49139     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49140     this.reader = this.form.reader;
49141 };
49142
49143 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49144     type : 'load',
49145
49146     run : function(){
49147         
49148         Roo.Ajax.request(Roo.apply(
49149                 this.createCallback(), {
49150                     method:this.getMethod(),
49151                     url:this.getUrl(false),
49152                     params:this.getParams()
49153         }));
49154     },
49155
49156     success : function(response){
49157         
49158         var result = this.processResponse(response);
49159         if(result === true || !result.success || !result.data){
49160             this.failureType = Roo.form.Action.LOAD_FAILURE;
49161             this.form.afterAction(this, false);
49162             return;
49163         }
49164         this.form.clearInvalid();
49165         this.form.setValues(result.data);
49166         this.form.afterAction(this, true);
49167     },
49168
49169     handleResponse : function(response){
49170         if(this.form.reader){
49171             var rs = this.form.reader.read(response);
49172             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49173             return {
49174                 success : rs.success,
49175                 data : data
49176             };
49177         }
49178         return Roo.decode(response.responseText);
49179     }
49180 });
49181
49182 Roo.form.Action.ACTION_TYPES = {
49183     'load' : Roo.form.Action.Load,
49184     'submit' : Roo.form.Action.Submit
49185 };/*
49186  * Based on:
49187  * Ext JS Library 1.1.1
49188  * Copyright(c) 2006-2007, Ext JS, LLC.
49189  *
49190  * Originally Released Under LGPL - original licence link has changed is not relivant.
49191  *
49192  * Fork - LGPL
49193  * <script type="text/javascript">
49194  */
49195  
49196 /**
49197  * @class Roo.form.Layout
49198  * @extends Roo.Component
49199  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49200  * @constructor
49201  * @param {Object} config Configuration options
49202  */
49203 Roo.form.Layout = function(config){
49204     var xitems = [];
49205     if (config.items) {
49206         xitems = config.items;
49207         delete config.items;
49208     }
49209     Roo.form.Layout.superclass.constructor.call(this, config);
49210     this.stack = [];
49211     Roo.each(xitems, this.addxtype, this);
49212      
49213 };
49214
49215 Roo.extend(Roo.form.Layout, Roo.Component, {
49216     /**
49217      * @cfg {String/Object} autoCreate
49218      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49219      */
49220     /**
49221      * @cfg {String/Object/Function} style
49222      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49223      * a function which returns such a specification.
49224      */
49225     /**
49226      * @cfg {String} labelAlign
49227      * Valid values are "left," "top" and "right" (defaults to "left")
49228      */
49229     /**
49230      * @cfg {Number} labelWidth
49231      * Fixed width in pixels of all field labels (defaults to undefined)
49232      */
49233     /**
49234      * @cfg {Boolean} clear
49235      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49236      */
49237     clear : true,
49238     /**
49239      * @cfg {String} labelSeparator
49240      * The separator to use after field labels (defaults to ':')
49241      */
49242     labelSeparator : ':',
49243     /**
49244      * @cfg {Boolean} hideLabels
49245      * True to suppress the display of field labels in this layout (defaults to false)
49246      */
49247     hideLabels : false,
49248
49249     // private
49250     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49251     
49252     isLayout : true,
49253     
49254     // private
49255     onRender : function(ct, position){
49256         if(this.el){ // from markup
49257             this.el = Roo.get(this.el);
49258         }else {  // generate
49259             var cfg = this.getAutoCreate();
49260             this.el = ct.createChild(cfg, position);
49261         }
49262         if(this.style){
49263             this.el.applyStyles(this.style);
49264         }
49265         if(this.labelAlign){
49266             this.el.addClass('x-form-label-'+this.labelAlign);
49267         }
49268         if(this.hideLabels){
49269             this.labelStyle = "display:none";
49270             this.elementStyle = "padding-left:0;";
49271         }else{
49272             if(typeof this.labelWidth == 'number'){
49273                 this.labelStyle = "width:"+this.labelWidth+"px;";
49274                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49275             }
49276             if(this.labelAlign == 'top'){
49277                 this.labelStyle = "width:auto;";
49278                 this.elementStyle = "padding-left:0;";
49279             }
49280         }
49281         var stack = this.stack;
49282         var slen = stack.length;
49283         if(slen > 0){
49284             if(!this.fieldTpl){
49285                 var t = new Roo.Template(
49286                     '<div class="x-form-item {5}">',
49287                         '<label for="{0}" style="{2}">{1}{4}</label>',
49288                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49289                         '</div>',
49290                     '</div><div class="x-form-clear-left"></div>'
49291                 );
49292                 t.disableFormats = true;
49293                 t.compile();
49294                 Roo.form.Layout.prototype.fieldTpl = t;
49295             }
49296             for(var i = 0; i < slen; i++) {
49297                 if(stack[i].isFormField){
49298                     this.renderField(stack[i]);
49299                 }else{
49300                     this.renderComponent(stack[i]);
49301                 }
49302             }
49303         }
49304         if(this.clear){
49305             this.el.createChild({cls:'x-form-clear'});
49306         }
49307     },
49308
49309     // private
49310     renderField : function(f){
49311         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49312                f.id, //0
49313                f.fieldLabel, //1
49314                f.labelStyle||this.labelStyle||'', //2
49315                this.elementStyle||'', //3
49316                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49317                f.itemCls||this.itemCls||''  //5
49318        ], true).getPrevSibling());
49319     },
49320
49321     // private
49322     renderComponent : function(c){
49323         c.render(c.isLayout ? this.el : this.el.createChild());    
49324     },
49325     /**
49326      * Adds a object form elements (using the xtype property as the factory method.)
49327      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49328      * @param {Object} config 
49329      */
49330     addxtype : function(o)
49331     {
49332         // create the lement.
49333         o.form = this.form;
49334         var fe = Roo.factory(o, Roo.form);
49335         this.form.allItems.push(fe);
49336         this.stack.push(fe);
49337         
49338         if (fe.isFormField) {
49339             this.form.items.add(fe);
49340         }
49341          
49342         return fe;
49343     }
49344 });
49345
49346 /**
49347  * @class Roo.form.Column
49348  * @extends Roo.form.Layout
49349  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49350  * @constructor
49351  * @param {Object} config Configuration options
49352  */
49353 Roo.form.Column = function(config){
49354     Roo.form.Column.superclass.constructor.call(this, config);
49355 };
49356
49357 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49358     /**
49359      * @cfg {Number/String} width
49360      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49361      */
49362     /**
49363      * @cfg {String/Object} autoCreate
49364      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49365      */
49366
49367     // private
49368     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49369
49370     // private
49371     onRender : function(ct, position){
49372         Roo.form.Column.superclass.onRender.call(this, ct, position);
49373         if(this.width){
49374             this.el.setWidth(this.width);
49375         }
49376     }
49377 });
49378
49379
49380 /**
49381  * @class Roo.form.Row
49382  * @extends Roo.form.Layout
49383  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49384  * @constructor
49385  * @param {Object} config Configuration options
49386  */
49387
49388  
49389 Roo.form.Row = function(config){
49390     Roo.form.Row.superclass.constructor.call(this, config);
49391 };
49392  
49393 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49394       /**
49395      * @cfg {Number/String} width
49396      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49397      */
49398     /**
49399      * @cfg {Number/String} height
49400      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49401      */
49402     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49403     
49404     padWidth : 20,
49405     // private
49406     onRender : function(ct, position){
49407         //console.log('row render');
49408         if(!this.rowTpl){
49409             var t = new Roo.Template(
49410                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49411                     '<label for="{0}" style="{2}">{1}{4}</label>',
49412                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49413                     '</div>',
49414                 '</div>'
49415             );
49416             t.disableFormats = true;
49417             t.compile();
49418             Roo.form.Layout.prototype.rowTpl = t;
49419         }
49420         this.fieldTpl = this.rowTpl;
49421         
49422         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49423         var labelWidth = 100;
49424         
49425         if ((this.labelAlign != 'top')) {
49426             if (typeof this.labelWidth == 'number') {
49427                 labelWidth = this.labelWidth
49428             }
49429             this.padWidth =  20 + labelWidth;
49430             
49431         }
49432         
49433         Roo.form.Column.superclass.onRender.call(this, ct, position);
49434         if(this.width){
49435             this.el.setWidth(this.width);
49436         }
49437         if(this.height){
49438             this.el.setHeight(this.height);
49439         }
49440     },
49441     
49442     // private
49443     renderField : function(f){
49444         f.fieldEl = this.fieldTpl.append(this.el, [
49445                f.id, f.fieldLabel,
49446                f.labelStyle||this.labelStyle||'',
49447                this.elementStyle||'',
49448                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49449                f.itemCls||this.itemCls||'',
49450                f.width ? f.width + this.padWidth : 160 + this.padWidth
49451        ],true);
49452     }
49453 });
49454  
49455
49456 /**
49457  * @class Roo.form.FieldSet
49458  * @extends Roo.form.Layout
49459  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49460  * @constructor
49461  * @param {Object} config Configuration options
49462  */
49463 Roo.form.FieldSet = function(config){
49464     Roo.form.FieldSet.superclass.constructor.call(this, config);
49465 };
49466
49467 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49468     /**
49469      * @cfg {String} legend
49470      * The text to display as the legend for the FieldSet (defaults to '')
49471      */
49472     /**
49473      * @cfg {String/Object} autoCreate
49474      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49475      */
49476
49477     // private
49478     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49479
49480     // private
49481     onRender : function(ct, position){
49482         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49483         if(this.legend){
49484             this.setLegend(this.legend);
49485         }
49486     },
49487
49488     // private
49489     setLegend : function(text){
49490         if(this.rendered){
49491             this.el.child('legend').update(text);
49492         }
49493     }
49494 });/*
49495  * Based on:
49496  * Ext JS Library 1.1.1
49497  * Copyright(c) 2006-2007, Ext JS, LLC.
49498  *
49499  * Originally Released Under LGPL - original licence link has changed is not relivant.
49500  *
49501  * Fork - LGPL
49502  * <script type="text/javascript">
49503  */
49504 /**
49505  * @class Roo.form.VTypes
49506  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49507  * @singleton
49508  */
49509 Roo.form.VTypes = function(){
49510     // closure these in so they are only created once.
49511     var alpha = /^[a-zA-Z_]+$/;
49512     var alphanum = /^[a-zA-Z0-9_]+$/;
49513     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49514     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49515
49516     // All these messages and functions are configurable
49517     return {
49518         /**
49519          * The function used to validate email addresses
49520          * @param {String} value The email address
49521          */
49522         'email' : function(v){
49523             return email.test(v);
49524         },
49525         /**
49526          * The error text to display when the email validation function returns false
49527          * @type String
49528          */
49529         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49530         /**
49531          * The keystroke filter mask to be applied on email input
49532          * @type RegExp
49533          */
49534         'emailMask' : /[a-z0-9_\.\-@]/i,
49535
49536         /**
49537          * The function used to validate URLs
49538          * @param {String} value The URL
49539          */
49540         'url' : function(v){
49541             return url.test(v);
49542         },
49543         /**
49544          * The error text to display when the url validation function returns false
49545          * @type String
49546          */
49547         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49548         
49549         /**
49550          * The function used to validate alpha values
49551          * @param {String} value The value
49552          */
49553         'alpha' : function(v){
49554             return alpha.test(v);
49555         },
49556         /**
49557          * The error text to display when the alpha validation function returns false
49558          * @type String
49559          */
49560         'alphaText' : 'This field should only contain letters and _',
49561         /**
49562          * The keystroke filter mask to be applied on alpha input
49563          * @type RegExp
49564          */
49565         'alphaMask' : /[a-z_]/i,
49566
49567         /**
49568          * The function used to validate alphanumeric values
49569          * @param {String} value The value
49570          */
49571         'alphanum' : function(v){
49572             return alphanum.test(v);
49573         },
49574         /**
49575          * The error text to display when the alphanumeric validation function returns false
49576          * @type String
49577          */
49578         'alphanumText' : 'This field should only contain letters, numbers and _',
49579         /**
49580          * The keystroke filter mask to be applied on alphanumeric input
49581          * @type RegExp
49582          */
49583         'alphanumMask' : /[a-z0-9_]/i
49584     };
49585 }();//<script type="text/javascript">
49586
49587 /**
49588  * @class Roo.form.FCKeditor
49589  * @extends Roo.form.TextArea
49590  * Wrapper around the FCKEditor http://www.fckeditor.net
49591  * @constructor
49592  * Creates a new FCKeditor
49593  * @param {Object} config Configuration options
49594  */
49595 Roo.form.FCKeditor = function(config){
49596     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49597     this.addEvents({
49598          /**
49599          * @event editorinit
49600          * Fired when the editor is initialized - you can add extra handlers here..
49601          * @param {FCKeditor} this
49602          * @param {Object} the FCK object.
49603          */
49604         editorinit : true
49605     });
49606     
49607     
49608 };
49609 Roo.form.FCKeditor.editors = { };
49610 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49611 {
49612     //defaultAutoCreate : {
49613     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49614     //},
49615     // private
49616     /**
49617      * @cfg {Object} fck options - see fck manual for details.
49618      */
49619     fckconfig : false,
49620     
49621     /**
49622      * @cfg {Object} fck toolbar set (Basic or Default)
49623      */
49624     toolbarSet : 'Basic',
49625     /**
49626      * @cfg {Object} fck BasePath
49627      */ 
49628     basePath : '/fckeditor/',
49629     
49630     
49631     frame : false,
49632     
49633     value : '',
49634     
49635    
49636     onRender : function(ct, position)
49637     {
49638         if(!this.el){
49639             this.defaultAutoCreate = {
49640                 tag: "textarea",
49641                 style:"width:300px;height:60px;",
49642                 autocomplete: "new-password"
49643             };
49644         }
49645         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49646         /*
49647         if(this.grow){
49648             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49649             if(this.preventScrollbars){
49650                 this.el.setStyle("overflow", "hidden");
49651             }
49652             this.el.setHeight(this.growMin);
49653         }
49654         */
49655         //console.log('onrender' + this.getId() );
49656         Roo.form.FCKeditor.editors[this.getId()] = this;
49657          
49658
49659         this.replaceTextarea() ;
49660         
49661     },
49662     
49663     getEditor : function() {
49664         return this.fckEditor;
49665     },
49666     /**
49667      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49668      * @param {Mixed} value The value to set
49669      */
49670     
49671     
49672     setValue : function(value)
49673     {
49674         //console.log('setValue: ' + value);
49675         
49676         if(typeof(value) == 'undefined') { // not sure why this is happending...
49677             return;
49678         }
49679         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49680         
49681         //if(!this.el || !this.getEditor()) {
49682         //    this.value = value;
49683             //this.setValue.defer(100,this,[value]);    
49684         //    return;
49685         //} 
49686         
49687         if(!this.getEditor()) {
49688             return;
49689         }
49690         
49691         this.getEditor().SetData(value);
49692         
49693         //
49694
49695     },
49696
49697     /**
49698      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49699      * @return {Mixed} value The field value
49700      */
49701     getValue : function()
49702     {
49703         
49704         if (this.frame && this.frame.dom.style.display == 'none') {
49705             return Roo.form.FCKeditor.superclass.getValue.call(this);
49706         }
49707         
49708         if(!this.el || !this.getEditor()) {
49709            
49710            // this.getValue.defer(100,this); 
49711             return this.value;
49712         }
49713        
49714         
49715         var value=this.getEditor().GetData();
49716         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49717         return Roo.form.FCKeditor.superclass.getValue.call(this);
49718         
49719
49720     },
49721
49722     /**
49723      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49724      * @return {Mixed} value The field value
49725      */
49726     getRawValue : function()
49727     {
49728         if (this.frame && this.frame.dom.style.display == 'none') {
49729             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49730         }
49731         
49732         if(!this.el || !this.getEditor()) {
49733             //this.getRawValue.defer(100,this); 
49734             return this.value;
49735             return;
49736         }
49737         
49738         
49739         
49740         var value=this.getEditor().GetData();
49741         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49742         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49743          
49744     },
49745     
49746     setSize : function(w,h) {
49747         
49748         
49749         
49750         //if (this.frame && this.frame.dom.style.display == 'none') {
49751         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49752         //    return;
49753         //}
49754         //if(!this.el || !this.getEditor()) {
49755         //    this.setSize.defer(100,this, [w,h]); 
49756         //    return;
49757         //}
49758         
49759         
49760         
49761         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49762         
49763         this.frame.dom.setAttribute('width', w);
49764         this.frame.dom.setAttribute('height', h);
49765         this.frame.setSize(w,h);
49766         
49767     },
49768     
49769     toggleSourceEdit : function(value) {
49770         
49771       
49772          
49773         this.el.dom.style.display = value ? '' : 'none';
49774         this.frame.dom.style.display = value ?  'none' : '';
49775         
49776     },
49777     
49778     
49779     focus: function(tag)
49780     {
49781         if (this.frame.dom.style.display == 'none') {
49782             return Roo.form.FCKeditor.superclass.focus.call(this);
49783         }
49784         if(!this.el || !this.getEditor()) {
49785             this.focus.defer(100,this, [tag]); 
49786             return;
49787         }
49788         
49789         
49790         
49791         
49792         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49793         this.getEditor().Focus();
49794         if (tgs.length) {
49795             if (!this.getEditor().Selection.GetSelection()) {
49796                 this.focus.defer(100,this, [tag]); 
49797                 return;
49798             }
49799             
49800             
49801             var r = this.getEditor().EditorDocument.createRange();
49802             r.setStart(tgs[0],0);
49803             r.setEnd(tgs[0],0);
49804             this.getEditor().Selection.GetSelection().removeAllRanges();
49805             this.getEditor().Selection.GetSelection().addRange(r);
49806             this.getEditor().Focus();
49807         }
49808         
49809     },
49810     
49811     
49812     
49813     replaceTextarea : function()
49814     {
49815         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49816             return ;
49817         }
49818         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49819         //{
49820             // We must check the elements firstly using the Id and then the name.
49821         var oTextarea = document.getElementById( this.getId() );
49822         
49823         var colElementsByName = document.getElementsByName( this.getId() ) ;
49824          
49825         oTextarea.style.display = 'none' ;
49826
49827         if ( oTextarea.tabIndex ) {            
49828             this.TabIndex = oTextarea.tabIndex ;
49829         }
49830         
49831         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49832         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49833         this.frame = Roo.get(this.getId() + '___Frame')
49834     },
49835     
49836     _getConfigHtml : function()
49837     {
49838         var sConfig = '' ;
49839
49840         for ( var o in this.fckconfig ) {
49841             sConfig += sConfig.length > 0  ? '&amp;' : '';
49842             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49843         }
49844
49845         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49846     },
49847     
49848     
49849     _getIFrameHtml : function()
49850     {
49851         var sFile = 'fckeditor.html' ;
49852         /* no idea what this is about..
49853         try
49854         {
49855             if ( (/fcksource=true/i).test( window.top.location.search ) )
49856                 sFile = 'fckeditor.original.html' ;
49857         }
49858         catch (e) { 
49859         */
49860
49861         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49862         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49863         
49864         
49865         var html = '<iframe id="' + this.getId() +
49866             '___Frame" src="' + sLink +
49867             '" width="' + this.width +
49868             '" height="' + this.height + '"' +
49869             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49870             ' frameborder="0" scrolling="no"></iframe>' ;
49871
49872         return html ;
49873     },
49874     
49875     _insertHtmlBefore : function( html, element )
49876     {
49877         if ( element.insertAdjacentHTML )       {
49878             // IE
49879             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49880         } else { // Gecko
49881             var oRange = document.createRange() ;
49882             oRange.setStartBefore( element ) ;
49883             var oFragment = oRange.createContextualFragment( html );
49884             element.parentNode.insertBefore( oFragment, element ) ;
49885         }
49886     }
49887     
49888     
49889   
49890     
49891     
49892     
49893     
49894
49895 });
49896
49897 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49898
49899 function FCKeditor_OnComplete(editorInstance){
49900     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49901     f.fckEditor = editorInstance;
49902     //console.log("loaded");
49903     f.fireEvent('editorinit', f, editorInstance);
49904
49905   
49906
49907  
49908
49909
49910
49911
49912
49913
49914
49915
49916
49917
49918
49919
49920
49921
49922
49923 //<script type="text/javascript">
49924 /**
49925  * @class Roo.form.GridField
49926  * @extends Roo.form.Field
49927  * Embed a grid (or editable grid into a form)
49928  * STATUS ALPHA
49929  * 
49930  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49931  * it needs 
49932  * xgrid.store = Roo.data.Store
49933  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49934  * xgrid.store.reader = Roo.data.JsonReader 
49935  * 
49936  * 
49937  * @constructor
49938  * Creates a new GridField
49939  * @param {Object} config Configuration options
49940  */
49941 Roo.form.GridField = function(config){
49942     Roo.form.GridField.superclass.constructor.call(this, config);
49943      
49944 };
49945
49946 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49947     /**
49948      * @cfg {Number} width  - used to restrict width of grid..
49949      */
49950     width : 100,
49951     /**
49952      * @cfg {Number} height - used to restrict height of grid..
49953      */
49954     height : 50,
49955      /**
49956      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49957          * 
49958          *}
49959      */
49960     xgrid : false, 
49961     /**
49962      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49963      * {tag: "input", type: "checkbox", autocomplete: "off"})
49964      */
49965    // defaultAutoCreate : { tag: 'div' },
49966     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49967     /**
49968      * @cfg {String} addTitle Text to include for adding a title.
49969      */
49970     addTitle : false,
49971     //
49972     onResize : function(){
49973         Roo.form.Field.superclass.onResize.apply(this, arguments);
49974     },
49975
49976     initEvents : function(){
49977         // Roo.form.Checkbox.superclass.initEvents.call(this);
49978         // has no events...
49979        
49980     },
49981
49982
49983     getResizeEl : function(){
49984         return this.wrap;
49985     },
49986
49987     getPositionEl : function(){
49988         return this.wrap;
49989     },
49990
49991     // private
49992     onRender : function(ct, position){
49993         
49994         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
49995         var style = this.style;
49996         delete this.style;
49997         
49998         Roo.form.GridField.superclass.onRender.call(this, ct, position);
49999         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
50000         this.viewEl = this.wrap.createChild({ tag: 'div' });
50001         if (style) {
50002             this.viewEl.applyStyles(style);
50003         }
50004         if (this.width) {
50005             this.viewEl.setWidth(this.width);
50006         }
50007         if (this.height) {
50008             this.viewEl.setHeight(this.height);
50009         }
50010         //if(this.inputValue !== undefined){
50011         //this.setValue(this.value);
50012         
50013         
50014         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
50015         
50016         
50017         this.grid.render();
50018         this.grid.getDataSource().on('remove', this.refreshValue, this);
50019         this.grid.getDataSource().on('update', this.refreshValue, this);
50020         this.grid.on('afteredit', this.refreshValue, this);
50021  
50022     },
50023      
50024     
50025     /**
50026      * Sets the value of the item. 
50027      * @param {String} either an object  or a string..
50028      */
50029     setValue : function(v){
50030         //this.value = v;
50031         v = v || []; // empty set..
50032         // this does not seem smart - it really only affects memoryproxy grids..
50033         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
50034             var ds = this.grid.getDataSource();
50035             // assumes a json reader..
50036             var data = {}
50037             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
50038             ds.loadData( data);
50039         }
50040         // clear selection so it does not get stale.
50041         if (this.grid.sm) { 
50042             this.grid.sm.clearSelections();
50043         }
50044         
50045         Roo.form.GridField.superclass.setValue.call(this, v);
50046         this.refreshValue();
50047         // should load data in the grid really....
50048     },
50049     
50050     // private
50051     refreshValue: function() {
50052          var val = [];
50053         this.grid.getDataSource().each(function(r) {
50054             val.push(r.data);
50055         });
50056         this.el.dom.value = Roo.encode(val);
50057     }
50058     
50059      
50060     
50061     
50062 });/*
50063  * Based on:
50064  * Ext JS Library 1.1.1
50065  * Copyright(c) 2006-2007, Ext JS, LLC.
50066  *
50067  * Originally Released Under LGPL - original licence link has changed is not relivant.
50068  *
50069  * Fork - LGPL
50070  * <script type="text/javascript">
50071  */
50072 /**
50073  * @class Roo.form.DisplayField
50074  * @extends Roo.form.Field
50075  * A generic Field to display non-editable data.
50076  * @cfg {Boolean} closable (true|false) default false
50077  * @constructor
50078  * Creates a new Display Field item.
50079  * @param {Object} config Configuration options
50080  */
50081 Roo.form.DisplayField = function(config){
50082     Roo.form.DisplayField.superclass.constructor.call(this, config);
50083     
50084     this.addEvents({
50085         /**
50086          * @event close
50087          * Fires after the click the close btn
50088              * @param {Roo.form.DisplayField} this
50089              */
50090         close : true
50091     });
50092 };
50093
50094 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50095     inputType:      'hidden',
50096     allowBlank:     true,
50097     readOnly:         true,
50098     
50099  
50100     /**
50101      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50102      */
50103     focusClass : undefined,
50104     /**
50105      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50106      */
50107     fieldClass: 'x-form-field',
50108     
50109      /**
50110      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50111      */
50112     valueRenderer: undefined,
50113     
50114     width: 100,
50115     /**
50116      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50117      * {tag: "input", type: "checkbox", autocomplete: "off"})
50118      */
50119      
50120  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50121  
50122     closable : false,
50123     
50124     onResize : function(){
50125         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50126         
50127     },
50128
50129     initEvents : function(){
50130         // Roo.form.Checkbox.superclass.initEvents.call(this);
50131         // has no events...
50132         
50133         if(this.closable){
50134             this.closeEl.on('click', this.onClose, this);
50135         }
50136        
50137     },
50138
50139
50140     getResizeEl : function(){
50141         return this.wrap;
50142     },
50143
50144     getPositionEl : function(){
50145         return this.wrap;
50146     },
50147
50148     // private
50149     onRender : function(ct, position){
50150         
50151         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50152         //if(this.inputValue !== undefined){
50153         this.wrap = this.el.wrap();
50154         
50155         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50156         
50157         if(this.closable){
50158             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50159         }
50160         
50161         if (this.bodyStyle) {
50162             this.viewEl.applyStyles(this.bodyStyle);
50163         }
50164         //this.viewEl.setStyle('padding', '2px');
50165         
50166         this.setValue(this.value);
50167         
50168     },
50169 /*
50170     // private
50171     initValue : Roo.emptyFn,
50172
50173   */
50174
50175         // private
50176     onClick : function(){
50177         
50178     },
50179
50180     /**
50181      * Sets the checked state of the checkbox.
50182      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50183      */
50184     setValue : function(v){
50185         this.value = v;
50186         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50187         // this might be called before we have a dom element..
50188         if (!this.viewEl) {
50189             return;
50190         }
50191         this.viewEl.dom.innerHTML = html;
50192         Roo.form.DisplayField.superclass.setValue.call(this, v);
50193
50194     },
50195     
50196     onClose : function(e)
50197     {
50198         e.preventDefault();
50199         
50200         this.fireEvent('close', this);
50201     }
50202 });/*
50203  * 
50204  * Licence- LGPL
50205  * 
50206  */
50207
50208 /**
50209  * @class Roo.form.DayPicker
50210  * @extends Roo.form.Field
50211  * A Day picker show [M] [T] [W] ....
50212  * @constructor
50213  * Creates a new Day Picker
50214  * @param {Object} config Configuration options
50215  */
50216 Roo.form.DayPicker= function(config){
50217     Roo.form.DayPicker.superclass.constructor.call(this, config);
50218      
50219 };
50220
50221 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50222     /**
50223      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50224      */
50225     focusClass : undefined,
50226     /**
50227      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50228      */
50229     fieldClass: "x-form-field",
50230    
50231     /**
50232      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50233      * {tag: "input", type: "checkbox", autocomplete: "off"})
50234      */
50235     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50236     
50237    
50238     actionMode : 'viewEl', 
50239     //
50240     // private
50241  
50242     inputType : 'hidden',
50243     
50244      
50245     inputElement: false, // real input element?
50246     basedOn: false, // ????
50247     
50248     isFormField: true, // not sure where this is needed!!!!
50249
50250     onResize : function(){
50251         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50252         if(!this.boxLabel){
50253             this.el.alignTo(this.wrap, 'c-c');
50254         }
50255     },
50256
50257     initEvents : function(){
50258         Roo.form.Checkbox.superclass.initEvents.call(this);
50259         this.el.on("click", this.onClick,  this);
50260         this.el.on("change", this.onClick,  this);
50261     },
50262
50263
50264     getResizeEl : function(){
50265         return this.wrap;
50266     },
50267
50268     getPositionEl : function(){
50269         return this.wrap;
50270     },
50271
50272     
50273     // private
50274     onRender : function(ct, position){
50275         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50276        
50277         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50278         
50279         var r1 = '<table><tr>';
50280         var r2 = '<tr class="x-form-daypick-icons">';
50281         for (var i=0; i < 7; i++) {
50282             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50283             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50284         }
50285         
50286         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50287         viewEl.select('img').on('click', this.onClick, this);
50288         this.viewEl = viewEl;   
50289         
50290         
50291         // this will not work on Chrome!!!
50292         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50293         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50294         
50295         
50296           
50297
50298     },
50299
50300     // private
50301     initValue : Roo.emptyFn,
50302
50303     /**
50304      * Returns the checked state of the checkbox.
50305      * @return {Boolean} True if checked, else false
50306      */
50307     getValue : function(){
50308         return this.el.dom.value;
50309         
50310     },
50311
50312         // private
50313     onClick : function(e){ 
50314         //this.setChecked(!this.checked);
50315         Roo.get(e.target).toggleClass('x-menu-item-checked');
50316         this.refreshValue();
50317         //if(this.el.dom.checked != this.checked){
50318         //    this.setValue(this.el.dom.checked);
50319        // }
50320     },
50321     
50322     // private
50323     refreshValue : function()
50324     {
50325         var val = '';
50326         this.viewEl.select('img',true).each(function(e,i,n)  {
50327             val += e.is(".x-menu-item-checked") ? String(n) : '';
50328         });
50329         this.setValue(val, true);
50330     },
50331
50332     /**
50333      * Sets the checked state of the checkbox.
50334      * On is always based on a string comparison between inputValue and the param.
50335      * @param {Boolean/String} value - the value to set 
50336      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50337      */
50338     setValue : function(v,suppressEvent){
50339         if (!this.el.dom) {
50340             return;
50341         }
50342         var old = this.el.dom.value ;
50343         this.el.dom.value = v;
50344         if (suppressEvent) {
50345             return ;
50346         }
50347          
50348         // update display..
50349         this.viewEl.select('img',true).each(function(e,i,n)  {
50350             
50351             var on = e.is(".x-menu-item-checked");
50352             var newv = v.indexOf(String(n)) > -1;
50353             if (on != newv) {
50354                 e.toggleClass('x-menu-item-checked');
50355             }
50356             
50357         });
50358         
50359         
50360         this.fireEvent('change', this, v, old);
50361         
50362         
50363     },
50364    
50365     // handle setting of hidden value by some other method!!?!?
50366     setFromHidden: function()
50367     {
50368         if(!this.el){
50369             return;
50370         }
50371         //console.log("SET FROM HIDDEN");
50372         //alert('setFrom hidden');
50373         this.setValue(this.el.dom.value);
50374     },
50375     
50376     onDestroy : function()
50377     {
50378         if(this.viewEl){
50379             Roo.get(this.viewEl).remove();
50380         }
50381          
50382         Roo.form.DayPicker.superclass.onDestroy.call(this);
50383     }
50384
50385 });/*
50386  * RooJS Library 1.1.1
50387  * Copyright(c) 2008-2011  Alan Knowles
50388  *
50389  * License - LGPL
50390  */
50391  
50392
50393 /**
50394  * @class Roo.form.ComboCheck
50395  * @extends Roo.form.ComboBox
50396  * A combobox for multiple select items.
50397  *
50398  * FIXME - could do with a reset button..
50399  * 
50400  * @constructor
50401  * Create a new ComboCheck
50402  * @param {Object} config Configuration options
50403  */
50404 Roo.form.ComboCheck = function(config){
50405     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50406     // should verify some data...
50407     // like
50408     // hiddenName = required..
50409     // displayField = required
50410     // valudField == required
50411     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50412     var _t = this;
50413     Roo.each(req, function(e) {
50414         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50415             throw "Roo.form.ComboCheck : missing value for: " + e;
50416         }
50417     });
50418     
50419     
50420 };
50421
50422 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50423      
50424      
50425     editable : false,
50426      
50427     selectedClass: 'x-menu-item-checked', 
50428     
50429     // private
50430     onRender : function(ct, position){
50431         var _t = this;
50432         
50433         
50434         
50435         if(!this.tpl){
50436             var cls = 'x-combo-list';
50437
50438             
50439             this.tpl =  new Roo.Template({
50440                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50441                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50442                    '<span>{' + this.displayField + '}</span>' +
50443                     '</div>' 
50444                 
50445             });
50446         }
50447  
50448         
50449         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50450         this.view.singleSelect = false;
50451         this.view.multiSelect = true;
50452         this.view.toggleSelect = true;
50453         this.pageTb.add(new Roo.Toolbar.Fill(), {
50454             
50455             text: 'Done',
50456             handler: function()
50457             {
50458                 _t.collapse();
50459             }
50460         });
50461     },
50462     
50463     onViewOver : function(e, t){
50464         // do nothing...
50465         return;
50466         
50467     },
50468     
50469     onViewClick : function(doFocus,index){
50470         return;
50471         
50472     },
50473     select: function () {
50474         //Roo.log("SELECT CALLED");
50475     },
50476      
50477     selectByValue : function(xv, scrollIntoView){
50478         var ar = this.getValueArray();
50479         var sels = [];
50480         
50481         Roo.each(ar, function(v) {
50482             if(v === undefined || v === null){
50483                 return;
50484             }
50485             var r = this.findRecord(this.valueField, v);
50486             if(r){
50487                 sels.push(this.store.indexOf(r))
50488                 
50489             }
50490         },this);
50491         this.view.select(sels);
50492         return false;
50493     },
50494     
50495     
50496     
50497     onSelect : function(record, index){
50498        // Roo.log("onselect Called");
50499        // this is only called by the clear button now..
50500         this.view.clearSelections();
50501         this.setValue('[]');
50502         if (this.value != this.valueBefore) {
50503             this.fireEvent('change', this, this.value, this.valueBefore);
50504             this.valueBefore = this.value;
50505         }
50506     },
50507     getValueArray : function()
50508     {
50509         var ar = [] ;
50510         
50511         try {
50512             //Roo.log(this.value);
50513             if (typeof(this.value) == 'undefined') {
50514                 return [];
50515             }
50516             var ar = Roo.decode(this.value);
50517             return  ar instanceof Array ? ar : []; //?? valid?
50518             
50519         } catch(e) {
50520             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50521             return [];
50522         }
50523          
50524     },
50525     expand : function ()
50526     {
50527         
50528         Roo.form.ComboCheck.superclass.expand.call(this);
50529         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50530         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50531         
50532
50533     },
50534     
50535     collapse : function(){
50536         Roo.form.ComboCheck.superclass.collapse.call(this);
50537         var sl = this.view.getSelectedIndexes();
50538         var st = this.store;
50539         var nv = [];
50540         var tv = [];
50541         var r;
50542         Roo.each(sl, function(i) {
50543             r = st.getAt(i);
50544             nv.push(r.get(this.valueField));
50545         },this);
50546         this.setValue(Roo.encode(nv));
50547         if (this.value != this.valueBefore) {
50548
50549             this.fireEvent('change', this, this.value, this.valueBefore);
50550             this.valueBefore = this.value;
50551         }
50552         
50553     },
50554     
50555     setValue : function(v){
50556         // Roo.log(v);
50557         this.value = v;
50558         
50559         var vals = this.getValueArray();
50560         var tv = [];
50561         Roo.each(vals, function(k) {
50562             var r = this.findRecord(this.valueField, k);
50563             if(r){
50564                 tv.push(r.data[this.displayField]);
50565             }else if(this.valueNotFoundText !== undefined){
50566                 tv.push( this.valueNotFoundText );
50567             }
50568         },this);
50569        // Roo.log(tv);
50570         
50571         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50572         this.hiddenField.value = v;
50573         this.value = v;
50574     }
50575     
50576 });/*
50577  * Based on:
50578  * Ext JS Library 1.1.1
50579  * Copyright(c) 2006-2007, Ext JS, LLC.
50580  *
50581  * Originally Released Under LGPL - original licence link has changed is not relivant.
50582  *
50583  * Fork - LGPL
50584  * <script type="text/javascript">
50585  */
50586  
50587 /**
50588  * @class Roo.form.Signature
50589  * @extends Roo.form.Field
50590  * Signature field.  
50591  * @constructor
50592  * 
50593  * @param {Object} config Configuration options
50594  */
50595
50596 Roo.form.Signature = function(config){
50597     Roo.form.Signature.superclass.constructor.call(this, config);
50598     
50599     this.addEvents({// not in used??
50600          /**
50601          * @event confirm
50602          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50603              * @param {Roo.form.Signature} combo This combo box
50604              */
50605         'confirm' : true,
50606         /**
50607          * @event reset
50608          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50609              * @param {Roo.form.ComboBox} combo This combo box
50610              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50611              */
50612         'reset' : true
50613     });
50614 };
50615
50616 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50617     /**
50618      * @cfg {Object} labels Label to use when rendering a form.
50619      * defaults to 
50620      * labels : { 
50621      *      clear : "Clear",
50622      *      confirm : "Confirm"
50623      *  }
50624      */
50625     labels : { 
50626         clear : "Clear",
50627         confirm : "Confirm"
50628     },
50629     /**
50630      * @cfg {Number} width The signature panel width (defaults to 300)
50631      */
50632     width: 300,
50633     /**
50634      * @cfg {Number} height The signature panel height (defaults to 100)
50635      */
50636     height : 100,
50637     /**
50638      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50639      */
50640     allowBlank : false,
50641     
50642     //private
50643     // {Object} signPanel The signature SVG panel element (defaults to {})
50644     signPanel : {},
50645     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50646     isMouseDown : false,
50647     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50648     isConfirmed : false,
50649     // {String} signatureTmp SVG mapping string (defaults to empty string)
50650     signatureTmp : '',
50651     
50652     
50653     defaultAutoCreate : { // modified by initCompnoent..
50654         tag: "input",
50655         type:"hidden"
50656     },
50657
50658     // private
50659     onRender : function(ct, position){
50660         
50661         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50662         
50663         this.wrap = this.el.wrap({
50664             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50665         });
50666         
50667         this.createToolbar(this);
50668         this.signPanel = this.wrap.createChild({
50669                 tag: 'div',
50670                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50671             }, this.el
50672         );
50673             
50674         this.svgID = Roo.id();
50675         this.svgEl = this.signPanel.createChild({
50676               xmlns : 'http://www.w3.org/2000/svg',
50677               tag : 'svg',
50678               id : this.svgID + "-svg",
50679               width: this.width,
50680               height: this.height,
50681               viewBox: '0 0 '+this.width+' '+this.height,
50682               cn : [
50683                 {
50684                     tag: "rect",
50685                     id: this.svgID + "-svg-r",
50686                     width: this.width,
50687                     height: this.height,
50688                     fill: "#ffa"
50689                 },
50690                 {
50691                     tag: "line",
50692                     id: this.svgID + "-svg-l",
50693                     x1: "0", // start
50694                     y1: (this.height*0.8), // start set the line in 80% of height
50695                     x2: this.width, // end
50696                     y2: (this.height*0.8), // end set the line in 80% of height
50697                     'stroke': "#666",
50698                     'stroke-width': "1",
50699                     'stroke-dasharray': "3",
50700                     'shape-rendering': "crispEdges",
50701                     'pointer-events': "none"
50702                 },
50703                 {
50704                     tag: "path",
50705                     id: this.svgID + "-svg-p",
50706                     'stroke': "navy",
50707                     'stroke-width': "3",
50708                     'fill': "none",
50709                     'pointer-events': 'none'
50710                 }
50711               ]
50712         });
50713         this.createSVG();
50714         this.svgBox = this.svgEl.dom.getScreenCTM();
50715     },
50716     createSVG : function(){ 
50717         var svg = this.signPanel;
50718         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50719         var t = this;
50720
50721         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50722         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50723         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50724         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50725         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50726         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50727         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50728         
50729     },
50730     isTouchEvent : function(e){
50731         return e.type.match(/^touch/);
50732     },
50733     getCoords : function (e) {
50734         var pt    = this.svgEl.dom.createSVGPoint();
50735         pt.x = e.clientX; 
50736         pt.y = e.clientY;
50737         if (this.isTouchEvent(e)) {
50738             pt.x =  e.targetTouches[0].clientX;
50739             pt.y = e.targetTouches[0].clientY;
50740         }
50741         var a = this.svgEl.dom.getScreenCTM();
50742         var b = a.inverse();
50743         var mx = pt.matrixTransform(b);
50744         return mx.x + ',' + mx.y;
50745     },
50746     //mouse event headler 
50747     down : function (e) {
50748         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50749         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50750         
50751         this.isMouseDown = true;
50752         
50753         e.preventDefault();
50754     },
50755     move : function (e) {
50756         if (this.isMouseDown) {
50757             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50758             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50759         }
50760         
50761         e.preventDefault();
50762     },
50763     up : function (e) {
50764         this.isMouseDown = false;
50765         var sp = this.signatureTmp.split(' ');
50766         
50767         if(sp.length > 1){
50768             if(!sp[sp.length-2].match(/^L/)){
50769                 sp.pop();
50770                 sp.pop();
50771                 sp.push("");
50772                 this.signatureTmp = sp.join(" ");
50773             }
50774         }
50775         if(this.getValue() != this.signatureTmp){
50776             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50777             this.isConfirmed = false;
50778         }
50779         e.preventDefault();
50780     },
50781     
50782     /**
50783      * Protected method that will not generally be called directly. It
50784      * is called when the editor creates its toolbar. Override this method if you need to
50785      * add custom toolbar buttons.
50786      * @param {HtmlEditor} editor
50787      */
50788     createToolbar : function(editor){
50789          function btn(id, toggle, handler){
50790             var xid = fid + '-'+ id ;
50791             return {
50792                 id : xid,
50793                 cmd : id,
50794                 cls : 'x-btn-icon x-edit-'+id,
50795                 enableToggle:toggle !== false,
50796                 scope: editor, // was editor...
50797                 handler:handler||editor.relayBtnCmd,
50798                 clickEvent:'mousedown',
50799                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50800                 tabIndex:-1
50801             };
50802         }
50803         
50804         
50805         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50806         this.tb = tb;
50807         this.tb.add(
50808            {
50809                 cls : ' x-signature-btn x-signature-'+id,
50810                 scope: editor, // was editor...
50811                 handler: this.reset,
50812                 clickEvent:'mousedown',
50813                 text: this.labels.clear
50814             },
50815             {
50816                  xtype : 'Fill',
50817                  xns: Roo.Toolbar
50818             }, 
50819             {
50820                 cls : '  x-signature-btn x-signature-'+id,
50821                 scope: editor, // was editor...
50822                 handler: this.confirmHandler,
50823                 clickEvent:'mousedown',
50824                 text: this.labels.confirm
50825             }
50826         );
50827     
50828     },
50829     //public
50830     /**
50831      * when user is clicked confirm then show this image.....
50832      * 
50833      * @return {String} Image Data URI
50834      */
50835     getImageDataURI : function(){
50836         var svg = this.svgEl.dom.parentNode.innerHTML;
50837         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50838         return src; 
50839     },
50840     /**
50841      * 
50842      * @return {Boolean} this.isConfirmed
50843      */
50844     getConfirmed : function(){
50845         return this.isConfirmed;
50846     },
50847     /**
50848      * 
50849      * @return {Number} this.width
50850      */
50851     getWidth : function(){
50852         return this.width;
50853     },
50854     /**
50855      * 
50856      * @return {Number} this.height
50857      */
50858     getHeight : function(){
50859         return this.height;
50860     },
50861     // private
50862     getSignature : function(){
50863         return this.signatureTmp;
50864     },
50865     // private
50866     reset : function(){
50867         this.signatureTmp = '';
50868         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50869         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50870         this.isConfirmed = false;
50871         Roo.form.Signature.superclass.reset.call(this);
50872     },
50873     setSignature : function(s){
50874         this.signatureTmp = s;
50875         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50876         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50877         this.setValue(s);
50878         this.isConfirmed = false;
50879         Roo.form.Signature.superclass.reset.call(this);
50880     }, 
50881     test : function(){
50882 //        Roo.log(this.signPanel.dom.contentWindow.up())
50883     },
50884     //private
50885     setConfirmed : function(){
50886         
50887         
50888         
50889 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50890     },
50891     // private
50892     confirmHandler : function(){
50893         if(!this.getSignature()){
50894             return;
50895         }
50896         
50897         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50898         this.setValue(this.getSignature());
50899         this.isConfirmed = true;
50900         
50901         this.fireEvent('confirm', this);
50902     },
50903     // private
50904     // Subclasses should provide the validation implementation by overriding this
50905     validateValue : function(value){
50906         if(this.allowBlank){
50907             return true;
50908         }
50909         
50910         if(this.isConfirmed){
50911             return true;
50912         }
50913         return false;
50914     }
50915 });/*
50916  * Based on:
50917  * Ext JS Library 1.1.1
50918  * Copyright(c) 2006-2007, Ext JS, LLC.
50919  *
50920  * Originally Released Under LGPL - original licence link has changed is not relivant.
50921  *
50922  * Fork - LGPL
50923  * <script type="text/javascript">
50924  */
50925  
50926
50927 /**
50928  * @class Roo.form.ComboBox
50929  * @extends Roo.form.TriggerField
50930  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50931  * @constructor
50932  * Create a new ComboBox.
50933  * @param {Object} config Configuration options
50934  */
50935 Roo.form.Select = function(config){
50936     Roo.form.Select.superclass.constructor.call(this, config);
50937      
50938 };
50939
50940 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50941     /**
50942      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50943      */
50944     /**
50945      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50946      * rendering into an Roo.Editor, defaults to false)
50947      */
50948     /**
50949      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50950      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50951      */
50952     /**
50953      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50954      */
50955     /**
50956      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50957      * the dropdown list (defaults to undefined, with no header element)
50958      */
50959
50960      /**
50961      * @cfg {String/Roo.Template} tpl The template to use to render the output
50962      */
50963      
50964     // private
50965     defaultAutoCreate : {tag: "select"  },
50966     /**
50967      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50968      */
50969     listWidth: undefined,
50970     /**
50971      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50972      * mode = 'remote' or 'text' if mode = 'local')
50973      */
50974     displayField: undefined,
50975     /**
50976      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50977      * mode = 'remote' or 'value' if mode = 'local'). 
50978      * Note: use of a valueField requires the user make a selection
50979      * in order for a value to be mapped.
50980      */
50981     valueField: undefined,
50982     
50983     
50984     /**
50985      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
50986      * field's data value (defaults to the underlying DOM element's name)
50987      */
50988     hiddenName: undefined,
50989     /**
50990      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
50991      */
50992     listClass: '',
50993     /**
50994      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
50995      */
50996     selectedClass: 'x-combo-selected',
50997     /**
50998      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
50999      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
51000      * which displays a downward arrow icon).
51001      */
51002     triggerClass : 'x-form-arrow-trigger',
51003     /**
51004      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
51005      */
51006     shadow:'sides',
51007     /**
51008      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
51009      * anchor positions (defaults to 'tl-bl')
51010      */
51011     listAlign: 'tl-bl?',
51012     /**
51013      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
51014      */
51015     maxHeight: 300,
51016     /**
51017      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
51018      * query specified by the allQuery config option (defaults to 'query')
51019      */
51020     triggerAction: 'query',
51021     /**
51022      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
51023      * (defaults to 4, does not apply if editable = false)
51024      */
51025     minChars : 4,
51026     /**
51027      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
51028      * delay (typeAheadDelay) if it matches a known value (defaults to false)
51029      */
51030     typeAhead: false,
51031     /**
51032      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
51033      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
51034      */
51035     queryDelay: 500,
51036     /**
51037      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
51038      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
51039      */
51040     pageSize: 0,
51041     /**
51042      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
51043      * when editable = true (defaults to false)
51044      */
51045     selectOnFocus:false,
51046     /**
51047      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
51048      */
51049     queryParam: 'query',
51050     /**
51051      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
51052      * when mode = 'remote' (defaults to 'Loading...')
51053      */
51054     loadingText: 'Loading...',
51055     /**
51056      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
51057      */
51058     resizable: false,
51059     /**
51060      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
51061      */
51062     handleHeight : 8,
51063     /**
51064      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
51065      * traditional select (defaults to true)
51066      */
51067     editable: true,
51068     /**
51069      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
51070      */
51071     allQuery: '',
51072     /**
51073      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
51074      */
51075     mode: 'remote',
51076     /**
51077      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
51078      * listWidth has a higher value)
51079      */
51080     minListWidth : 70,
51081     /**
51082      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51083      * allow the user to set arbitrary text into the field (defaults to false)
51084      */
51085     forceSelection:false,
51086     /**
51087      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51088      * if typeAhead = true (defaults to 250)
51089      */
51090     typeAheadDelay : 250,
51091     /**
51092      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51093      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51094      */
51095     valueNotFoundText : undefined,
51096     
51097     /**
51098      * @cfg {String} defaultValue The value displayed after loading the store.
51099      */
51100     defaultValue: '',
51101     
51102     /**
51103      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51104      */
51105     blockFocus : false,
51106     
51107     /**
51108      * @cfg {Boolean} disableClear Disable showing of clear button.
51109      */
51110     disableClear : false,
51111     /**
51112      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51113      */
51114     alwaysQuery : false,
51115     
51116     //private
51117     addicon : false,
51118     editicon: false,
51119     
51120     // element that contains real text value.. (when hidden is used..)
51121      
51122     // private
51123     onRender : function(ct, position){
51124         Roo.form.Field.prototype.onRender.call(this, ct, position);
51125         
51126         if(this.store){
51127             this.store.on('beforeload', this.onBeforeLoad, this);
51128             this.store.on('load', this.onLoad, this);
51129             this.store.on('loadexception', this.onLoadException, this);
51130             this.store.load({});
51131         }
51132         
51133         
51134         
51135     },
51136
51137     // private
51138     initEvents : function(){
51139         //Roo.form.ComboBox.superclass.initEvents.call(this);
51140  
51141     },
51142
51143     onDestroy : function(){
51144        
51145         if(this.store){
51146             this.store.un('beforeload', this.onBeforeLoad, this);
51147             this.store.un('load', this.onLoad, this);
51148             this.store.un('loadexception', this.onLoadException, this);
51149         }
51150         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51151     },
51152
51153     // private
51154     fireKey : function(e){
51155         if(e.isNavKeyPress() && !this.list.isVisible()){
51156             this.fireEvent("specialkey", this, e);
51157         }
51158     },
51159
51160     // private
51161     onResize: function(w, h){
51162         
51163         return; 
51164     
51165         
51166     },
51167
51168     /**
51169      * Allow or prevent the user from directly editing the field text.  If false is passed,
51170      * the user will only be able to select from the items defined in the dropdown list.  This method
51171      * is the runtime equivalent of setting the 'editable' config option at config time.
51172      * @param {Boolean} value True to allow the user to directly edit the field text
51173      */
51174     setEditable : function(value){
51175          
51176     },
51177
51178     // private
51179     onBeforeLoad : function(){
51180         
51181         Roo.log("Select before load");
51182         return;
51183     
51184         this.innerList.update(this.loadingText ?
51185                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51186         //this.restrictHeight();
51187         this.selectedIndex = -1;
51188     },
51189
51190     // private
51191     onLoad : function(){
51192
51193     
51194         var dom = this.el.dom;
51195         dom.innerHTML = '';
51196          var od = dom.ownerDocument;
51197          
51198         if (this.emptyText) {
51199             var op = od.createElement('option');
51200             op.setAttribute('value', '');
51201             op.innerHTML = String.format('{0}', this.emptyText);
51202             dom.appendChild(op);
51203         }
51204         if(this.store.getCount() > 0){
51205            
51206             var vf = this.valueField;
51207             var df = this.displayField;
51208             this.store.data.each(function(r) {
51209                 // which colmsn to use... testing - cdoe / title..
51210                 var op = od.createElement('option');
51211                 op.setAttribute('value', r.data[vf]);
51212                 op.innerHTML = String.format('{0}', r.data[df]);
51213                 dom.appendChild(op);
51214             });
51215             if (typeof(this.defaultValue != 'undefined')) {
51216                 this.setValue(this.defaultValue);
51217             }
51218             
51219              
51220         }else{
51221             //this.onEmptyResults();
51222         }
51223         //this.el.focus();
51224     },
51225     // private
51226     onLoadException : function()
51227     {
51228         dom.innerHTML = '';
51229             
51230         Roo.log("Select on load exception");
51231         return;
51232     
51233         this.collapse();
51234         Roo.log(this.store.reader.jsonData);
51235         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51236             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51237         }
51238         
51239         
51240     },
51241     // private
51242     onTypeAhead : function(){
51243          
51244     },
51245
51246     // private
51247     onSelect : function(record, index){
51248         Roo.log('on select?');
51249         return;
51250         if(this.fireEvent('beforeselect', this, record, index) !== false){
51251             this.setFromData(index > -1 ? record.data : false);
51252             this.collapse();
51253             this.fireEvent('select', this, record, index);
51254         }
51255     },
51256
51257     /**
51258      * Returns the currently selected field value or empty string if no value is set.
51259      * @return {String} value The selected value
51260      */
51261     getValue : function(){
51262         var dom = this.el.dom;
51263         this.value = dom.options[dom.selectedIndex].value;
51264         return this.value;
51265         
51266     },
51267
51268     /**
51269      * Clears any text/value currently set in the field
51270      */
51271     clearValue : function(){
51272         this.value = '';
51273         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51274         
51275     },
51276
51277     /**
51278      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51279      * will be displayed in the field.  If the value does not match the data value of an existing item,
51280      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51281      * Otherwise the field will be blank (although the value will still be set).
51282      * @param {String} value The value to match
51283      */
51284     setValue : function(v){
51285         var d = this.el.dom;
51286         for (var i =0; i < d.options.length;i++) {
51287             if (v == d.options[i].value) {
51288                 d.selectedIndex = i;
51289                 this.value = v;
51290                 return;
51291             }
51292         }
51293         this.clearValue();
51294     },
51295     /**
51296      * @property {Object} the last set data for the element
51297      */
51298     
51299     lastData : false,
51300     /**
51301      * Sets the value of the field based on a object which is related to the record format for the store.
51302      * @param {Object} value the value to set as. or false on reset?
51303      */
51304     setFromData : function(o){
51305         Roo.log('setfrom data?');
51306          
51307         
51308         
51309     },
51310     // private
51311     reset : function(){
51312         this.clearValue();
51313     },
51314     // private
51315     findRecord : function(prop, value){
51316         
51317         return false;
51318     
51319         var record;
51320         if(this.store.getCount() > 0){
51321             this.store.each(function(r){
51322                 if(r.data[prop] == value){
51323                     record = r;
51324                     return false;
51325                 }
51326                 return true;
51327             });
51328         }
51329         return record;
51330     },
51331     
51332     getName: function()
51333     {
51334         // returns hidden if it's set..
51335         if (!this.rendered) {return ''};
51336         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51337         
51338     },
51339      
51340
51341     
51342
51343     // private
51344     onEmptyResults : function(){
51345         Roo.log('empty results');
51346         //this.collapse();
51347     },
51348
51349     /**
51350      * Returns true if the dropdown list is expanded, else false.
51351      */
51352     isExpanded : function(){
51353         return false;
51354     },
51355
51356     /**
51357      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51358      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51359      * @param {String} value The data value of the item to select
51360      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51361      * selected item if it is not currently in view (defaults to true)
51362      * @return {Boolean} True if the value matched an item in the list, else false
51363      */
51364     selectByValue : function(v, scrollIntoView){
51365         Roo.log('select By Value');
51366         return false;
51367     
51368         if(v !== undefined && v !== null){
51369             var r = this.findRecord(this.valueField || this.displayField, v);
51370             if(r){
51371                 this.select(this.store.indexOf(r), scrollIntoView);
51372                 return true;
51373             }
51374         }
51375         return false;
51376     },
51377
51378     /**
51379      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51380      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51381      * @param {Number} index The zero-based index of the list item to select
51382      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51383      * selected item if it is not currently in view (defaults to true)
51384      */
51385     select : function(index, scrollIntoView){
51386         Roo.log('select ');
51387         return  ;
51388         
51389         this.selectedIndex = index;
51390         this.view.select(index);
51391         if(scrollIntoView !== false){
51392             var el = this.view.getNode(index);
51393             if(el){
51394                 this.innerList.scrollChildIntoView(el, false);
51395             }
51396         }
51397     },
51398
51399       
51400
51401     // private
51402     validateBlur : function(){
51403         
51404         return;
51405         
51406     },
51407
51408     // private
51409     initQuery : function(){
51410         this.doQuery(this.getRawValue());
51411     },
51412
51413     // private
51414     doForce : function(){
51415         if(this.el.dom.value.length > 0){
51416             this.el.dom.value =
51417                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51418              
51419         }
51420     },
51421
51422     /**
51423      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51424      * query allowing the query action to be canceled if needed.
51425      * @param {String} query The SQL query to execute
51426      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51427      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51428      * saved in the current store (defaults to false)
51429      */
51430     doQuery : function(q, forceAll){
51431         
51432         Roo.log('doQuery?');
51433         if(q === undefined || q === null){
51434             q = '';
51435         }
51436         var qe = {
51437             query: q,
51438             forceAll: forceAll,
51439             combo: this,
51440             cancel:false
51441         };
51442         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51443             return false;
51444         }
51445         q = qe.query;
51446         forceAll = qe.forceAll;
51447         if(forceAll === true || (q.length >= this.minChars)){
51448             if(this.lastQuery != q || this.alwaysQuery){
51449                 this.lastQuery = q;
51450                 if(this.mode == 'local'){
51451                     this.selectedIndex = -1;
51452                     if(forceAll){
51453                         this.store.clearFilter();
51454                     }else{
51455                         this.store.filter(this.displayField, q);
51456                     }
51457                     this.onLoad();
51458                 }else{
51459                     this.store.baseParams[this.queryParam] = q;
51460                     this.store.load({
51461                         params: this.getParams(q)
51462                     });
51463                     this.expand();
51464                 }
51465             }else{
51466                 this.selectedIndex = -1;
51467                 this.onLoad();   
51468             }
51469         }
51470     },
51471
51472     // private
51473     getParams : function(q){
51474         var p = {};
51475         //p[this.queryParam] = q;
51476         if(this.pageSize){
51477             p.start = 0;
51478             p.limit = this.pageSize;
51479         }
51480         return p;
51481     },
51482
51483     /**
51484      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51485      */
51486     collapse : function(){
51487         
51488     },
51489
51490     // private
51491     collapseIf : function(e){
51492         
51493     },
51494
51495     /**
51496      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51497      */
51498     expand : function(){
51499         
51500     } ,
51501
51502     // private
51503      
51504
51505     /** 
51506     * @cfg {Boolean} grow 
51507     * @hide 
51508     */
51509     /** 
51510     * @cfg {Number} growMin 
51511     * @hide 
51512     */
51513     /** 
51514     * @cfg {Number} growMax 
51515     * @hide 
51516     */
51517     /**
51518      * @hide
51519      * @method autoSize
51520      */
51521     
51522     setWidth : function()
51523     {
51524         
51525     },
51526     getResizeEl : function(){
51527         return this.el;
51528     }
51529 });//<script type="text/javasscript">
51530  
51531
51532 /**
51533  * @class Roo.DDView
51534  * A DnD enabled version of Roo.View.
51535  * @param {Element/String} container The Element in which to create the View.
51536  * @param {String} tpl The template string used to create the markup for each element of the View
51537  * @param {Object} config The configuration properties. These include all the config options of
51538  * {@link Roo.View} plus some specific to this class.<br>
51539  * <p>
51540  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51541  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51542  * <p>
51543  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51544 .x-view-drag-insert-above {
51545         border-top:1px dotted #3366cc;
51546 }
51547 .x-view-drag-insert-below {
51548         border-bottom:1px dotted #3366cc;
51549 }
51550 </code></pre>
51551  * 
51552  */
51553  
51554 Roo.DDView = function(container, tpl, config) {
51555     Roo.DDView.superclass.constructor.apply(this, arguments);
51556     this.getEl().setStyle("outline", "0px none");
51557     this.getEl().unselectable();
51558     if (this.dragGroup) {
51559         this.setDraggable(this.dragGroup.split(","));
51560     }
51561     if (this.dropGroup) {
51562         this.setDroppable(this.dropGroup.split(","));
51563     }
51564     if (this.deletable) {
51565         this.setDeletable();
51566     }
51567     this.isDirtyFlag = false;
51568         this.addEvents({
51569                 "drop" : true
51570         });
51571 };
51572
51573 Roo.extend(Roo.DDView, Roo.View, {
51574 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51575 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51576 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51577 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51578
51579         isFormField: true,
51580
51581         reset: Roo.emptyFn,
51582         
51583         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51584
51585         validate: function() {
51586                 return true;
51587         },
51588         
51589         destroy: function() {
51590                 this.purgeListeners();
51591                 this.getEl.removeAllListeners();
51592                 this.getEl().remove();
51593                 if (this.dragZone) {
51594                         if (this.dragZone.destroy) {
51595                                 this.dragZone.destroy();
51596                         }
51597                 }
51598                 if (this.dropZone) {
51599                         if (this.dropZone.destroy) {
51600                                 this.dropZone.destroy();
51601                         }
51602                 }
51603         },
51604
51605 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51606         getName: function() {
51607                 return this.name;
51608         },
51609
51610 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51611         setValue: function(v) {
51612                 if (!this.store) {
51613                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51614                 }
51615                 var data = {};
51616                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51617                 this.store.proxy = new Roo.data.MemoryProxy(data);
51618                 this.store.load();
51619         },
51620
51621 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51622         getValue: function() {
51623                 var result = '(';
51624                 this.store.each(function(rec) {
51625                         result += rec.id + ',';
51626                 });
51627                 return result.substr(0, result.length - 1) + ')';
51628         },
51629         
51630         getIds: function() {
51631                 var i = 0, result = new Array(this.store.getCount());
51632                 this.store.each(function(rec) {
51633                         result[i++] = rec.id;
51634                 });
51635                 return result;
51636         },
51637         
51638         isDirty: function() {
51639                 return this.isDirtyFlag;
51640         },
51641
51642 /**
51643  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51644  *      whole Element becomes the target, and this causes the drop gesture to append.
51645  */
51646     getTargetFromEvent : function(e) {
51647                 var target = e.getTarget();
51648                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51649                 target = target.parentNode;
51650                 }
51651                 if (!target) {
51652                         target = this.el.dom.lastChild || this.el.dom;
51653                 }
51654                 return target;
51655     },
51656
51657 /**
51658  *      Create the drag data which consists of an object which has the property "ddel" as
51659  *      the drag proxy element. 
51660  */
51661     getDragData : function(e) {
51662         var target = this.findItemFromChild(e.getTarget());
51663                 if(target) {
51664                         this.handleSelection(e);
51665                         var selNodes = this.getSelectedNodes();
51666             var dragData = {
51667                 source: this,
51668                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51669                 nodes: selNodes,
51670                 records: []
51671                         };
51672                         var selectedIndices = this.getSelectedIndexes();
51673                         for (var i = 0; i < selectedIndices.length; i++) {
51674                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51675                         }
51676                         if (selNodes.length == 1) {
51677                                 dragData.ddel = target.cloneNode(true); // the div element
51678                         } else {
51679                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51680                                 div.className = 'multi-proxy';
51681                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51682                                         div.appendChild(selNodes[i].cloneNode(true));
51683                                 }
51684                                 dragData.ddel = div;
51685                         }
51686             //console.log(dragData)
51687             //console.log(dragData.ddel.innerHTML)
51688                         return dragData;
51689                 }
51690         //console.log('nodragData')
51691                 return false;
51692     },
51693     
51694 /**     Specify to which ddGroup items in this DDView may be dragged. */
51695     setDraggable: function(ddGroup) {
51696         if (ddGroup instanceof Array) {
51697                 Roo.each(ddGroup, this.setDraggable, this);
51698                 return;
51699         }
51700         if (this.dragZone) {
51701                 this.dragZone.addToGroup(ddGroup);
51702         } else {
51703                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51704                                 containerScroll: true,
51705                                 ddGroup: ddGroup 
51706
51707                         });
51708 //                      Draggability implies selection. DragZone's mousedown selects the element.
51709                         if (!this.multiSelect) { this.singleSelect = true; }
51710
51711 //                      Wire the DragZone's handlers up to methods in *this*
51712                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51713                 }
51714     },
51715
51716 /**     Specify from which ddGroup this DDView accepts drops. */
51717     setDroppable: function(ddGroup) {
51718         if (ddGroup instanceof Array) {
51719                 Roo.each(ddGroup, this.setDroppable, this);
51720                 return;
51721         }
51722         if (this.dropZone) {
51723                 this.dropZone.addToGroup(ddGroup);
51724         } else {
51725                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51726                                 containerScroll: true,
51727                                 ddGroup: ddGroup
51728                         });
51729
51730 //                      Wire the DropZone's handlers up to methods in *this*
51731                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51732                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51733                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51734                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51735                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51736                 }
51737     },
51738
51739 /**     Decide whether to drop above or below a View node. */
51740     getDropPoint : function(e, n, dd){
51741         if (n == this.el.dom) { return "above"; }
51742                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51743                 var c = t + (b - t) / 2;
51744                 var y = Roo.lib.Event.getPageY(e);
51745                 if(y <= c) {
51746                         return "above";
51747                 }else{
51748                         return "below";
51749                 }
51750     },
51751
51752     onNodeEnter : function(n, dd, e, data){
51753                 return false;
51754     },
51755     
51756     onNodeOver : function(n, dd, e, data){
51757                 var pt = this.getDropPoint(e, n, dd);
51758                 // set the insert point style on the target node
51759                 var dragElClass = this.dropNotAllowed;
51760                 if (pt) {
51761                         var targetElClass;
51762                         if (pt == "above"){
51763                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51764                                 targetElClass = "x-view-drag-insert-above";
51765                         } else {
51766                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51767                                 targetElClass = "x-view-drag-insert-below";
51768                         }
51769                         if (this.lastInsertClass != targetElClass){
51770                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51771                                 this.lastInsertClass = targetElClass;
51772                         }
51773                 }
51774                 return dragElClass;
51775         },
51776
51777     onNodeOut : function(n, dd, e, data){
51778                 this.removeDropIndicators(n);
51779     },
51780
51781     onNodeDrop : function(n, dd, e, data){
51782         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51783                 return false;
51784         }
51785         var pt = this.getDropPoint(e, n, dd);
51786                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51787                 if (pt == "below") { insertAt++; }
51788                 for (var i = 0; i < data.records.length; i++) {
51789                         var r = data.records[i];
51790                         var dup = this.store.getById(r.id);
51791                         if (dup && (dd != this.dragZone)) {
51792                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51793                         } else {
51794                                 if (data.copy) {
51795                                         this.store.insert(insertAt++, r.copy());
51796                                 } else {
51797                                         data.source.isDirtyFlag = true;
51798                                         r.store.remove(r);
51799                                         this.store.insert(insertAt++, r);
51800                                 }
51801                                 this.isDirtyFlag = true;
51802                         }
51803                 }
51804                 this.dragZone.cachedTarget = null;
51805                 return true;
51806     },
51807
51808     removeDropIndicators : function(n){
51809                 if(n){
51810                         Roo.fly(n).removeClass([
51811                                 "x-view-drag-insert-above",
51812                                 "x-view-drag-insert-below"]);
51813                         this.lastInsertClass = "_noclass";
51814                 }
51815     },
51816
51817 /**
51818  *      Utility method. Add a delete option to the DDView's context menu.
51819  *      @param {String} imageUrl The URL of the "delete" icon image.
51820  */
51821         setDeletable: function(imageUrl) {
51822                 if (!this.singleSelect && !this.multiSelect) {
51823                         this.singleSelect = true;
51824                 }
51825                 var c = this.getContextMenu();
51826                 this.contextMenu.on("itemclick", function(item) {
51827                         switch (item.id) {
51828                                 case "delete":
51829                                         this.remove(this.getSelectedIndexes());
51830                                         break;
51831                         }
51832                 }, this);
51833                 this.contextMenu.add({
51834                         icon: imageUrl,
51835                         id: "delete",
51836                         text: 'Delete'
51837                 });
51838         },
51839         
51840 /**     Return the context menu for this DDView. */
51841         getContextMenu: function() {
51842                 if (!this.contextMenu) {
51843 //                      Create the View's context menu
51844                         this.contextMenu = new Roo.menu.Menu({
51845                                 id: this.id + "-contextmenu"
51846                         });
51847                         this.el.on("contextmenu", this.showContextMenu, this);
51848                 }
51849                 return this.contextMenu;
51850         },
51851         
51852         disableContextMenu: function() {
51853                 if (this.contextMenu) {
51854                         this.el.un("contextmenu", this.showContextMenu, this);
51855                 }
51856         },
51857
51858         showContextMenu: function(e, item) {
51859         item = this.findItemFromChild(e.getTarget());
51860                 if (item) {
51861                         e.stopEvent();
51862                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51863                         this.contextMenu.showAt(e.getXY());
51864             }
51865     },
51866
51867 /**
51868  *      Remove {@link Roo.data.Record}s at the specified indices.
51869  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51870  */
51871     remove: function(selectedIndices) {
51872                 selectedIndices = [].concat(selectedIndices);
51873                 for (var i = 0; i < selectedIndices.length; i++) {
51874                         var rec = this.store.getAt(selectedIndices[i]);
51875                         this.store.remove(rec);
51876                 }
51877     },
51878
51879 /**
51880  *      Double click fires the event, but also, if this is draggable, and there is only one other
51881  *      related DropZone, it transfers the selected node.
51882  */
51883     onDblClick : function(e){
51884         var item = this.findItemFromChild(e.getTarget());
51885         if(item){
51886             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51887                 return false;
51888             }
51889             if (this.dragGroup) {
51890                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51891                     while (targets.indexOf(this.dropZone) > -1) {
51892                             targets.remove(this.dropZone);
51893                                 }
51894                     if (targets.length == 1) {
51895                                         this.dragZone.cachedTarget = null;
51896                         var el = Roo.get(targets[0].getEl());
51897                         var box = el.getBox(true);
51898                         targets[0].onNodeDrop(el.dom, {
51899                                 target: el.dom,
51900                                 xy: [box.x, box.y + box.height - 1]
51901                         }, null, this.getDragData(e));
51902                     }
51903                 }
51904         }
51905     },
51906     
51907     handleSelection: function(e) {
51908                 this.dragZone.cachedTarget = null;
51909         var item = this.findItemFromChild(e.getTarget());
51910         if (!item) {
51911                 this.clearSelections(true);
51912                 return;
51913         }
51914                 if (item && (this.multiSelect || this.singleSelect)){
51915                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51916                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51917                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51918                                 this.unselect(item);
51919                         } else {
51920                                 this.select(item, this.multiSelect && e.ctrlKey);
51921                                 this.lastSelection = item;
51922                         }
51923                 }
51924     },
51925
51926     onItemClick : function(item, index, e){
51927                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51928                         return false;
51929                 }
51930                 return true;
51931     },
51932
51933     unselect : function(nodeInfo, suppressEvent){
51934                 var node = this.getNode(nodeInfo);
51935                 if(node && this.isSelected(node)){
51936                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51937                                 Roo.fly(node).removeClass(this.selectedClass);
51938                                 this.selections.remove(node);
51939                                 if(!suppressEvent){
51940                                         this.fireEvent("selectionchange", this, this.selections);
51941                                 }
51942                         }
51943                 }
51944     }
51945 });
51946 /*
51947  * Based on:
51948  * Ext JS Library 1.1.1
51949  * Copyright(c) 2006-2007, Ext JS, LLC.
51950  *
51951  * Originally Released Under LGPL - original licence link has changed is not relivant.
51952  *
51953  * Fork - LGPL
51954  * <script type="text/javascript">
51955  */
51956  
51957 /**
51958  * @class Roo.LayoutManager
51959  * @extends Roo.util.Observable
51960  * Base class for layout managers.
51961  */
51962 Roo.LayoutManager = function(container, config){
51963     Roo.LayoutManager.superclass.constructor.call(this);
51964     this.el = Roo.get(container);
51965     // ie scrollbar fix
51966     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51967         document.body.scroll = "no";
51968     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51969         this.el.position('relative');
51970     }
51971     this.id = this.el.id;
51972     this.el.addClass("x-layout-container");
51973     /** false to disable window resize monitoring @type Boolean */
51974     this.monitorWindowResize = true;
51975     this.regions = {};
51976     this.addEvents({
51977         /**
51978          * @event layout
51979          * Fires when a layout is performed. 
51980          * @param {Roo.LayoutManager} this
51981          */
51982         "layout" : true,
51983         /**
51984          * @event regionresized
51985          * Fires when the user resizes a region. 
51986          * @param {Roo.LayoutRegion} region The resized region
51987          * @param {Number} newSize The new size (width for east/west, height for north/south)
51988          */
51989         "regionresized" : true,
51990         /**
51991          * @event regioncollapsed
51992          * Fires when a region is collapsed. 
51993          * @param {Roo.LayoutRegion} region The collapsed region
51994          */
51995         "regioncollapsed" : true,
51996         /**
51997          * @event regionexpanded
51998          * Fires when a region is expanded.  
51999          * @param {Roo.LayoutRegion} region The expanded region
52000          */
52001         "regionexpanded" : true
52002     });
52003     this.updating = false;
52004     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
52005 };
52006
52007 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
52008     /**
52009      * Returns true if this layout is currently being updated
52010      * @return {Boolean}
52011      */
52012     isUpdating : function(){
52013         return this.updating; 
52014     },
52015     
52016     /**
52017      * Suspend the LayoutManager from doing auto-layouts while
52018      * making multiple add or remove calls
52019      */
52020     beginUpdate : function(){
52021         this.updating = true;    
52022     },
52023     
52024     /**
52025      * Restore auto-layouts and optionally disable the manager from performing a layout
52026      * @param {Boolean} noLayout true to disable a layout update 
52027      */
52028     endUpdate : function(noLayout){
52029         this.updating = false;
52030         if(!noLayout){
52031             this.layout();
52032         }    
52033     },
52034     
52035     layout: function(){
52036         
52037     },
52038     
52039     onRegionResized : function(region, newSize){
52040         this.fireEvent("regionresized", region, newSize);
52041         this.layout();
52042     },
52043     
52044     onRegionCollapsed : function(region){
52045         this.fireEvent("regioncollapsed", region);
52046     },
52047     
52048     onRegionExpanded : function(region){
52049         this.fireEvent("regionexpanded", region);
52050     },
52051         
52052     /**
52053      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
52054      * performs box-model adjustments.
52055      * @return {Object} The size as an object {width: (the width), height: (the height)}
52056      */
52057     getViewSize : function(){
52058         var size;
52059         if(this.el.dom != document.body){
52060             size = this.el.getSize();
52061         }else{
52062             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
52063         }
52064         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
52065         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
52066         return size;
52067     },
52068     
52069     /**
52070      * Returns the Element this layout is bound to.
52071      * @return {Roo.Element}
52072      */
52073     getEl : function(){
52074         return this.el;
52075     },
52076     
52077     /**
52078      * Returns the specified region.
52079      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
52080      * @return {Roo.LayoutRegion}
52081      */
52082     getRegion : function(target){
52083         return this.regions[target.toLowerCase()];
52084     },
52085     
52086     onWindowResize : function(){
52087         if(this.monitorWindowResize){
52088             this.layout();
52089         }
52090     }
52091 });/*
52092  * Based on:
52093  * Ext JS Library 1.1.1
52094  * Copyright(c) 2006-2007, Ext JS, LLC.
52095  *
52096  * Originally Released Under LGPL - original licence link has changed is not relivant.
52097  *
52098  * Fork - LGPL
52099  * <script type="text/javascript">
52100  */
52101 /**
52102  * @class Roo.BorderLayout
52103  * @extends Roo.LayoutManager
52104  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52105  * please see: <br><br>
52106  * <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>
52107  * <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>
52108  * Example:
52109  <pre><code>
52110  var layout = new Roo.BorderLayout(document.body, {
52111     north: {
52112         initialSize: 25,
52113         titlebar: false
52114     },
52115     west: {
52116         split:true,
52117         initialSize: 200,
52118         minSize: 175,
52119         maxSize: 400,
52120         titlebar: true,
52121         collapsible: true
52122     },
52123     east: {
52124         split:true,
52125         initialSize: 202,
52126         minSize: 175,
52127         maxSize: 400,
52128         titlebar: true,
52129         collapsible: true
52130     },
52131     south: {
52132         split:true,
52133         initialSize: 100,
52134         minSize: 100,
52135         maxSize: 200,
52136         titlebar: true,
52137         collapsible: true
52138     },
52139     center: {
52140         titlebar: true,
52141         autoScroll:true,
52142         resizeTabs: true,
52143         minTabWidth: 50,
52144         preferredTabWidth: 150
52145     }
52146 });
52147
52148 // shorthand
52149 var CP = Roo.ContentPanel;
52150
52151 layout.beginUpdate();
52152 layout.add("north", new CP("north", "North"));
52153 layout.add("south", new CP("south", {title: "South", closable: true}));
52154 layout.add("west", new CP("west", {title: "West"}));
52155 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52156 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52157 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52158 layout.getRegion("center").showPanel("center1");
52159 layout.endUpdate();
52160 </code></pre>
52161
52162 <b>The container the layout is rendered into can be either the body element or any other element.
52163 If it is not the body element, the container needs to either be an absolute positioned element,
52164 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52165 the container size if it is not the body element.</b>
52166
52167 * @constructor
52168 * Create a new BorderLayout
52169 * @param {String/HTMLElement/Element} container The container this layout is bound to
52170 * @param {Object} config Configuration options
52171  */
52172 Roo.BorderLayout = function(container, config){
52173     config = config || {};
52174     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52175     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52176     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52177         var target = this.factory.validRegions[i];
52178         if(config[target]){
52179             this.addRegion(target, config[target]);
52180         }
52181     }
52182 };
52183
52184 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52185     /**
52186      * Creates and adds a new region if it doesn't already exist.
52187      * @param {String} target The target region key (north, south, east, west or center).
52188      * @param {Object} config The regions config object
52189      * @return {BorderLayoutRegion} The new region
52190      */
52191     addRegion : function(target, config){
52192         if(!this.regions[target]){
52193             var r = this.factory.create(target, this, config);
52194             this.bindRegion(target, r);
52195         }
52196         return this.regions[target];
52197     },
52198
52199     // private (kinda)
52200     bindRegion : function(name, r){
52201         this.regions[name] = r;
52202         r.on("visibilitychange", this.layout, this);
52203         r.on("paneladded", this.layout, this);
52204         r.on("panelremoved", this.layout, this);
52205         r.on("invalidated", this.layout, this);
52206         r.on("resized", this.onRegionResized, this);
52207         r.on("collapsed", this.onRegionCollapsed, this);
52208         r.on("expanded", this.onRegionExpanded, this);
52209     },
52210
52211     /**
52212      * Performs a layout update.
52213      */
52214     layout : function(){
52215         if(this.updating) {
52216             return;
52217         }
52218         var size = this.getViewSize();
52219         var w = size.width;
52220         var h = size.height;
52221         var centerW = w;
52222         var centerH = h;
52223         var centerY = 0;
52224         var centerX = 0;
52225         //var x = 0, y = 0;
52226
52227         var rs = this.regions;
52228         var north = rs["north"];
52229         var south = rs["south"]; 
52230         var west = rs["west"];
52231         var east = rs["east"];
52232         var center = rs["center"];
52233         //if(this.hideOnLayout){ // not supported anymore
52234             //c.el.setStyle("display", "none");
52235         //}
52236         if(north && north.isVisible()){
52237             var b = north.getBox();
52238             var m = north.getMargins();
52239             b.width = w - (m.left+m.right);
52240             b.x = m.left;
52241             b.y = m.top;
52242             centerY = b.height + b.y + m.bottom;
52243             centerH -= centerY;
52244             north.updateBox(this.safeBox(b));
52245         }
52246         if(south && south.isVisible()){
52247             var b = south.getBox();
52248             var m = south.getMargins();
52249             b.width = w - (m.left+m.right);
52250             b.x = m.left;
52251             var totalHeight = (b.height + m.top + m.bottom);
52252             b.y = h - totalHeight + m.top;
52253             centerH -= totalHeight;
52254             south.updateBox(this.safeBox(b));
52255         }
52256         if(west && west.isVisible()){
52257             var b = west.getBox();
52258             var m = west.getMargins();
52259             b.height = centerH - (m.top+m.bottom);
52260             b.x = m.left;
52261             b.y = centerY + m.top;
52262             var totalWidth = (b.width + m.left + m.right);
52263             centerX += totalWidth;
52264             centerW -= totalWidth;
52265             west.updateBox(this.safeBox(b));
52266         }
52267         if(east && east.isVisible()){
52268             var b = east.getBox();
52269             var m = east.getMargins();
52270             b.height = centerH - (m.top+m.bottom);
52271             var totalWidth = (b.width + m.left + m.right);
52272             b.x = w - totalWidth + m.left;
52273             b.y = centerY + m.top;
52274             centerW -= totalWidth;
52275             east.updateBox(this.safeBox(b));
52276         }
52277         if(center){
52278             var m = center.getMargins();
52279             var centerBox = {
52280                 x: centerX + m.left,
52281                 y: centerY + m.top,
52282                 width: centerW - (m.left+m.right),
52283                 height: centerH - (m.top+m.bottom)
52284             };
52285             //if(this.hideOnLayout){
52286                 //center.el.setStyle("display", "block");
52287             //}
52288             center.updateBox(this.safeBox(centerBox));
52289         }
52290         this.el.repaint();
52291         this.fireEvent("layout", this);
52292     },
52293
52294     // private
52295     safeBox : function(box){
52296         box.width = Math.max(0, box.width);
52297         box.height = Math.max(0, box.height);
52298         return box;
52299     },
52300
52301     /**
52302      * Adds a ContentPanel (or subclass) to this layout.
52303      * @param {String} target The target region key (north, south, east, west or center).
52304      * @param {Roo.ContentPanel} panel The panel to add
52305      * @return {Roo.ContentPanel} The added panel
52306      */
52307     add : function(target, panel){
52308          
52309         target = target.toLowerCase();
52310         return this.regions[target].add(panel);
52311     },
52312
52313     /**
52314      * Remove a ContentPanel (or subclass) to this layout.
52315      * @param {String} target The target region key (north, south, east, west or center).
52316      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52317      * @return {Roo.ContentPanel} The removed panel
52318      */
52319     remove : function(target, panel){
52320         target = target.toLowerCase();
52321         return this.regions[target].remove(panel);
52322     },
52323
52324     /**
52325      * Searches all regions for a panel with the specified id
52326      * @param {String} panelId
52327      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52328      */
52329     findPanel : function(panelId){
52330         var rs = this.regions;
52331         for(var target in rs){
52332             if(typeof rs[target] != "function"){
52333                 var p = rs[target].getPanel(panelId);
52334                 if(p){
52335                     return p;
52336                 }
52337             }
52338         }
52339         return null;
52340     },
52341
52342     /**
52343      * Searches all regions for a panel with the specified id and activates (shows) it.
52344      * @param {String/ContentPanel} panelId The panels id or the panel itself
52345      * @return {Roo.ContentPanel} The shown panel or null
52346      */
52347     showPanel : function(panelId) {
52348       var rs = this.regions;
52349       for(var target in rs){
52350          var r = rs[target];
52351          if(typeof r != "function"){
52352             if(r.hasPanel(panelId)){
52353                return r.showPanel(panelId);
52354             }
52355          }
52356       }
52357       return null;
52358    },
52359
52360    /**
52361      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52362      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52363      */
52364     restoreState : function(provider){
52365         if(!provider){
52366             provider = Roo.state.Manager;
52367         }
52368         var sm = new Roo.LayoutStateManager();
52369         sm.init(this, provider);
52370     },
52371
52372     /**
52373      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52374      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52375      * a valid ContentPanel config object.  Example:
52376      * <pre><code>
52377 // Create the main layout
52378 var layout = new Roo.BorderLayout('main-ct', {
52379     west: {
52380         split:true,
52381         minSize: 175,
52382         titlebar: true
52383     },
52384     center: {
52385         title:'Components'
52386     }
52387 }, 'main-ct');
52388
52389 // Create and add multiple ContentPanels at once via configs
52390 layout.batchAdd({
52391    west: {
52392        id: 'source-files',
52393        autoCreate:true,
52394        title:'Ext Source Files',
52395        autoScroll:true,
52396        fitToFrame:true
52397    },
52398    center : {
52399        el: cview,
52400        autoScroll:true,
52401        fitToFrame:true,
52402        toolbar: tb,
52403        resizeEl:'cbody'
52404    }
52405 });
52406 </code></pre>
52407      * @param {Object} regions An object containing ContentPanel configs by region name
52408      */
52409     batchAdd : function(regions){
52410         this.beginUpdate();
52411         for(var rname in regions){
52412             var lr = this.regions[rname];
52413             if(lr){
52414                 this.addTypedPanels(lr, regions[rname]);
52415             }
52416         }
52417         this.endUpdate();
52418     },
52419
52420     // private
52421     addTypedPanels : function(lr, ps){
52422         if(typeof ps == 'string'){
52423             lr.add(new Roo.ContentPanel(ps));
52424         }
52425         else if(ps instanceof Array){
52426             for(var i =0, len = ps.length; i < len; i++){
52427                 this.addTypedPanels(lr, ps[i]);
52428             }
52429         }
52430         else if(!ps.events){ // raw config?
52431             var el = ps.el;
52432             delete ps.el; // prevent conflict
52433             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52434         }
52435         else {  // panel object assumed!
52436             lr.add(ps);
52437         }
52438     },
52439     /**
52440      * Adds a xtype elements to the layout.
52441      * <pre><code>
52442
52443 layout.addxtype({
52444        xtype : 'ContentPanel',
52445        region: 'west',
52446        items: [ .... ]
52447    }
52448 );
52449
52450 layout.addxtype({
52451         xtype : 'NestedLayoutPanel',
52452         region: 'west',
52453         layout: {
52454            center: { },
52455            west: { }   
52456         },
52457         items : [ ... list of content panels or nested layout panels.. ]
52458    }
52459 );
52460 </code></pre>
52461      * @param {Object} cfg Xtype definition of item to add.
52462      */
52463     addxtype : function(cfg)
52464     {
52465         // basically accepts a pannel...
52466         // can accept a layout region..!?!?
52467         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52468         
52469         if (!cfg.xtype.match(/Panel$/)) {
52470             return false;
52471         }
52472         var ret = false;
52473         
52474         if (typeof(cfg.region) == 'undefined') {
52475             Roo.log("Failed to add Panel, region was not set");
52476             Roo.log(cfg);
52477             return false;
52478         }
52479         var region = cfg.region;
52480         delete cfg.region;
52481         
52482           
52483         var xitems = [];
52484         if (cfg.items) {
52485             xitems = cfg.items;
52486             delete cfg.items;
52487         }
52488         var nb = false;
52489         
52490         switch(cfg.xtype) 
52491         {
52492             case 'ContentPanel':  // ContentPanel (el, cfg)
52493             case 'ScrollPanel':  // ContentPanel (el, cfg)
52494             case 'ViewPanel': 
52495                 if(cfg.autoCreate) {
52496                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52497                 } else {
52498                     var el = this.el.createChild();
52499                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52500                 }
52501                 
52502                 this.add(region, ret);
52503                 break;
52504             
52505             
52506             case 'TreePanel': // our new panel!
52507                 cfg.el = this.el.createChild();
52508                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52509                 this.add(region, ret);
52510                 break;
52511             
52512             case 'NestedLayoutPanel': 
52513                 // create a new Layout (which is  a Border Layout...
52514                 var el = this.el.createChild();
52515                 var clayout = cfg.layout;
52516                 delete cfg.layout;
52517                 clayout.items   = clayout.items  || [];
52518                 // replace this exitems with the clayout ones..
52519                 xitems = clayout.items;
52520                  
52521                 
52522                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52523                     cfg.background = false;
52524                 }
52525                 var layout = new Roo.BorderLayout(el, clayout);
52526                 
52527                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52528                 //console.log('adding nested layout panel '  + cfg.toSource());
52529                 this.add(region, ret);
52530                 nb = {}; /// find first...
52531                 break;
52532                 
52533             case 'GridPanel': 
52534             
52535                 // needs grid and region
52536                 
52537                 //var el = this.getRegion(region).el.createChild();
52538                 var el = this.el.createChild();
52539                 // create the grid first...
52540                 
52541                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52542                 delete cfg.grid;
52543                 if (region == 'center' && this.active ) {
52544                     cfg.background = false;
52545                 }
52546                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52547                 
52548                 this.add(region, ret);
52549                 if (cfg.background) {
52550                     ret.on('activate', function(gp) {
52551                         if (!gp.grid.rendered) {
52552                             gp.grid.render();
52553                         }
52554                     });
52555                 } else {
52556                     grid.render();
52557                 }
52558                 break;
52559            
52560            
52561            
52562                 
52563                 
52564                 
52565             default:
52566                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52567                     
52568                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52569                     this.add(region, ret);
52570                 } else {
52571                 
52572                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52573                     return null;
52574                 }
52575                 
52576              // GridPanel (grid, cfg)
52577             
52578         }
52579         this.beginUpdate();
52580         // add children..
52581         var region = '';
52582         var abn = {};
52583         Roo.each(xitems, function(i)  {
52584             region = nb && i.region ? i.region : false;
52585             
52586             var add = ret.addxtype(i);
52587            
52588             if (region) {
52589                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52590                 if (!i.background) {
52591                     abn[region] = nb[region] ;
52592                 }
52593             }
52594             
52595         });
52596         this.endUpdate();
52597
52598         // make the last non-background panel active..
52599         //if (nb) { Roo.log(abn); }
52600         if (nb) {
52601             
52602             for(var r in abn) {
52603                 region = this.getRegion(r);
52604                 if (region) {
52605                     // tried using nb[r], but it does not work..
52606                      
52607                     region.showPanel(abn[r]);
52608                    
52609                 }
52610             }
52611         }
52612         return ret;
52613         
52614     }
52615 });
52616
52617 /**
52618  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52619  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52620  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52621  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52622  * <pre><code>
52623 // shorthand
52624 var CP = Roo.ContentPanel;
52625
52626 var layout = Roo.BorderLayout.create({
52627     north: {
52628         initialSize: 25,
52629         titlebar: false,
52630         panels: [new CP("north", "North")]
52631     },
52632     west: {
52633         split:true,
52634         initialSize: 200,
52635         minSize: 175,
52636         maxSize: 400,
52637         titlebar: true,
52638         collapsible: true,
52639         panels: [new CP("west", {title: "West"})]
52640     },
52641     east: {
52642         split:true,
52643         initialSize: 202,
52644         minSize: 175,
52645         maxSize: 400,
52646         titlebar: true,
52647         collapsible: true,
52648         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52649     },
52650     south: {
52651         split:true,
52652         initialSize: 100,
52653         minSize: 100,
52654         maxSize: 200,
52655         titlebar: true,
52656         collapsible: true,
52657         panels: [new CP("south", {title: "South", closable: true})]
52658     },
52659     center: {
52660         titlebar: true,
52661         autoScroll:true,
52662         resizeTabs: true,
52663         minTabWidth: 50,
52664         preferredTabWidth: 150,
52665         panels: [
52666             new CP("center1", {title: "Close Me", closable: true}),
52667             new CP("center2", {title: "Center Panel", closable: false})
52668         ]
52669     }
52670 }, document.body);
52671
52672 layout.getRegion("center").showPanel("center1");
52673 </code></pre>
52674  * @param config
52675  * @param targetEl
52676  */
52677 Roo.BorderLayout.create = function(config, targetEl){
52678     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52679     layout.beginUpdate();
52680     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52681     for(var j = 0, jlen = regions.length; j < jlen; j++){
52682         var lr = regions[j];
52683         if(layout.regions[lr] && config[lr].panels){
52684             var r = layout.regions[lr];
52685             var ps = config[lr].panels;
52686             layout.addTypedPanels(r, ps);
52687         }
52688     }
52689     layout.endUpdate();
52690     return layout;
52691 };
52692
52693 // private
52694 Roo.BorderLayout.RegionFactory = {
52695     // private
52696     validRegions : ["north","south","east","west","center"],
52697
52698     // private
52699     create : function(target, mgr, config){
52700         target = target.toLowerCase();
52701         if(config.lightweight || config.basic){
52702             return new Roo.BasicLayoutRegion(mgr, config, target);
52703         }
52704         switch(target){
52705             case "north":
52706                 return new Roo.NorthLayoutRegion(mgr, config);
52707             case "south":
52708                 return new Roo.SouthLayoutRegion(mgr, config);
52709             case "east":
52710                 return new Roo.EastLayoutRegion(mgr, config);
52711             case "west":
52712                 return new Roo.WestLayoutRegion(mgr, config);
52713             case "center":
52714                 return new Roo.CenterLayoutRegion(mgr, config);
52715         }
52716         throw 'Layout region "'+target+'" not supported.';
52717     }
52718 };/*
52719  * Based on:
52720  * Ext JS Library 1.1.1
52721  * Copyright(c) 2006-2007, Ext JS, LLC.
52722  *
52723  * Originally Released Under LGPL - original licence link has changed is not relivant.
52724  *
52725  * Fork - LGPL
52726  * <script type="text/javascript">
52727  */
52728  
52729 /**
52730  * @class Roo.BasicLayoutRegion
52731  * @extends Roo.util.Observable
52732  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52733  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52734  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52735  */
52736 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52737     this.mgr = mgr;
52738     this.position  = pos;
52739     this.events = {
52740         /**
52741          * @scope Roo.BasicLayoutRegion
52742          */
52743         
52744         /**
52745          * @event beforeremove
52746          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52747          * @param {Roo.LayoutRegion} this
52748          * @param {Roo.ContentPanel} panel The panel
52749          * @param {Object} e The cancel event object
52750          */
52751         "beforeremove" : true,
52752         /**
52753          * @event invalidated
52754          * Fires when the layout for this region is changed.
52755          * @param {Roo.LayoutRegion} this
52756          */
52757         "invalidated" : true,
52758         /**
52759          * @event visibilitychange
52760          * Fires when this region is shown or hidden 
52761          * @param {Roo.LayoutRegion} this
52762          * @param {Boolean} visibility true or false
52763          */
52764         "visibilitychange" : true,
52765         /**
52766          * @event paneladded
52767          * Fires when a panel is added. 
52768          * @param {Roo.LayoutRegion} this
52769          * @param {Roo.ContentPanel} panel The panel
52770          */
52771         "paneladded" : true,
52772         /**
52773          * @event panelremoved
52774          * Fires when a panel is removed. 
52775          * @param {Roo.LayoutRegion} this
52776          * @param {Roo.ContentPanel} panel The panel
52777          */
52778         "panelremoved" : true,
52779         /**
52780          * @event beforecollapse
52781          * Fires when this region before collapse.
52782          * @param {Roo.LayoutRegion} this
52783          */
52784         "beforecollapse" : true,
52785         /**
52786          * @event collapsed
52787          * Fires when this region is collapsed.
52788          * @param {Roo.LayoutRegion} this
52789          */
52790         "collapsed" : true,
52791         /**
52792          * @event expanded
52793          * Fires when this region is expanded.
52794          * @param {Roo.LayoutRegion} this
52795          */
52796         "expanded" : true,
52797         /**
52798          * @event slideshow
52799          * Fires when this region is slid into view.
52800          * @param {Roo.LayoutRegion} this
52801          */
52802         "slideshow" : true,
52803         /**
52804          * @event slidehide
52805          * Fires when this region slides out of view. 
52806          * @param {Roo.LayoutRegion} this
52807          */
52808         "slidehide" : true,
52809         /**
52810          * @event panelactivated
52811          * Fires when a panel is activated. 
52812          * @param {Roo.LayoutRegion} this
52813          * @param {Roo.ContentPanel} panel The activated panel
52814          */
52815         "panelactivated" : true,
52816         /**
52817          * @event resized
52818          * Fires when the user resizes this region. 
52819          * @param {Roo.LayoutRegion} this
52820          * @param {Number} newSize The new size (width for east/west, height for north/south)
52821          */
52822         "resized" : true
52823     };
52824     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52825     this.panels = new Roo.util.MixedCollection();
52826     this.panels.getKey = this.getPanelId.createDelegate(this);
52827     this.box = null;
52828     this.activePanel = null;
52829     // ensure listeners are added...
52830     
52831     if (config.listeners || config.events) {
52832         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52833             listeners : config.listeners || {},
52834             events : config.events || {}
52835         });
52836     }
52837     
52838     if(skipConfig !== true){
52839         this.applyConfig(config);
52840     }
52841 };
52842
52843 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52844     getPanelId : function(p){
52845         return p.getId();
52846     },
52847     
52848     applyConfig : function(config){
52849         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52850         this.config = config;
52851         
52852     },
52853     
52854     /**
52855      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52856      * the width, for horizontal (north, south) the height.
52857      * @param {Number} newSize The new width or height
52858      */
52859     resizeTo : function(newSize){
52860         var el = this.el ? this.el :
52861                  (this.activePanel ? this.activePanel.getEl() : null);
52862         if(el){
52863             switch(this.position){
52864                 case "east":
52865                 case "west":
52866                     el.setWidth(newSize);
52867                     this.fireEvent("resized", this, newSize);
52868                 break;
52869                 case "north":
52870                 case "south":
52871                     el.setHeight(newSize);
52872                     this.fireEvent("resized", this, newSize);
52873                 break;                
52874             }
52875         }
52876     },
52877     
52878     getBox : function(){
52879         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52880     },
52881     
52882     getMargins : function(){
52883         return this.margins;
52884     },
52885     
52886     updateBox : function(box){
52887         this.box = box;
52888         var el = this.activePanel.getEl();
52889         el.dom.style.left = box.x + "px";
52890         el.dom.style.top = box.y + "px";
52891         this.activePanel.setSize(box.width, box.height);
52892     },
52893     
52894     /**
52895      * Returns the container element for this region.
52896      * @return {Roo.Element}
52897      */
52898     getEl : function(){
52899         return this.activePanel;
52900     },
52901     
52902     /**
52903      * Returns true if this region is currently visible.
52904      * @return {Boolean}
52905      */
52906     isVisible : function(){
52907         return this.activePanel ? true : false;
52908     },
52909     
52910     setActivePanel : function(panel){
52911         panel = this.getPanel(panel);
52912         if(this.activePanel && this.activePanel != panel){
52913             this.activePanel.setActiveState(false);
52914             this.activePanel.getEl().setLeftTop(-10000,-10000);
52915         }
52916         this.activePanel = panel;
52917         panel.setActiveState(true);
52918         if(this.box){
52919             panel.setSize(this.box.width, this.box.height);
52920         }
52921         this.fireEvent("panelactivated", this, panel);
52922         this.fireEvent("invalidated");
52923     },
52924     
52925     /**
52926      * Show the specified panel.
52927      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52928      * @return {Roo.ContentPanel} The shown panel or null
52929      */
52930     showPanel : function(panel){
52931         if(panel = this.getPanel(panel)){
52932             this.setActivePanel(panel);
52933         }
52934         return panel;
52935     },
52936     
52937     /**
52938      * Get the active panel for this region.
52939      * @return {Roo.ContentPanel} The active panel or null
52940      */
52941     getActivePanel : function(){
52942         return this.activePanel;
52943     },
52944     
52945     /**
52946      * Add the passed ContentPanel(s)
52947      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52948      * @return {Roo.ContentPanel} The panel added (if only one was added)
52949      */
52950     add : function(panel){
52951         if(arguments.length > 1){
52952             for(var i = 0, len = arguments.length; i < len; i++) {
52953                 this.add(arguments[i]);
52954             }
52955             return null;
52956         }
52957         if(this.hasPanel(panel)){
52958             this.showPanel(panel);
52959             return panel;
52960         }
52961         var el = panel.getEl();
52962         if(el.dom.parentNode != this.mgr.el.dom){
52963             this.mgr.el.dom.appendChild(el.dom);
52964         }
52965         if(panel.setRegion){
52966             panel.setRegion(this);
52967         }
52968         this.panels.add(panel);
52969         el.setStyle("position", "absolute");
52970         if(!panel.background){
52971             this.setActivePanel(panel);
52972             if(this.config.initialSize && this.panels.getCount()==1){
52973                 this.resizeTo(this.config.initialSize);
52974             }
52975         }
52976         this.fireEvent("paneladded", this, panel);
52977         return panel;
52978     },
52979     
52980     /**
52981      * Returns true if the panel is in this region.
52982      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52983      * @return {Boolean}
52984      */
52985     hasPanel : function(panel){
52986         if(typeof panel == "object"){ // must be panel obj
52987             panel = panel.getId();
52988         }
52989         return this.getPanel(panel) ? true : false;
52990     },
52991     
52992     /**
52993      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52994      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52995      * @param {Boolean} preservePanel Overrides the config preservePanel option
52996      * @return {Roo.ContentPanel} The panel that was removed
52997      */
52998     remove : function(panel, preservePanel){
52999         panel = this.getPanel(panel);
53000         if(!panel){
53001             return null;
53002         }
53003         var e = {};
53004         this.fireEvent("beforeremove", this, panel, e);
53005         if(e.cancel === true){
53006             return null;
53007         }
53008         var panelId = panel.getId();
53009         this.panels.removeKey(panelId);
53010         return panel;
53011     },
53012     
53013     /**
53014      * Returns the panel specified or null if it's not in this region.
53015      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53016      * @return {Roo.ContentPanel}
53017      */
53018     getPanel : function(id){
53019         if(typeof id == "object"){ // must be panel obj
53020             return id;
53021         }
53022         return this.panels.get(id);
53023     },
53024     
53025     /**
53026      * Returns this regions position (north/south/east/west/center).
53027      * @return {String} 
53028      */
53029     getPosition: function(){
53030         return this.position;    
53031     }
53032 });/*
53033  * Based on:
53034  * Ext JS Library 1.1.1
53035  * Copyright(c) 2006-2007, Ext JS, LLC.
53036  *
53037  * Originally Released Under LGPL - original licence link has changed is not relivant.
53038  *
53039  * Fork - LGPL
53040  * <script type="text/javascript">
53041  */
53042  
53043 /**
53044  * @class Roo.LayoutRegion
53045  * @extends Roo.BasicLayoutRegion
53046  * This class represents a region in a layout manager.
53047  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
53048  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
53049  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
53050  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
53051  * @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})
53052  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
53053  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
53054  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
53055  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
53056  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
53057  * @cfg {String}    title           The title for the region (overrides panel titles)
53058  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
53059  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
53060  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
53061  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
53062  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
53063  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
53064  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
53065  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
53066  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
53067  * @cfg {Boolean}   showPin         True to show a pin button
53068  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
53069  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
53070  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
53071  * @cfg {Number}    width           For East/West panels
53072  * @cfg {Number}    height          For North/South panels
53073  * @cfg {Boolean}   split           To show the splitter
53074  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
53075  */
53076 Roo.LayoutRegion = function(mgr, config, pos){
53077     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
53078     var dh = Roo.DomHelper;
53079     /** This region's container element 
53080     * @type Roo.Element */
53081     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53082     /** This region's title element 
53083     * @type Roo.Element */
53084
53085     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53086         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53087         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53088     ]}, true);
53089     this.titleEl.enableDisplayMode();
53090     /** This region's title text element 
53091     * @type HTMLElement */
53092     this.titleTextEl = this.titleEl.dom.firstChild;
53093     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53094     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53095     this.closeBtn.enableDisplayMode();
53096     this.closeBtn.on("click", this.closeClicked, this);
53097     this.closeBtn.hide();
53098
53099     this.createBody(config);
53100     this.visible = true;
53101     this.collapsed = false;
53102
53103     if(config.hideWhenEmpty){
53104         this.hide();
53105         this.on("paneladded", this.validateVisibility, this);
53106         this.on("panelremoved", this.validateVisibility, this);
53107     }
53108     this.applyConfig(config);
53109 };
53110
53111 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53112
53113     createBody : function(){
53114         /** This region's body element 
53115         * @type Roo.Element */
53116         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53117     },
53118
53119     applyConfig : function(c){
53120         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53121             var dh = Roo.DomHelper;
53122             if(c.titlebar !== false){
53123                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53124                 this.collapseBtn.on("click", this.collapse, this);
53125                 this.collapseBtn.enableDisplayMode();
53126
53127                 if(c.showPin === true || this.showPin){
53128                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53129                     this.stickBtn.enableDisplayMode();
53130                     this.stickBtn.on("click", this.expand, this);
53131                     this.stickBtn.hide();
53132                 }
53133             }
53134             /** This region's collapsed element
53135             * @type Roo.Element */
53136             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53137                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53138             ]}, true);
53139             if(c.floatable !== false){
53140                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53141                this.collapsedEl.on("click", this.collapseClick, this);
53142             }
53143
53144             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53145                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53146                    id: "message", unselectable: "on", style:{"float":"left"}});
53147                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53148              }
53149             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53150             this.expandBtn.on("click", this.expand, this);
53151         }
53152         if(this.collapseBtn){
53153             this.collapseBtn.setVisible(c.collapsible == true);
53154         }
53155         this.cmargins = c.cmargins || this.cmargins ||
53156                          (this.position == "west" || this.position == "east" ?
53157                              {top: 0, left: 2, right:2, bottom: 0} :
53158                              {top: 2, left: 0, right:0, bottom: 2});
53159         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53160         this.bottomTabs = c.tabPosition != "top";
53161         this.autoScroll = c.autoScroll || false;
53162         if(this.autoScroll){
53163             this.bodyEl.setStyle("overflow", "auto");
53164         }else{
53165             this.bodyEl.setStyle("overflow", "hidden");
53166         }
53167         //if(c.titlebar !== false){
53168             if((!c.titlebar && !c.title) || c.titlebar === false){
53169                 this.titleEl.hide();
53170             }else{
53171                 this.titleEl.show();
53172                 if(c.title){
53173                     this.titleTextEl.innerHTML = c.title;
53174                 }
53175             }
53176         //}
53177         this.duration = c.duration || .30;
53178         this.slideDuration = c.slideDuration || .45;
53179         this.config = c;
53180         if(c.collapsed){
53181             this.collapse(true);
53182         }
53183         if(c.hidden){
53184             this.hide();
53185         }
53186     },
53187     /**
53188      * Returns true if this region is currently visible.
53189      * @return {Boolean}
53190      */
53191     isVisible : function(){
53192         return this.visible;
53193     },
53194
53195     /**
53196      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53197      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53198      */
53199     setCollapsedTitle : function(title){
53200         title = title || "&#160;";
53201         if(this.collapsedTitleTextEl){
53202             this.collapsedTitleTextEl.innerHTML = title;
53203         }
53204     },
53205
53206     getBox : function(){
53207         var b;
53208         if(!this.collapsed){
53209             b = this.el.getBox(false, true);
53210         }else{
53211             b = this.collapsedEl.getBox(false, true);
53212         }
53213         return b;
53214     },
53215
53216     getMargins : function(){
53217         return this.collapsed ? this.cmargins : this.margins;
53218     },
53219
53220     highlight : function(){
53221         this.el.addClass("x-layout-panel-dragover");
53222     },
53223
53224     unhighlight : function(){
53225         this.el.removeClass("x-layout-panel-dragover");
53226     },
53227
53228     updateBox : function(box){
53229         this.box = box;
53230         if(!this.collapsed){
53231             this.el.dom.style.left = box.x + "px";
53232             this.el.dom.style.top = box.y + "px";
53233             this.updateBody(box.width, box.height);
53234         }else{
53235             this.collapsedEl.dom.style.left = box.x + "px";
53236             this.collapsedEl.dom.style.top = box.y + "px";
53237             this.collapsedEl.setSize(box.width, box.height);
53238         }
53239         if(this.tabs){
53240             this.tabs.autoSizeTabs();
53241         }
53242     },
53243
53244     updateBody : function(w, h){
53245         if(w !== null){
53246             this.el.setWidth(w);
53247             w -= this.el.getBorderWidth("rl");
53248             if(this.config.adjustments){
53249                 w += this.config.adjustments[0];
53250             }
53251         }
53252         if(h !== null){
53253             this.el.setHeight(h);
53254             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53255             h -= this.el.getBorderWidth("tb");
53256             if(this.config.adjustments){
53257                 h += this.config.adjustments[1];
53258             }
53259             this.bodyEl.setHeight(h);
53260             if(this.tabs){
53261                 h = this.tabs.syncHeight(h);
53262             }
53263         }
53264         if(this.panelSize){
53265             w = w !== null ? w : this.panelSize.width;
53266             h = h !== null ? h : this.panelSize.height;
53267         }
53268         if(this.activePanel){
53269             var el = this.activePanel.getEl();
53270             w = w !== null ? w : el.getWidth();
53271             h = h !== null ? h : el.getHeight();
53272             this.panelSize = {width: w, height: h};
53273             this.activePanel.setSize(w, h);
53274         }
53275         if(Roo.isIE && this.tabs){
53276             this.tabs.el.repaint();
53277         }
53278     },
53279
53280     /**
53281      * Returns the container element for this region.
53282      * @return {Roo.Element}
53283      */
53284     getEl : function(){
53285         return this.el;
53286     },
53287
53288     /**
53289      * Hides this region.
53290      */
53291     hide : function(){
53292         if(!this.collapsed){
53293             this.el.dom.style.left = "-2000px";
53294             this.el.hide();
53295         }else{
53296             this.collapsedEl.dom.style.left = "-2000px";
53297             this.collapsedEl.hide();
53298         }
53299         this.visible = false;
53300         this.fireEvent("visibilitychange", this, false);
53301     },
53302
53303     /**
53304      * Shows this region if it was previously hidden.
53305      */
53306     show : function(){
53307         if(!this.collapsed){
53308             this.el.show();
53309         }else{
53310             this.collapsedEl.show();
53311         }
53312         this.visible = true;
53313         this.fireEvent("visibilitychange", this, true);
53314     },
53315
53316     closeClicked : function(){
53317         if(this.activePanel){
53318             this.remove(this.activePanel);
53319         }
53320     },
53321
53322     collapseClick : function(e){
53323         if(this.isSlid){
53324            e.stopPropagation();
53325            this.slideIn();
53326         }else{
53327            e.stopPropagation();
53328            this.slideOut();
53329         }
53330     },
53331
53332     /**
53333      * Collapses this region.
53334      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53335      */
53336     collapse : function(skipAnim, skipCheck){
53337         if(this.collapsed) {
53338             return;
53339         }
53340         
53341         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53342             
53343             this.collapsed = true;
53344             if(this.split){
53345                 this.split.el.hide();
53346             }
53347             if(this.config.animate && skipAnim !== true){
53348                 this.fireEvent("invalidated", this);
53349                 this.animateCollapse();
53350             }else{
53351                 this.el.setLocation(-20000,-20000);
53352                 this.el.hide();
53353                 this.collapsedEl.show();
53354                 this.fireEvent("collapsed", this);
53355                 this.fireEvent("invalidated", this);
53356             }
53357         }
53358         
53359     },
53360
53361     animateCollapse : function(){
53362         // overridden
53363     },
53364
53365     /**
53366      * Expands this region if it was previously collapsed.
53367      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53368      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53369      */
53370     expand : function(e, skipAnim){
53371         if(e) {
53372             e.stopPropagation();
53373         }
53374         if(!this.collapsed || this.el.hasActiveFx()) {
53375             return;
53376         }
53377         if(this.isSlid){
53378             this.afterSlideIn();
53379             skipAnim = true;
53380         }
53381         this.collapsed = false;
53382         if(this.config.animate && skipAnim !== true){
53383             this.animateExpand();
53384         }else{
53385             this.el.show();
53386             if(this.split){
53387                 this.split.el.show();
53388             }
53389             this.collapsedEl.setLocation(-2000,-2000);
53390             this.collapsedEl.hide();
53391             this.fireEvent("invalidated", this);
53392             this.fireEvent("expanded", this);
53393         }
53394     },
53395
53396     animateExpand : function(){
53397         // overridden
53398     },
53399
53400     initTabs : function()
53401     {
53402         this.bodyEl.setStyle("overflow", "hidden");
53403         var ts = new Roo.TabPanel(
53404                 this.bodyEl.dom,
53405                 {
53406                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53407                     disableTooltips: this.config.disableTabTips,
53408                     toolbar : this.config.toolbar
53409                 }
53410         );
53411         if(this.config.hideTabs){
53412             ts.stripWrap.setDisplayed(false);
53413         }
53414         this.tabs = ts;
53415         ts.resizeTabs = this.config.resizeTabs === true;
53416         ts.minTabWidth = this.config.minTabWidth || 40;
53417         ts.maxTabWidth = this.config.maxTabWidth || 250;
53418         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53419         ts.monitorResize = false;
53420         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53421         ts.bodyEl.addClass('x-layout-tabs-body');
53422         this.panels.each(this.initPanelAsTab, this);
53423     },
53424
53425     initPanelAsTab : function(panel){
53426         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53427                     this.config.closeOnTab && panel.isClosable());
53428         if(panel.tabTip !== undefined){
53429             ti.setTooltip(panel.tabTip);
53430         }
53431         ti.on("activate", function(){
53432               this.setActivePanel(panel);
53433         }, this);
53434         if(this.config.closeOnTab){
53435             ti.on("beforeclose", function(t, e){
53436                 e.cancel = true;
53437                 this.remove(panel);
53438             }, this);
53439         }
53440         return ti;
53441     },
53442
53443     updatePanelTitle : function(panel, title){
53444         if(this.activePanel == panel){
53445             this.updateTitle(title);
53446         }
53447         if(this.tabs){
53448             var ti = this.tabs.getTab(panel.getEl().id);
53449             ti.setText(title);
53450             if(panel.tabTip !== undefined){
53451                 ti.setTooltip(panel.tabTip);
53452             }
53453         }
53454     },
53455
53456     updateTitle : function(title){
53457         if(this.titleTextEl && !this.config.title){
53458             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53459         }
53460     },
53461
53462     setActivePanel : function(panel){
53463         panel = this.getPanel(panel);
53464         if(this.activePanel && this.activePanel != panel){
53465             this.activePanel.setActiveState(false);
53466         }
53467         this.activePanel = panel;
53468         panel.setActiveState(true);
53469         if(this.panelSize){
53470             panel.setSize(this.panelSize.width, this.panelSize.height);
53471         }
53472         if(this.closeBtn){
53473             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53474         }
53475         this.updateTitle(panel.getTitle());
53476         if(this.tabs){
53477             this.fireEvent("invalidated", this);
53478         }
53479         this.fireEvent("panelactivated", this, panel);
53480     },
53481
53482     /**
53483      * Shows the specified panel.
53484      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53485      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53486      */
53487     showPanel : function(panel)
53488     {
53489         panel = this.getPanel(panel);
53490         if(panel){
53491             if(this.tabs){
53492                 var tab = this.tabs.getTab(panel.getEl().id);
53493                 if(tab.isHidden()){
53494                     this.tabs.unhideTab(tab.id);
53495                 }
53496                 tab.activate();
53497             }else{
53498                 this.setActivePanel(panel);
53499             }
53500         }
53501         return panel;
53502     },
53503
53504     /**
53505      * Get the active panel for this region.
53506      * @return {Roo.ContentPanel} The active panel or null
53507      */
53508     getActivePanel : function(){
53509         return this.activePanel;
53510     },
53511
53512     validateVisibility : function(){
53513         if(this.panels.getCount() < 1){
53514             this.updateTitle("&#160;");
53515             this.closeBtn.hide();
53516             this.hide();
53517         }else{
53518             if(!this.isVisible()){
53519                 this.show();
53520             }
53521         }
53522     },
53523
53524     /**
53525      * Adds the passed ContentPanel(s) to this region.
53526      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53527      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53528      */
53529     add : function(panel){
53530         if(arguments.length > 1){
53531             for(var i = 0, len = arguments.length; i < len; i++) {
53532                 this.add(arguments[i]);
53533             }
53534             return null;
53535         }
53536         if(this.hasPanel(panel)){
53537             this.showPanel(panel);
53538             return panel;
53539         }
53540         panel.setRegion(this);
53541         this.panels.add(panel);
53542         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53543             this.bodyEl.dom.appendChild(panel.getEl().dom);
53544             if(panel.background !== true){
53545                 this.setActivePanel(panel);
53546             }
53547             this.fireEvent("paneladded", this, panel);
53548             return panel;
53549         }
53550         if(!this.tabs){
53551             this.initTabs();
53552         }else{
53553             this.initPanelAsTab(panel);
53554         }
53555         if(panel.background !== true){
53556             this.tabs.activate(panel.getEl().id);
53557         }
53558         this.fireEvent("paneladded", this, panel);
53559         return panel;
53560     },
53561
53562     /**
53563      * Hides the tab for the specified panel.
53564      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53565      */
53566     hidePanel : function(panel){
53567         if(this.tabs && (panel = this.getPanel(panel))){
53568             this.tabs.hideTab(panel.getEl().id);
53569         }
53570     },
53571
53572     /**
53573      * Unhides the tab for a previously hidden panel.
53574      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53575      */
53576     unhidePanel : function(panel){
53577         if(this.tabs && (panel = this.getPanel(panel))){
53578             this.tabs.unhideTab(panel.getEl().id);
53579         }
53580     },
53581
53582     clearPanels : function(){
53583         while(this.panels.getCount() > 0){
53584              this.remove(this.panels.first());
53585         }
53586     },
53587
53588     /**
53589      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53590      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53591      * @param {Boolean} preservePanel Overrides the config preservePanel option
53592      * @return {Roo.ContentPanel} The panel that was removed
53593      */
53594     remove : function(panel, preservePanel){
53595         panel = this.getPanel(panel);
53596         if(!panel){
53597             return null;
53598         }
53599         var e = {};
53600         this.fireEvent("beforeremove", this, panel, e);
53601         if(e.cancel === true){
53602             return null;
53603         }
53604         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53605         var panelId = panel.getId();
53606         this.panels.removeKey(panelId);
53607         if(preservePanel){
53608             document.body.appendChild(panel.getEl().dom);
53609         }
53610         if(this.tabs){
53611             this.tabs.removeTab(panel.getEl().id);
53612         }else if (!preservePanel){
53613             this.bodyEl.dom.removeChild(panel.getEl().dom);
53614         }
53615         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53616             var p = this.panels.first();
53617             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53618             tempEl.appendChild(p.getEl().dom);
53619             this.bodyEl.update("");
53620             this.bodyEl.dom.appendChild(p.getEl().dom);
53621             tempEl = null;
53622             this.updateTitle(p.getTitle());
53623             this.tabs = null;
53624             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53625             this.setActivePanel(p);
53626         }
53627         panel.setRegion(null);
53628         if(this.activePanel == panel){
53629             this.activePanel = null;
53630         }
53631         if(this.config.autoDestroy !== false && preservePanel !== true){
53632             try{panel.destroy();}catch(e){}
53633         }
53634         this.fireEvent("panelremoved", this, panel);
53635         return panel;
53636     },
53637
53638     /**
53639      * Returns the TabPanel component used by this region
53640      * @return {Roo.TabPanel}
53641      */
53642     getTabs : function(){
53643         return this.tabs;
53644     },
53645
53646     createTool : function(parentEl, className){
53647         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53648             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53649         btn.addClassOnOver("x-layout-tools-button-over");
53650         return btn;
53651     }
53652 });/*
53653  * Based on:
53654  * Ext JS Library 1.1.1
53655  * Copyright(c) 2006-2007, Ext JS, LLC.
53656  *
53657  * Originally Released Under LGPL - original licence link has changed is not relivant.
53658  *
53659  * Fork - LGPL
53660  * <script type="text/javascript">
53661  */
53662  
53663
53664
53665 /**
53666  * @class Roo.SplitLayoutRegion
53667  * @extends Roo.LayoutRegion
53668  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53669  */
53670 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53671     this.cursor = cursor;
53672     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53673 };
53674
53675 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53676     splitTip : "Drag to resize.",
53677     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53678     useSplitTips : false,
53679
53680     applyConfig : function(config){
53681         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53682         if(config.split){
53683             if(!this.split){
53684                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53685                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53686                 /** The SplitBar for this region 
53687                 * @type Roo.SplitBar */
53688                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53689                 this.split.on("moved", this.onSplitMove, this);
53690                 this.split.useShim = config.useShim === true;
53691                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53692                 if(this.useSplitTips){
53693                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53694                 }
53695                 if(config.collapsible){
53696                     this.split.el.on("dblclick", this.collapse,  this);
53697                 }
53698             }
53699             if(typeof config.minSize != "undefined"){
53700                 this.split.minSize = config.minSize;
53701             }
53702             if(typeof config.maxSize != "undefined"){
53703                 this.split.maxSize = config.maxSize;
53704             }
53705             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53706                 this.hideSplitter();
53707             }
53708         }
53709     },
53710
53711     getHMaxSize : function(){
53712          var cmax = this.config.maxSize || 10000;
53713          var center = this.mgr.getRegion("center");
53714          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53715     },
53716
53717     getVMaxSize : function(){
53718          var cmax = this.config.maxSize || 10000;
53719          var center = this.mgr.getRegion("center");
53720          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53721     },
53722
53723     onSplitMove : function(split, newSize){
53724         this.fireEvent("resized", this, newSize);
53725     },
53726     
53727     /** 
53728      * Returns the {@link Roo.SplitBar} for this region.
53729      * @return {Roo.SplitBar}
53730      */
53731     getSplitBar : function(){
53732         return this.split;
53733     },
53734     
53735     hide : function(){
53736         this.hideSplitter();
53737         Roo.SplitLayoutRegion.superclass.hide.call(this);
53738     },
53739
53740     hideSplitter : function(){
53741         if(this.split){
53742             this.split.el.setLocation(-2000,-2000);
53743             this.split.el.hide();
53744         }
53745     },
53746
53747     show : function(){
53748         if(this.split){
53749             this.split.el.show();
53750         }
53751         Roo.SplitLayoutRegion.superclass.show.call(this);
53752     },
53753     
53754     beforeSlide: function(){
53755         if(Roo.isGecko){// firefox overflow auto bug workaround
53756             this.bodyEl.clip();
53757             if(this.tabs) {
53758                 this.tabs.bodyEl.clip();
53759             }
53760             if(this.activePanel){
53761                 this.activePanel.getEl().clip();
53762                 
53763                 if(this.activePanel.beforeSlide){
53764                     this.activePanel.beforeSlide();
53765                 }
53766             }
53767         }
53768     },
53769     
53770     afterSlide : function(){
53771         if(Roo.isGecko){// firefox overflow auto bug workaround
53772             this.bodyEl.unclip();
53773             if(this.tabs) {
53774                 this.tabs.bodyEl.unclip();
53775             }
53776             if(this.activePanel){
53777                 this.activePanel.getEl().unclip();
53778                 if(this.activePanel.afterSlide){
53779                     this.activePanel.afterSlide();
53780                 }
53781             }
53782         }
53783     },
53784
53785     initAutoHide : function(){
53786         if(this.autoHide !== false){
53787             if(!this.autoHideHd){
53788                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53789                 this.autoHideHd = {
53790                     "mouseout": function(e){
53791                         if(!e.within(this.el, true)){
53792                             st.delay(500);
53793                         }
53794                     },
53795                     "mouseover" : function(e){
53796                         st.cancel();
53797                     },
53798                     scope : this
53799                 };
53800             }
53801             this.el.on(this.autoHideHd);
53802         }
53803     },
53804
53805     clearAutoHide : function(){
53806         if(this.autoHide !== false){
53807             this.el.un("mouseout", this.autoHideHd.mouseout);
53808             this.el.un("mouseover", this.autoHideHd.mouseover);
53809         }
53810     },
53811
53812     clearMonitor : function(){
53813         Roo.get(document).un("click", this.slideInIf, this);
53814     },
53815
53816     // these names are backwards but not changed for compat
53817     slideOut : function(){
53818         if(this.isSlid || this.el.hasActiveFx()){
53819             return;
53820         }
53821         this.isSlid = true;
53822         if(this.collapseBtn){
53823             this.collapseBtn.hide();
53824         }
53825         this.closeBtnState = this.closeBtn.getStyle('display');
53826         this.closeBtn.hide();
53827         if(this.stickBtn){
53828             this.stickBtn.show();
53829         }
53830         this.el.show();
53831         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53832         this.beforeSlide();
53833         this.el.setStyle("z-index", 10001);
53834         this.el.slideIn(this.getSlideAnchor(), {
53835             callback: function(){
53836                 this.afterSlide();
53837                 this.initAutoHide();
53838                 Roo.get(document).on("click", this.slideInIf, this);
53839                 this.fireEvent("slideshow", this);
53840             },
53841             scope: this,
53842             block: true
53843         });
53844     },
53845
53846     afterSlideIn : function(){
53847         this.clearAutoHide();
53848         this.isSlid = false;
53849         this.clearMonitor();
53850         this.el.setStyle("z-index", "");
53851         if(this.collapseBtn){
53852             this.collapseBtn.show();
53853         }
53854         this.closeBtn.setStyle('display', this.closeBtnState);
53855         if(this.stickBtn){
53856             this.stickBtn.hide();
53857         }
53858         this.fireEvent("slidehide", this);
53859     },
53860
53861     slideIn : function(cb){
53862         if(!this.isSlid || this.el.hasActiveFx()){
53863             Roo.callback(cb);
53864             return;
53865         }
53866         this.isSlid = false;
53867         this.beforeSlide();
53868         this.el.slideOut(this.getSlideAnchor(), {
53869             callback: function(){
53870                 this.el.setLeftTop(-10000, -10000);
53871                 this.afterSlide();
53872                 this.afterSlideIn();
53873                 Roo.callback(cb);
53874             },
53875             scope: this,
53876             block: true
53877         });
53878     },
53879     
53880     slideInIf : function(e){
53881         if(!e.within(this.el)){
53882             this.slideIn();
53883         }
53884     },
53885
53886     animateCollapse : function(){
53887         this.beforeSlide();
53888         this.el.setStyle("z-index", 20000);
53889         var anchor = this.getSlideAnchor();
53890         this.el.slideOut(anchor, {
53891             callback : function(){
53892                 this.el.setStyle("z-index", "");
53893                 this.collapsedEl.slideIn(anchor, {duration:.3});
53894                 this.afterSlide();
53895                 this.el.setLocation(-10000,-10000);
53896                 this.el.hide();
53897                 this.fireEvent("collapsed", this);
53898             },
53899             scope: this,
53900             block: true
53901         });
53902     },
53903
53904     animateExpand : function(){
53905         this.beforeSlide();
53906         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53907         this.el.setStyle("z-index", 20000);
53908         this.collapsedEl.hide({
53909             duration:.1
53910         });
53911         this.el.slideIn(this.getSlideAnchor(), {
53912             callback : function(){
53913                 this.el.setStyle("z-index", "");
53914                 this.afterSlide();
53915                 if(this.split){
53916                     this.split.el.show();
53917                 }
53918                 this.fireEvent("invalidated", this);
53919                 this.fireEvent("expanded", this);
53920             },
53921             scope: this,
53922             block: true
53923         });
53924     },
53925
53926     anchors : {
53927         "west" : "left",
53928         "east" : "right",
53929         "north" : "top",
53930         "south" : "bottom"
53931     },
53932
53933     sanchors : {
53934         "west" : "l",
53935         "east" : "r",
53936         "north" : "t",
53937         "south" : "b"
53938     },
53939
53940     canchors : {
53941         "west" : "tl-tr",
53942         "east" : "tr-tl",
53943         "north" : "tl-bl",
53944         "south" : "bl-tl"
53945     },
53946
53947     getAnchor : function(){
53948         return this.anchors[this.position];
53949     },
53950
53951     getCollapseAnchor : function(){
53952         return this.canchors[this.position];
53953     },
53954
53955     getSlideAnchor : function(){
53956         return this.sanchors[this.position];
53957     },
53958
53959     getAlignAdj : function(){
53960         var cm = this.cmargins;
53961         switch(this.position){
53962             case "west":
53963                 return [0, 0];
53964             break;
53965             case "east":
53966                 return [0, 0];
53967             break;
53968             case "north":
53969                 return [0, 0];
53970             break;
53971             case "south":
53972                 return [0, 0];
53973             break;
53974         }
53975     },
53976
53977     getExpandAdj : function(){
53978         var c = this.collapsedEl, cm = this.cmargins;
53979         switch(this.position){
53980             case "west":
53981                 return [-(cm.right+c.getWidth()+cm.left), 0];
53982             break;
53983             case "east":
53984                 return [cm.right+c.getWidth()+cm.left, 0];
53985             break;
53986             case "north":
53987                 return [0, -(cm.top+cm.bottom+c.getHeight())];
53988             break;
53989             case "south":
53990                 return [0, cm.top+cm.bottom+c.getHeight()];
53991             break;
53992         }
53993     }
53994 });/*
53995  * Based on:
53996  * Ext JS Library 1.1.1
53997  * Copyright(c) 2006-2007, Ext JS, LLC.
53998  *
53999  * Originally Released Under LGPL - original licence link has changed is not relivant.
54000  *
54001  * Fork - LGPL
54002  * <script type="text/javascript">
54003  */
54004 /*
54005  * These classes are private internal classes
54006  */
54007 Roo.CenterLayoutRegion = function(mgr, config){
54008     Roo.LayoutRegion.call(this, mgr, config, "center");
54009     this.visible = true;
54010     this.minWidth = config.minWidth || 20;
54011     this.minHeight = config.minHeight || 20;
54012 };
54013
54014 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
54015     hide : function(){
54016         // center panel can't be hidden
54017     },
54018     
54019     show : function(){
54020         // center panel can't be hidden
54021     },
54022     
54023     getMinWidth: function(){
54024         return this.minWidth;
54025     },
54026     
54027     getMinHeight: function(){
54028         return this.minHeight;
54029     }
54030 });
54031
54032
54033 Roo.NorthLayoutRegion = function(mgr, config){
54034     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
54035     if(this.split){
54036         this.split.placement = Roo.SplitBar.TOP;
54037         this.split.orientation = Roo.SplitBar.VERTICAL;
54038         this.split.el.addClass("x-layout-split-v");
54039     }
54040     var size = config.initialSize || config.height;
54041     if(typeof size != "undefined"){
54042         this.el.setHeight(size);
54043     }
54044 };
54045 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
54046     orientation: Roo.SplitBar.VERTICAL,
54047     getBox : function(){
54048         if(this.collapsed){
54049             return this.collapsedEl.getBox();
54050         }
54051         var box = this.el.getBox();
54052         if(this.split){
54053             box.height += this.split.el.getHeight();
54054         }
54055         return box;
54056     },
54057     
54058     updateBox : function(box){
54059         if(this.split && !this.collapsed){
54060             box.height -= this.split.el.getHeight();
54061             this.split.el.setLeft(box.x);
54062             this.split.el.setTop(box.y+box.height);
54063             this.split.el.setWidth(box.width);
54064         }
54065         if(this.collapsed){
54066             this.updateBody(box.width, null);
54067         }
54068         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54069     }
54070 });
54071
54072 Roo.SouthLayoutRegion = function(mgr, config){
54073     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
54074     if(this.split){
54075         this.split.placement = Roo.SplitBar.BOTTOM;
54076         this.split.orientation = Roo.SplitBar.VERTICAL;
54077         this.split.el.addClass("x-layout-split-v");
54078     }
54079     var size = config.initialSize || config.height;
54080     if(typeof size != "undefined"){
54081         this.el.setHeight(size);
54082     }
54083 };
54084 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54085     orientation: Roo.SplitBar.VERTICAL,
54086     getBox : function(){
54087         if(this.collapsed){
54088             return this.collapsedEl.getBox();
54089         }
54090         var box = this.el.getBox();
54091         if(this.split){
54092             var sh = this.split.el.getHeight();
54093             box.height += sh;
54094             box.y -= sh;
54095         }
54096         return box;
54097     },
54098     
54099     updateBox : function(box){
54100         if(this.split && !this.collapsed){
54101             var sh = this.split.el.getHeight();
54102             box.height -= sh;
54103             box.y += sh;
54104             this.split.el.setLeft(box.x);
54105             this.split.el.setTop(box.y-sh);
54106             this.split.el.setWidth(box.width);
54107         }
54108         if(this.collapsed){
54109             this.updateBody(box.width, null);
54110         }
54111         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54112     }
54113 });
54114
54115 Roo.EastLayoutRegion = function(mgr, config){
54116     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54117     if(this.split){
54118         this.split.placement = Roo.SplitBar.RIGHT;
54119         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54120         this.split.el.addClass("x-layout-split-h");
54121     }
54122     var size = config.initialSize || config.width;
54123     if(typeof size != "undefined"){
54124         this.el.setWidth(size);
54125     }
54126 };
54127 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54128     orientation: Roo.SplitBar.HORIZONTAL,
54129     getBox : function(){
54130         if(this.collapsed){
54131             return this.collapsedEl.getBox();
54132         }
54133         var box = this.el.getBox();
54134         if(this.split){
54135             var sw = this.split.el.getWidth();
54136             box.width += sw;
54137             box.x -= sw;
54138         }
54139         return box;
54140     },
54141
54142     updateBox : function(box){
54143         if(this.split && !this.collapsed){
54144             var sw = this.split.el.getWidth();
54145             box.width -= sw;
54146             this.split.el.setLeft(box.x);
54147             this.split.el.setTop(box.y);
54148             this.split.el.setHeight(box.height);
54149             box.x += sw;
54150         }
54151         if(this.collapsed){
54152             this.updateBody(null, box.height);
54153         }
54154         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54155     }
54156 });
54157
54158 Roo.WestLayoutRegion = function(mgr, config){
54159     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54160     if(this.split){
54161         this.split.placement = Roo.SplitBar.LEFT;
54162         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54163         this.split.el.addClass("x-layout-split-h");
54164     }
54165     var size = config.initialSize || config.width;
54166     if(typeof size != "undefined"){
54167         this.el.setWidth(size);
54168     }
54169 };
54170 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54171     orientation: Roo.SplitBar.HORIZONTAL,
54172     getBox : function(){
54173         if(this.collapsed){
54174             return this.collapsedEl.getBox();
54175         }
54176         var box = this.el.getBox();
54177         if(this.split){
54178             box.width += this.split.el.getWidth();
54179         }
54180         return box;
54181     },
54182     
54183     updateBox : function(box){
54184         if(this.split && !this.collapsed){
54185             var sw = this.split.el.getWidth();
54186             box.width -= sw;
54187             this.split.el.setLeft(box.x+box.width);
54188             this.split.el.setTop(box.y);
54189             this.split.el.setHeight(box.height);
54190         }
54191         if(this.collapsed){
54192             this.updateBody(null, box.height);
54193         }
54194         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54195     }
54196 });
54197 /*
54198  * Based on:
54199  * Ext JS Library 1.1.1
54200  * Copyright(c) 2006-2007, Ext JS, LLC.
54201  *
54202  * Originally Released Under LGPL - original licence link has changed is not relivant.
54203  *
54204  * Fork - LGPL
54205  * <script type="text/javascript">
54206  */
54207  
54208  
54209 /*
54210  * Private internal class for reading and applying state
54211  */
54212 Roo.LayoutStateManager = function(layout){
54213      // default empty state
54214      this.state = {
54215         north: {},
54216         south: {},
54217         east: {},
54218         west: {}       
54219     };
54220 };
54221
54222 Roo.LayoutStateManager.prototype = {
54223     init : function(layout, provider){
54224         this.provider = provider;
54225         var state = provider.get(layout.id+"-layout-state");
54226         if(state){
54227             var wasUpdating = layout.isUpdating();
54228             if(!wasUpdating){
54229                 layout.beginUpdate();
54230             }
54231             for(var key in state){
54232                 if(typeof state[key] != "function"){
54233                     var rstate = state[key];
54234                     var r = layout.getRegion(key);
54235                     if(r && rstate){
54236                         if(rstate.size){
54237                             r.resizeTo(rstate.size);
54238                         }
54239                         if(rstate.collapsed == true){
54240                             r.collapse(true);
54241                         }else{
54242                             r.expand(null, true);
54243                         }
54244                     }
54245                 }
54246             }
54247             if(!wasUpdating){
54248                 layout.endUpdate();
54249             }
54250             this.state = state; 
54251         }
54252         this.layout = layout;
54253         layout.on("regionresized", this.onRegionResized, this);
54254         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54255         layout.on("regionexpanded", this.onRegionExpanded, this);
54256     },
54257     
54258     storeState : function(){
54259         this.provider.set(this.layout.id+"-layout-state", this.state);
54260     },
54261     
54262     onRegionResized : function(region, newSize){
54263         this.state[region.getPosition()].size = newSize;
54264         this.storeState();
54265     },
54266     
54267     onRegionCollapsed : function(region){
54268         this.state[region.getPosition()].collapsed = true;
54269         this.storeState();
54270     },
54271     
54272     onRegionExpanded : function(region){
54273         this.state[region.getPosition()].collapsed = false;
54274         this.storeState();
54275     }
54276 };/*
54277  * Based on:
54278  * Ext JS Library 1.1.1
54279  * Copyright(c) 2006-2007, Ext JS, LLC.
54280  *
54281  * Originally Released Under LGPL - original licence link has changed is not relivant.
54282  *
54283  * Fork - LGPL
54284  * <script type="text/javascript">
54285  */
54286 /**
54287  * @class Roo.ContentPanel
54288  * @extends Roo.util.Observable
54289  * A basic ContentPanel element.
54290  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54291  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54292  * @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
54293  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54294  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54295  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54296  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54297  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54298  * @cfg {String} title          The title for this panel
54299  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54300  * @cfg {String} url            Calls {@link #setUrl} with this value
54301  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54302  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54303  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54304  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54305  * @cfg {String}    style  Extra style to add to the content panel 
54306
54307  * @constructor
54308  * Create a new ContentPanel.
54309  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54310  * @param {String/Object} config A string to set only the title or a config object
54311  * @param {String} content (optional) Set the HTML content for this panel
54312  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54313  */
54314 Roo.ContentPanel = function(el, config, content){
54315     
54316      
54317     /*
54318     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54319         config = el;
54320         el = Roo.id();
54321     }
54322     if (config && config.parentLayout) { 
54323         el = config.parentLayout.el.createChild(); 
54324     }
54325     */
54326     if(el.autoCreate){ // xtype is available if this is called from factory
54327         config = el;
54328         el = Roo.id();
54329     }
54330     this.el = Roo.get(el);
54331     if(!this.el && config && config.autoCreate){
54332         if(typeof config.autoCreate == "object"){
54333             if(!config.autoCreate.id){
54334                 config.autoCreate.id = config.id||el;
54335             }
54336             this.el = Roo.DomHelper.append(document.body,
54337                         config.autoCreate, true);
54338         }else{
54339             this.el = Roo.DomHelper.append(document.body,
54340                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54341         }
54342     }
54343     
54344     
54345     this.closable = false;
54346     this.loaded = false;
54347     this.active = false;
54348     if(typeof config == "string"){
54349         this.title = config;
54350     }else{
54351         Roo.apply(this, config);
54352     }
54353     
54354     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54355         this.wrapEl = this.el.wrap();
54356         this.toolbar.container = this.el.insertSibling(false, 'before');
54357         this.toolbar = new Roo.Toolbar(this.toolbar);
54358     }
54359     
54360     // xtype created footer. - not sure if will work as we normally have to render first..
54361     if (this.footer && !this.footer.el && this.footer.xtype) {
54362         if (!this.wrapEl) {
54363             this.wrapEl = this.el.wrap();
54364         }
54365     
54366         this.footer.container = this.wrapEl.createChild();
54367          
54368         this.footer = Roo.factory(this.footer, Roo);
54369         
54370     }
54371     
54372     if(this.resizeEl){
54373         this.resizeEl = Roo.get(this.resizeEl, true);
54374     }else{
54375         this.resizeEl = this.el;
54376     }
54377     // handle view.xtype
54378     
54379  
54380     
54381     
54382     this.addEvents({
54383         /**
54384          * @event activate
54385          * Fires when this panel is activated. 
54386          * @param {Roo.ContentPanel} this
54387          */
54388         "activate" : true,
54389         /**
54390          * @event deactivate
54391          * Fires when this panel is activated. 
54392          * @param {Roo.ContentPanel} this
54393          */
54394         "deactivate" : true,
54395
54396         /**
54397          * @event resize
54398          * Fires when this panel is resized if fitToFrame is true.
54399          * @param {Roo.ContentPanel} this
54400          * @param {Number} width The width after any component adjustments
54401          * @param {Number} height The height after any component adjustments
54402          */
54403         "resize" : true,
54404         
54405          /**
54406          * @event render
54407          * Fires when this tab is created
54408          * @param {Roo.ContentPanel} this
54409          */
54410         "render" : true
54411          
54412         
54413     });
54414     
54415
54416     
54417     
54418     if(this.autoScroll){
54419         this.resizeEl.setStyle("overflow", "auto");
54420     } else {
54421         // fix randome scrolling
54422         this.el.on('scroll', function() {
54423             Roo.log('fix random scolling');
54424             this.scrollTo('top',0); 
54425         });
54426     }
54427     content = content || this.content;
54428     if(content){
54429         this.setContent(content);
54430     }
54431     if(config && config.url){
54432         this.setUrl(this.url, this.params, this.loadOnce);
54433     }
54434     
54435     
54436     
54437     Roo.ContentPanel.superclass.constructor.call(this);
54438     
54439     if (this.view && typeof(this.view.xtype) != 'undefined') {
54440         this.view.el = this.el.appendChild(document.createElement("div"));
54441         this.view = Roo.factory(this.view); 
54442         this.view.render  &&  this.view.render(false, '');  
54443     }
54444     
54445     
54446     this.fireEvent('render', this);
54447 };
54448
54449 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54450     tabTip:'',
54451     setRegion : function(region){
54452         this.region = region;
54453         if(region){
54454            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54455         }else{
54456            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54457         } 
54458     },
54459     
54460     /**
54461      * Returns the toolbar for this Panel if one was configured. 
54462      * @return {Roo.Toolbar} 
54463      */
54464     getToolbar : function(){
54465         return this.toolbar;
54466     },
54467     
54468     setActiveState : function(active){
54469         this.active = active;
54470         if(!active){
54471             this.fireEvent("deactivate", this);
54472         }else{
54473             this.fireEvent("activate", this);
54474         }
54475     },
54476     /**
54477      * Updates this panel's element
54478      * @param {String} content The new content
54479      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54480     */
54481     setContent : function(content, loadScripts){
54482         this.el.update(content, loadScripts);
54483     },
54484
54485     ignoreResize : function(w, h){
54486         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54487             return true;
54488         }else{
54489             this.lastSize = {width: w, height: h};
54490             return false;
54491         }
54492     },
54493     /**
54494      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54495      * @return {Roo.UpdateManager} The UpdateManager
54496      */
54497     getUpdateManager : function(){
54498         return this.el.getUpdateManager();
54499     },
54500      /**
54501      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54502      * @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:
54503 <pre><code>
54504 panel.load({
54505     url: "your-url.php",
54506     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54507     callback: yourFunction,
54508     scope: yourObject, //(optional scope)
54509     discardUrl: false,
54510     nocache: false,
54511     text: "Loading...",
54512     timeout: 30,
54513     scripts: false
54514 });
54515 </code></pre>
54516      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54517      * 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.
54518      * @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}
54519      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54520      * @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.
54521      * @return {Roo.ContentPanel} this
54522      */
54523     load : function(){
54524         var um = this.el.getUpdateManager();
54525         um.update.apply(um, arguments);
54526         return this;
54527     },
54528
54529
54530     /**
54531      * 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.
54532      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54533      * @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)
54534      * @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)
54535      * @return {Roo.UpdateManager} The UpdateManager
54536      */
54537     setUrl : function(url, params, loadOnce){
54538         if(this.refreshDelegate){
54539             this.removeListener("activate", this.refreshDelegate);
54540         }
54541         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54542         this.on("activate", this.refreshDelegate);
54543         return this.el.getUpdateManager();
54544     },
54545     
54546     _handleRefresh : function(url, params, loadOnce){
54547         if(!loadOnce || !this.loaded){
54548             var updater = this.el.getUpdateManager();
54549             updater.update(url, params, this._setLoaded.createDelegate(this));
54550         }
54551     },
54552     
54553     _setLoaded : function(){
54554         this.loaded = true;
54555     }, 
54556     
54557     /**
54558      * Returns this panel's id
54559      * @return {String} 
54560      */
54561     getId : function(){
54562         return this.el.id;
54563     },
54564     
54565     /** 
54566      * Returns this panel's element - used by regiosn to add.
54567      * @return {Roo.Element} 
54568      */
54569     getEl : function(){
54570         return this.wrapEl || this.el;
54571     },
54572     
54573     adjustForComponents : function(width, height)
54574     {
54575         //Roo.log('adjustForComponents ');
54576         if(this.resizeEl != this.el){
54577             width -= this.el.getFrameWidth('lr');
54578             height -= this.el.getFrameWidth('tb');
54579         }
54580         if(this.toolbar){
54581             var te = this.toolbar.getEl();
54582             height -= te.getHeight();
54583             te.setWidth(width);
54584         }
54585         if(this.footer){
54586             var te = this.footer.getEl();
54587             //Roo.log("footer:" + te.getHeight());
54588             
54589             height -= te.getHeight();
54590             te.setWidth(width);
54591         }
54592         
54593         
54594         if(this.adjustments){
54595             width += this.adjustments[0];
54596             height += this.adjustments[1];
54597         }
54598         return {"width": width, "height": height};
54599     },
54600     
54601     setSize : function(width, height){
54602         if(this.fitToFrame && !this.ignoreResize(width, height)){
54603             if(this.fitContainer && this.resizeEl != this.el){
54604                 this.el.setSize(width, height);
54605             }
54606             var size = this.adjustForComponents(width, height);
54607             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54608             this.fireEvent('resize', this, size.width, size.height);
54609         }
54610     },
54611     
54612     /**
54613      * Returns this panel's title
54614      * @return {String} 
54615      */
54616     getTitle : function(){
54617         return this.title;
54618     },
54619     
54620     /**
54621      * Set this panel's title
54622      * @param {String} title
54623      */
54624     setTitle : function(title){
54625         this.title = title;
54626         if(this.region){
54627             this.region.updatePanelTitle(this, title);
54628         }
54629     },
54630     
54631     /**
54632      * Returns true is this panel was configured to be closable
54633      * @return {Boolean} 
54634      */
54635     isClosable : function(){
54636         return this.closable;
54637     },
54638     
54639     beforeSlide : function(){
54640         this.el.clip();
54641         this.resizeEl.clip();
54642     },
54643     
54644     afterSlide : function(){
54645         this.el.unclip();
54646         this.resizeEl.unclip();
54647     },
54648     
54649     /**
54650      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54651      *   Will fail silently if the {@link #setUrl} method has not been called.
54652      *   This does not activate the panel, just updates its content.
54653      */
54654     refresh : function(){
54655         if(this.refreshDelegate){
54656            this.loaded = false;
54657            this.refreshDelegate();
54658         }
54659     },
54660     
54661     /**
54662      * Destroys this panel
54663      */
54664     destroy : function(){
54665         this.el.removeAllListeners();
54666         var tempEl = document.createElement("span");
54667         tempEl.appendChild(this.el.dom);
54668         tempEl.innerHTML = "";
54669         this.el.remove();
54670         this.el = null;
54671     },
54672     
54673     /**
54674      * form - if the content panel contains a form - this is a reference to it.
54675      * @type {Roo.form.Form}
54676      */
54677     form : false,
54678     /**
54679      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54680      *    This contains a reference to it.
54681      * @type {Roo.View}
54682      */
54683     view : false,
54684     
54685       /**
54686      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54687      * <pre><code>
54688
54689 layout.addxtype({
54690        xtype : 'Form',
54691        items: [ .... ]
54692    }
54693 );
54694
54695 </code></pre>
54696      * @param {Object} cfg Xtype definition of item to add.
54697      */
54698     
54699     addxtype : function(cfg) {
54700         // add form..
54701         if (cfg.xtype.match(/^Form$/)) {
54702             
54703             var el;
54704             //if (this.footer) {
54705             //    el = this.footer.container.insertSibling(false, 'before');
54706             //} else {
54707                 el = this.el.createChild();
54708             //}
54709
54710             this.form = new  Roo.form.Form(cfg);
54711             
54712             
54713             if ( this.form.allItems.length) {
54714                 this.form.render(el.dom);
54715             }
54716             return this.form;
54717         }
54718         // should only have one of theses..
54719         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54720             // views.. should not be just added - used named prop 'view''
54721             
54722             cfg.el = this.el.appendChild(document.createElement("div"));
54723             // factory?
54724             
54725             var ret = new Roo.factory(cfg);
54726              
54727              ret.render && ret.render(false, ''); // render blank..
54728             this.view = ret;
54729             return ret;
54730         }
54731         return false;
54732     }
54733 });
54734
54735 /**
54736  * @class Roo.GridPanel
54737  * @extends Roo.ContentPanel
54738  * @constructor
54739  * Create a new GridPanel.
54740  * @param {Roo.grid.Grid} grid The grid for this panel
54741  * @param {String/Object} config A string to set only the panel's title, or a config object
54742  */
54743 Roo.GridPanel = function(grid, config){
54744     
54745   
54746     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54747         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54748         
54749     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54750     
54751     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54752     
54753     if(this.toolbar){
54754         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54755     }
54756     // xtype created footer. - not sure if will work as we normally have to render first..
54757     if (this.footer && !this.footer.el && this.footer.xtype) {
54758         
54759         this.footer.container = this.grid.getView().getFooterPanel(true);
54760         this.footer.dataSource = this.grid.dataSource;
54761         this.footer = Roo.factory(this.footer, Roo);
54762         
54763     }
54764     
54765     grid.monitorWindowResize = false; // turn off autosizing
54766     grid.autoHeight = false;
54767     grid.autoWidth = false;
54768     this.grid = grid;
54769     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54770 };
54771
54772 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54773     getId : function(){
54774         return this.grid.id;
54775     },
54776     
54777     /**
54778      * Returns the grid for this panel
54779      * @return {Roo.grid.Grid} 
54780      */
54781     getGrid : function(){
54782         return this.grid;    
54783     },
54784     
54785     setSize : function(width, height){
54786         if(!this.ignoreResize(width, height)){
54787             var grid = this.grid;
54788             var size = this.adjustForComponents(width, height);
54789             grid.getGridEl().setSize(size.width, size.height);
54790             grid.autoSize();
54791         }
54792     },
54793     
54794     beforeSlide : function(){
54795         this.grid.getView().scroller.clip();
54796     },
54797     
54798     afterSlide : function(){
54799         this.grid.getView().scroller.unclip();
54800     },
54801     
54802     destroy : function(){
54803         this.grid.destroy();
54804         delete this.grid;
54805         Roo.GridPanel.superclass.destroy.call(this); 
54806     }
54807 });
54808
54809
54810 /**
54811  * @class Roo.NestedLayoutPanel
54812  * @extends Roo.ContentPanel
54813  * @constructor
54814  * Create a new NestedLayoutPanel.
54815  * 
54816  * 
54817  * @param {Roo.BorderLayout} layout The layout for this panel
54818  * @param {String/Object} config A string to set only the title or a config object
54819  */
54820 Roo.NestedLayoutPanel = function(layout, config)
54821 {
54822     // construct with only one argument..
54823     /* FIXME - implement nicer consturctors
54824     if (layout.layout) {
54825         config = layout;
54826         layout = config.layout;
54827         delete config.layout;
54828     }
54829     if (layout.xtype && !layout.getEl) {
54830         // then layout needs constructing..
54831         layout = Roo.factory(layout, Roo);
54832     }
54833     */
54834     
54835     
54836     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54837     
54838     layout.monitorWindowResize = false; // turn off autosizing
54839     this.layout = layout;
54840     this.layout.getEl().addClass("x-layout-nested-layout");
54841     
54842     
54843     
54844     
54845 };
54846
54847 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54848
54849     setSize : function(width, height){
54850         if(!this.ignoreResize(width, height)){
54851             var size = this.adjustForComponents(width, height);
54852             var el = this.layout.getEl();
54853             el.setSize(size.width, size.height);
54854             var touch = el.dom.offsetWidth;
54855             this.layout.layout();
54856             // ie requires a double layout on the first pass
54857             if(Roo.isIE && !this.initialized){
54858                 this.initialized = true;
54859                 this.layout.layout();
54860             }
54861         }
54862     },
54863     
54864     // activate all subpanels if not currently active..
54865     
54866     setActiveState : function(active){
54867         this.active = active;
54868         if(!active){
54869             this.fireEvent("deactivate", this);
54870             return;
54871         }
54872         
54873         this.fireEvent("activate", this);
54874         // not sure if this should happen before or after..
54875         if (!this.layout) {
54876             return; // should not happen..
54877         }
54878         var reg = false;
54879         for (var r in this.layout.regions) {
54880             reg = this.layout.getRegion(r);
54881             if (reg.getActivePanel()) {
54882                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54883                 reg.setActivePanel(reg.getActivePanel());
54884                 continue;
54885             }
54886             if (!reg.panels.length) {
54887                 continue;
54888             }
54889             reg.showPanel(reg.getPanel(0));
54890         }
54891         
54892         
54893         
54894         
54895     },
54896     
54897     /**
54898      * Returns the nested BorderLayout for this panel
54899      * @return {Roo.BorderLayout} 
54900      */
54901     getLayout : function(){
54902         return this.layout;
54903     },
54904     
54905      /**
54906      * Adds a xtype elements to the layout of the nested panel
54907      * <pre><code>
54908
54909 panel.addxtype({
54910        xtype : 'ContentPanel',
54911        region: 'west',
54912        items: [ .... ]
54913    }
54914 );
54915
54916 panel.addxtype({
54917         xtype : 'NestedLayoutPanel',
54918         region: 'west',
54919         layout: {
54920            center: { },
54921            west: { }   
54922         },
54923         items : [ ... list of content panels or nested layout panels.. ]
54924    }
54925 );
54926 </code></pre>
54927      * @param {Object} cfg Xtype definition of item to add.
54928      */
54929     addxtype : function(cfg) {
54930         return this.layout.addxtype(cfg);
54931     
54932     }
54933 });
54934
54935 Roo.ScrollPanel = function(el, config, content){
54936     config = config || {};
54937     config.fitToFrame = true;
54938     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54939     
54940     this.el.dom.style.overflow = "hidden";
54941     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54942     this.el.removeClass("x-layout-inactive-content");
54943     this.el.on("mousewheel", this.onWheel, this);
54944
54945     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54946     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54947     up.unselectable(); down.unselectable();
54948     up.on("click", this.scrollUp, this);
54949     down.on("click", this.scrollDown, this);
54950     up.addClassOnOver("x-scroller-btn-over");
54951     down.addClassOnOver("x-scroller-btn-over");
54952     up.addClassOnClick("x-scroller-btn-click");
54953     down.addClassOnClick("x-scroller-btn-click");
54954     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54955
54956     this.resizeEl = this.el;
54957     this.el = wrap; this.up = up; this.down = down;
54958 };
54959
54960 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54961     increment : 100,
54962     wheelIncrement : 5,
54963     scrollUp : function(){
54964         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54965     },
54966
54967     scrollDown : function(){
54968         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54969     },
54970
54971     afterScroll : function(){
54972         var el = this.resizeEl;
54973         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54974         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54975         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54976     },
54977
54978     setSize : function(){
54979         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54980         this.afterScroll();
54981     },
54982
54983     onWheel : function(e){
54984         var d = e.getWheelDelta();
54985         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
54986         this.afterScroll();
54987         e.stopEvent();
54988     },
54989
54990     setContent : function(content, loadScripts){
54991         this.resizeEl.update(content, loadScripts);
54992     }
54993
54994 });
54995
54996
54997
54998
54999
55000
55001
55002
55003
55004 /**
55005  * @class Roo.TreePanel
55006  * @extends Roo.ContentPanel
55007  * @constructor
55008  * Create a new TreePanel. - defaults to fit/scoll contents.
55009  * @param {String/Object} config A string to set only the panel's title, or a config object
55010  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
55011  */
55012 Roo.TreePanel = function(config){
55013     var el = config.el;
55014     var tree = config.tree;
55015     delete config.tree; 
55016     delete config.el; // hopefull!
55017     
55018     // wrapper for IE7 strict & safari scroll issue
55019     
55020     var treeEl = el.createChild();
55021     config.resizeEl = treeEl;
55022     
55023     
55024     
55025     Roo.TreePanel.superclass.constructor.call(this, el, config);
55026  
55027  
55028     this.tree = new Roo.tree.TreePanel(treeEl , tree);
55029     //console.log(tree);
55030     this.on('activate', function()
55031     {
55032         if (this.tree.rendered) {
55033             return;
55034         }
55035         //console.log('render tree');
55036         this.tree.render();
55037     });
55038     // this should not be needed.. - it's actually the 'el' that resizes?
55039     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
55040     
55041     //this.on('resize',  function (cp, w, h) {
55042     //        this.tree.innerCt.setWidth(w);
55043     //        this.tree.innerCt.setHeight(h);
55044     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
55045     //});
55046
55047         
55048     
55049 };
55050
55051 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
55052     fitToFrame : true,
55053     autoScroll : true
55054 });
55055
55056
55057
55058
55059
55060
55061
55062
55063
55064
55065
55066 /*
55067  * Based on:
55068  * Ext JS Library 1.1.1
55069  * Copyright(c) 2006-2007, Ext JS, LLC.
55070  *
55071  * Originally Released Under LGPL - original licence link has changed is not relivant.
55072  *
55073  * Fork - LGPL
55074  * <script type="text/javascript">
55075  */
55076  
55077
55078 /**
55079  * @class Roo.ReaderLayout
55080  * @extends Roo.BorderLayout
55081  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55082  * center region containing two nested regions (a top one for a list view and one for item preview below),
55083  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55084  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55085  * expedites the setup of the overall layout and regions for this common application style.
55086  * Example:
55087  <pre><code>
55088 var reader = new Roo.ReaderLayout();
55089 var CP = Roo.ContentPanel;  // shortcut for adding
55090
55091 reader.beginUpdate();
55092 reader.add("north", new CP("north", "North"));
55093 reader.add("west", new CP("west", {title: "West"}));
55094 reader.add("east", new CP("east", {title: "East"}));
55095
55096 reader.regions.listView.add(new CP("listView", "List"));
55097 reader.regions.preview.add(new CP("preview", "Preview"));
55098 reader.endUpdate();
55099 </code></pre>
55100 * @constructor
55101 * Create a new ReaderLayout
55102 * @param {Object} config Configuration options
55103 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55104 * document.body if omitted)
55105 */
55106 Roo.ReaderLayout = function(config, renderTo){
55107     var c = config || {size:{}};
55108     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55109         north: c.north !== false ? Roo.apply({
55110             split:false,
55111             initialSize: 32,
55112             titlebar: false
55113         }, c.north) : false,
55114         west: c.west !== false ? Roo.apply({
55115             split:true,
55116             initialSize: 200,
55117             minSize: 175,
55118             maxSize: 400,
55119             titlebar: true,
55120             collapsible: true,
55121             animate: true,
55122             margins:{left:5,right:0,bottom:5,top:5},
55123             cmargins:{left:5,right:5,bottom:5,top:5}
55124         }, c.west) : false,
55125         east: c.east !== false ? Roo.apply({
55126             split:true,
55127             initialSize: 200,
55128             minSize: 175,
55129             maxSize: 400,
55130             titlebar: true,
55131             collapsible: true,
55132             animate: true,
55133             margins:{left:0,right:5,bottom:5,top:5},
55134             cmargins:{left:5,right:5,bottom:5,top:5}
55135         }, c.east) : false,
55136         center: Roo.apply({
55137             tabPosition: 'top',
55138             autoScroll:false,
55139             closeOnTab: true,
55140             titlebar:false,
55141             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55142         }, c.center)
55143     });
55144
55145     this.el.addClass('x-reader');
55146
55147     this.beginUpdate();
55148
55149     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55150         south: c.preview !== false ? Roo.apply({
55151             split:true,
55152             initialSize: 200,
55153             minSize: 100,
55154             autoScroll:true,
55155             collapsible:true,
55156             titlebar: true,
55157             cmargins:{top:5,left:0, right:0, bottom:0}
55158         }, c.preview) : false,
55159         center: Roo.apply({
55160             autoScroll:false,
55161             titlebar:false,
55162             minHeight:200
55163         }, c.listView)
55164     });
55165     this.add('center', new Roo.NestedLayoutPanel(inner,
55166             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55167
55168     this.endUpdate();
55169
55170     this.regions.preview = inner.getRegion('south');
55171     this.regions.listView = inner.getRegion('center');
55172 };
55173
55174 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55175  * Based on:
55176  * Ext JS Library 1.1.1
55177  * Copyright(c) 2006-2007, Ext JS, LLC.
55178  *
55179  * Originally Released Under LGPL - original licence link has changed is not relivant.
55180  *
55181  * Fork - LGPL
55182  * <script type="text/javascript">
55183  */
55184  
55185 /**
55186  * @class Roo.grid.Grid
55187  * @extends Roo.util.Observable
55188  * This class represents the primary interface of a component based grid control.
55189  * <br><br>Usage:<pre><code>
55190  var grid = new Roo.grid.Grid("my-container-id", {
55191      ds: myDataStore,
55192      cm: myColModel,
55193      selModel: mySelectionModel,
55194      autoSizeColumns: true,
55195      monitorWindowResize: false,
55196      trackMouseOver: true
55197  });
55198  // set any options
55199  grid.render();
55200  * </code></pre>
55201  * <b>Common Problems:</b><br/>
55202  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55203  * element will correct this<br/>
55204  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55205  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55206  * are unpredictable.<br/>
55207  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55208  * grid to calculate dimensions/offsets.<br/>
55209   * @constructor
55210  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55211  * The container MUST have some type of size defined for the grid to fill. The container will be
55212  * automatically set to position relative if it isn't already.
55213  * @param {Object} config A config object that sets properties on this grid.
55214  */
55215 Roo.grid.Grid = function(container, config){
55216         // initialize the container
55217         this.container = Roo.get(container);
55218         this.container.update("");
55219         this.container.setStyle("overflow", "hidden");
55220     this.container.addClass('x-grid-container');
55221
55222     this.id = this.container.id;
55223
55224     Roo.apply(this, config);
55225     // check and correct shorthanded configs
55226     if(this.ds){
55227         this.dataSource = this.ds;
55228         delete this.ds;
55229     }
55230     if(this.cm){
55231         this.colModel = this.cm;
55232         delete this.cm;
55233     }
55234     if(this.sm){
55235         this.selModel = this.sm;
55236         delete this.sm;
55237     }
55238
55239     if (this.selModel) {
55240         this.selModel = Roo.factory(this.selModel, Roo.grid);
55241         this.sm = this.selModel;
55242         this.sm.xmodule = this.xmodule || false;
55243     }
55244     if (typeof(this.colModel.config) == 'undefined') {
55245         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55246         this.cm = this.colModel;
55247         this.cm.xmodule = this.xmodule || false;
55248     }
55249     if (this.dataSource) {
55250         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55251         this.ds = this.dataSource;
55252         this.ds.xmodule = this.xmodule || false;
55253          
55254     }
55255     
55256     
55257     
55258     if(this.width){
55259         this.container.setWidth(this.width);
55260     }
55261
55262     if(this.height){
55263         this.container.setHeight(this.height);
55264     }
55265     /** @private */
55266         this.addEvents({
55267         // raw events
55268         /**
55269          * @event click
55270          * The raw click event for the entire grid.
55271          * @param {Roo.EventObject} e
55272          */
55273         "click" : true,
55274         /**
55275          * @event dblclick
55276          * The raw dblclick event for the entire grid.
55277          * @param {Roo.EventObject} e
55278          */
55279         "dblclick" : true,
55280         /**
55281          * @event contextmenu
55282          * The raw contextmenu event for the entire grid.
55283          * @param {Roo.EventObject} e
55284          */
55285         "contextmenu" : true,
55286         /**
55287          * @event mousedown
55288          * The raw mousedown event for the entire grid.
55289          * @param {Roo.EventObject} e
55290          */
55291         "mousedown" : true,
55292         /**
55293          * @event mouseup
55294          * The raw mouseup event for the entire grid.
55295          * @param {Roo.EventObject} e
55296          */
55297         "mouseup" : true,
55298         /**
55299          * @event mouseover
55300          * The raw mouseover event for the entire grid.
55301          * @param {Roo.EventObject} e
55302          */
55303         "mouseover" : true,
55304         /**
55305          * @event mouseout
55306          * The raw mouseout event for the entire grid.
55307          * @param {Roo.EventObject} e
55308          */
55309         "mouseout" : true,
55310         /**
55311          * @event keypress
55312          * The raw keypress event for the entire grid.
55313          * @param {Roo.EventObject} e
55314          */
55315         "keypress" : true,
55316         /**
55317          * @event keydown
55318          * The raw keydown event for the entire grid.
55319          * @param {Roo.EventObject} e
55320          */
55321         "keydown" : true,
55322
55323         // custom events
55324
55325         /**
55326          * @event cellclick
55327          * Fires when a cell is clicked
55328          * @param {Grid} this
55329          * @param {Number} rowIndex
55330          * @param {Number} columnIndex
55331          * @param {Roo.EventObject} e
55332          */
55333         "cellclick" : true,
55334         /**
55335          * @event celldblclick
55336          * Fires when a cell is double clicked
55337          * @param {Grid} this
55338          * @param {Number} rowIndex
55339          * @param {Number} columnIndex
55340          * @param {Roo.EventObject} e
55341          */
55342         "celldblclick" : true,
55343         /**
55344          * @event rowclick
55345          * Fires when a row is clicked
55346          * @param {Grid} this
55347          * @param {Number} rowIndex
55348          * @param {Roo.EventObject} e
55349          */
55350         "rowclick" : true,
55351         /**
55352          * @event rowdblclick
55353          * Fires when a row is double clicked
55354          * @param {Grid} this
55355          * @param {Number} rowIndex
55356          * @param {Roo.EventObject} e
55357          */
55358         "rowdblclick" : true,
55359         /**
55360          * @event headerclick
55361          * Fires when a header is clicked
55362          * @param {Grid} this
55363          * @param {Number} columnIndex
55364          * @param {Roo.EventObject} e
55365          */
55366         "headerclick" : true,
55367         /**
55368          * @event headerdblclick
55369          * Fires when a header cell is double clicked
55370          * @param {Grid} this
55371          * @param {Number} columnIndex
55372          * @param {Roo.EventObject} e
55373          */
55374         "headerdblclick" : true,
55375         /**
55376          * @event rowcontextmenu
55377          * Fires when a row is right clicked
55378          * @param {Grid} this
55379          * @param {Number} rowIndex
55380          * @param {Roo.EventObject} e
55381          */
55382         "rowcontextmenu" : true,
55383         /**
55384          * @event cellcontextmenu
55385          * Fires when a cell is right clicked
55386          * @param {Grid} this
55387          * @param {Number} rowIndex
55388          * @param {Number} cellIndex
55389          * @param {Roo.EventObject} e
55390          */
55391          "cellcontextmenu" : true,
55392         /**
55393          * @event headercontextmenu
55394          * Fires when a header is right clicked
55395          * @param {Grid} this
55396          * @param {Number} columnIndex
55397          * @param {Roo.EventObject} e
55398          */
55399         "headercontextmenu" : true,
55400         /**
55401          * @event bodyscroll
55402          * Fires when the body element is scrolled
55403          * @param {Number} scrollLeft
55404          * @param {Number} scrollTop
55405          */
55406         "bodyscroll" : true,
55407         /**
55408          * @event columnresize
55409          * Fires when the user resizes a column
55410          * @param {Number} columnIndex
55411          * @param {Number} newSize
55412          */
55413         "columnresize" : true,
55414         /**
55415          * @event columnmove
55416          * Fires when the user moves a column
55417          * @param {Number} oldIndex
55418          * @param {Number} newIndex
55419          */
55420         "columnmove" : true,
55421         /**
55422          * @event startdrag
55423          * Fires when row(s) start being dragged
55424          * @param {Grid} this
55425          * @param {Roo.GridDD} dd The drag drop object
55426          * @param {event} e The raw browser event
55427          */
55428         "startdrag" : true,
55429         /**
55430          * @event enddrag
55431          * Fires when a drag operation is complete
55432          * @param {Grid} this
55433          * @param {Roo.GridDD} dd The drag drop object
55434          * @param {event} e The raw browser event
55435          */
55436         "enddrag" : true,
55437         /**
55438          * @event dragdrop
55439          * Fires when dragged row(s) are dropped on a valid DD target
55440          * @param {Grid} this
55441          * @param {Roo.GridDD} dd The drag drop object
55442          * @param {String} targetId The target drag drop object
55443          * @param {event} e The raw browser event
55444          */
55445         "dragdrop" : true,
55446         /**
55447          * @event dragover
55448          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55449          * @param {Grid} this
55450          * @param {Roo.GridDD} dd The drag drop object
55451          * @param {String} targetId The target drag drop object
55452          * @param {event} e The raw browser event
55453          */
55454         "dragover" : true,
55455         /**
55456          * @event dragenter
55457          *  Fires when the dragged row(s) first cross another DD target while being dragged
55458          * @param {Grid} this
55459          * @param {Roo.GridDD} dd The drag drop object
55460          * @param {String} targetId The target drag drop object
55461          * @param {event} e The raw browser event
55462          */
55463         "dragenter" : true,
55464         /**
55465          * @event dragout
55466          * Fires when the dragged row(s) leave another DD target while being dragged
55467          * @param {Grid} this
55468          * @param {Roo.GridDD} dd The drag drop object
55469          * @param {String} targetId The target drag drop object
55470          * @param {event} e The raw browser event
55471          */
55472         "dragout" : true,
55473         /**
55474          * @event rowclass
55475          * Fires when a row is rendered, so you can change add a style to it.
55476          * @param {GridView} gridview   The grid view
55477          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55478          */
55479         'rowclass' : true,
55480
55481         /**
55482          * @event render
55483          * Fires when the grid is rendered
55484          * @param {Grid} grid
55485          */
55486         'render' : true
55487     });
55488
55489     Roo.grid.Grid.superclass.constructor.call(this);
55490 };
55491 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55492     
55493     /**
55494      * @cfg {String} ddGroup - drag drop group.
55495      */
55496       /**
55497      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55498      */
55499
55500     /**
55501      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55502      */
55503     minColumnWidth : 25,
55504
55505     /**
55506      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55507      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55508      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55509      */
55510     autoSizeColumns : false,
55511
55512     /**
55513      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55514      */
55515     autoSizeHeaders : true,
55516
55517     /**
55518      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55519      */
55520     monitorWindowResize : true,
55521
55522     /**
55523      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55524      * rows measured to get a columns size. Default is 0 (all rows).
55525      */
55526     maxRowsToMeasure : 0,
55527
55528     /**
55529      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55530      */
55531     trackMouseOver : true,
55532
55533     /**
55534     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55535     */
55536       /**
55537     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55538     */
55539     
55540     /**
55541     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55542     */
55543     enableDragDrop : false,
55544     
55545     /**
55546     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55547     */
55548     enableColumnMove : true,
55549     
55550     /**
55551     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55552     */
55553     enableColumnHide : true,
55554     
55555     /**
55556     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55557     */
55558     enableRowHeightSync : false,
55559     
55560     /**
55561     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55562     */
55563     stripeRows : true,
55564     
55565     /**
55566     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55567     */
55568     autoHeight : false,
55569
55570     /**
55571      * @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.
55572      */
55573     autoExpandColumn : false,
55574
55575     /**
55576     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55577     * Default is 50.
55578     */
55579     autoExpandMin : 50,
55580
55581     /**
55582     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55583     */
55584     autoExpandMax : 1000,
55585
55586     /**
55587     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55588     */
55589     view : null,
55590
55591     /**
55592     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55593     */
55594     loadMask : false,
55595     /**
55596     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55597     */
55598     dropTarget: false,
55599     
55600    
55601     
55602     // private
55603     rendered : false,
55604
55605     /**
55606     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55607     * of a fixed width. Default is false.
55608     */
55609     /**
55610     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55611     */
55612     
55613     
55614     /**
55615     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55616     * %0 is replaced with the number of selected rows.
55617     */
55618     ddText : "{0} selected row{1}",
55619     
55620     
55621     /**
55622      * Called once after all setup has been completed and the grid is ready to be rendered.
55623      * @return {Roo.grid.Grid} this
55624      */
55625     render : function()
55626     {
55627         var c = this.container;
55628         // try to detect autoHeight/width mode
55629         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55630             this.autoHeight = true;
55631         }
55632         var view = this.getView();
55633         view.init(this);
55634
55635         c.on("click", this.onClick, this);
55636         c.on("dblclick", this.onDblClick, this);
55637         c.on("contextmenu", this.onContextMenu, this);
55638         c.on("keydown", this.onKeyDown, this);
55639         if (Roo.isTouch) {
55640             c.on("touchstart", this.onTouchStart, this);
55641         }
55642
55643         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55644
55645         this.getSelectionModel().init(this);
55646
55647         view.render();
55648
55649         if(this.loadMask){
55650             this.loadMask = new Roo.LoadMask(this.container,
55651                     Roo.apply({store:this.dataSource}, this.loadMask));
55652         }
55653         
55654         
55655         if (this.toolbar && this.toolbar.xtype) {
55656             this.toolbar.container = this.getView().getHeaderPanel(true);
55657             this.toolbar = new Roo.Toolbar(this.toolbar);
55658         }
55659         if (this.footer && this.footer.xtype) {
55660             this.footer.dataSource = this.getDataSource();
55661             this.footer.container = this.getView().getFooterPanel(true);
55662             this.footer = Roo.factory(this.footer, Roo);
55663         }
55664         if (this.dropTarget && this.dropTarget.xtype) {
55665             delete this.dropTarget.xtype;
55666             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55667         }
55668         
55669         
55670         this.rendered = true;
55671         this.fireEvent('render', this);
55672         return this;
55673     },
55674
55675     /**
55676      * Reconfigures the grid to use a different Store and Column Model.
55677      * The View will be bound to the new objects and refreshed.
55678      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55679      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55680      */
55681     reconfigure : function(dataSource, colModel){
55682         if(this.loadMask){
55683             this.loadMask.destroy();
55684             this.loadMask = new Roo.LoadMask(this.container,
55685                     Roo.apply({store:dataSource}, this.loadMask));
55686         }
55687         this.view.bind(dataSource, colModel);
55688         this.dataSource = dataSource;
55689         this.colModel = colModel;
55690         this.view.refresh(true);
55691     },
55692     /**
55693      * addColumns
55694      * Add's a column, default at the end..
55695      
55696      * @param {int} position to add (default end)
55697      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55698      */
55699     addColumns : function(pos, ar)
55700     {
55701         
55702         for (var i =0;i< ar.length;i++) {
55703             var cfg = ar[i];
55704             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55705             this.cm.lookup[cfg.id] = cfg;
55706         }
55707         
55708         
55709         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55710             pos = this.cm.config.length; //this.cm.config.push(cfg);
55711         } 
55712         pos = Math.max(0,pos);
55713         ar.unshift(0);
55714         ar.unshift(pos);
55715         this.cm.config.splice.apply(this.cm.config, ar);
55716         
55717         
55718         
55719         this.view.generateRules(this.cm);
55720         this.view.refresh(true);
55721         
55722     },
55723     
55724     
55725     
55726     
55727     // private
55728     onKeyDown : function(e){
55729         this.fireEvent("keydown", e);
55730     },
55731
55732     /**
55733      * Destroy this grid.
55734      * @param {Boolean} removeEl True to remove the element
55735      */
55736     destroy : function(removeEl, keepListeners){
55737         if(this.loadMask){
55738             this.loadMask.destroy();
55739         }
55740         var c = this.container;
55741         c.removeAllListeners();
55742         this.view.destroy();
55743         this.colModel.purgeListeners();
55744         if(!keepListeners){
55745             this.purgeListeners();
55746         }
55747         c.update("");
55748         if(removeEl === true){
55749             c.remove();
55750         }
55751     },
55752
55753     // private
55754     processEvent : function(name, e){
55755         // does this fire select???
55756         //Roo.log('grid:processEvent '  + name);
55757         
55758         if (name != 'touchstart' ) {
55759             this.fireEvent(name, e);    
55760         }
55761         
55762         var t = e.getTarget();
55763         var v = this.view;
55764         var header = v.findHeaderIndex(t);
55765         if(header !== false){
55766             var ename = name == 'touchstart' ? 'click' : name;
55767              
55768             this.fireEvent("header" + ename, this, header, e);
55769         }else{
55770             var row = v.findRowIndex(t);
55771             var cell = v.findCellIndex(t);
55772             if (name == 'touchstart') {
55773                 // first touch is always a click.
55774                 // hopefull this happens after selection is updated.?
55775                 name = false;
55776                 
55777                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55778                     var cs = this.selModel.getSelectedCell();
55779                     if (row == cs[0] && cell == cs[1]){
55780                         name = 'dblclick';
55781                     }
55782                 }
55783                 if (typeof(this.selModel.getSelections) != 'undefined') {
55784                     var cs = this.selModel.getSelections();
55785                     var ds = this.dataSource;
55786                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55787                         name = 'dblclick';
55788                     }
55789                 }
55790                 if (!name) {
55791                     return;
55792                 }
55793             }
55794             
55795             
55796             if(row !== false){
55797                 this.fireEvent("row" + name, this, row, e);
55798                 if(cell !== false){
55799                     this.fireEvent("cell" + name, this, row, cell, e);
55800                 }
55801             }
55802         }
55803     },
55804
55805     // private
55806     onClick : function(e){
55807         this.processEvent("click", e);
55808     },
55809    // private
55810     onTouchStart : function(e){
55811         this.processEvent("touchstart", e);
55812     },
55813
55814     // private
55815     onContextMenu : function(e, t){
55816         this.processEvent("contextmenu", e);
55817     },
55818
55819     // private
55820     onDblClick : function(e){
55821         this.processEvent("dblclick", e);
55822     },
55823
55824     // private
55825     walkCells : function(row, col, step, fn, scope){
55826         var cm = this.colModel, clen = cm.getColumnCount();
55827         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55828         if(step < 0){
55829             if(col < 0){
55830                 row--;
55831                 first = false;
55832             }
55833             while(row >= 0){
55834                 if(!first){
55835                     col = clen-1;
55836                 }
55837                 first = false;
55838                 while(col >= 0){
55839                     if(fn.call(scope || this, row, col, cm) === true){
55840                         return [row, col];
55841                     }
55842                     col--;
55843                 }
55844                 row--;
55845             }
55846         } else {
55847             if(col >= clen){
55848                 row++;
55849                 first = false;
55850             }
55851             while(row < rlen){
55852                 if(!first){
55853                     col = 0;
55854                 }
55855                 first = false;
55856                 while(col < clen){
55857                     if(fn.call(scope || this, row, col, cm) === true){
55858                         return [row, col];
55859                     }
55860                     col++;
55861                 }
55862                 row++;
55863             }
55864         }
55865         return null;
55866     },
55867
55868     // private
55869     getSelections : function(){
55870         return this.selModel.getSelections();
55871     },
55872
55873     /**
55874      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55875      * but if manual update is required this method will initiate it.
55876      */
55877     autoSize : function(){
55878         if(this.rendered){
55879             this.view.layout();
55880             if(this.view.adjustForScroll){
55881                 this.view.adjustForScroll();
55882             }
55883         }
55884     },
55885
55886     /**
55887      * Returns the grid's underlying element.
55888      * @return {Element} The element
55889      */
55890     getGridEl : function(){
55891         return this.container;
55892     },
55893
55894     // private for compatibility, overridden by editor grid
55895     stopEditing : function(){},
55896
55897     /**
55898      * Returns the grid's SelectionModel.
55899      * @return {SelectionModel}
55900      */
55901     getSelectionModel : function(){
55902         if(!this.selModel){
55903             this.selModel = new Roo.grid.RowSelectionModel();
55904         }
55905         return this.selModel;
55906     },
55907
55908     /**
55909      * Returns the grid's DataSource.
55910      * @return {DataSource}
55911      */
55912     getDataSource : function(){
55913         return this.dataSource;
55914     },
55915
55916     /**
55917      * Returns the grid's ColumnModel.
55918      * @return {ColumnModel}
55919      */
55920     getColumnModel : function(){
55921         return this.colModel;
55922     },
55923
55924     /**
55925      * Returns the grid's GridView object.
55926      * @return {GridView}
55927      */
55928     getView : function(){
55929         if(!this.view){
55930             this.view = new Roo.grid.GridView(this.viewConfig);
55931             this.relayEvents(this.view, [
55932                 "beforerowremoved", "beforerowsinserted",
55933                 "beforerefresh", "rowremoved",
55934                 "rowsinserted", "rowupdated" ,"refresh"
55935             ]);
55936         }
55937         return this.view;
55938     },
55939     /**
55940      * Called to get grid's drag proxy text, by default returns this.ddText.
55941      * Override this to put something different in the dragged text.
55942      * @return {String}
55943      */
55944     getDragDropText : function(){
55945         var count = this.selModel.getCount();
55946         return String.format(this.ddText, count, count == 1 ? '' : 's');
55947     }
55948 });
55949 /*
55950  * Based on:
55951  * Ext JS Library 1.1.1
55952  * Copyright(c) 2006-2007, Ext JS, LLC.
55953  *
55954  * Originally Released Under LGPL - original licence link has changed is not relivant.
55955  *
55956  * Fork - LGPL
55957  * <script type="text/javascript">
55958  */
55959  
55960 Roo.grid.AbstractGridView = function(){
55961         this.grid = null;
55962         
55963         this.events = {
55964             "beforerowremoved" : true,
55965             "beforerowsinserted" : true,
55966             "beforerefresh" : true,
55967             "rowremoved" : true,
55968             "rowsinserted" : true,
55969             "rowupdated" : true,
55970             "refresh" : true
55971         };
55972     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55973 };
55974
55975 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55976     rowClass : "x-grid-row",
55977     cellClass : "x-grid-cell",
55978     tdClass : "x-grid-td",
55979     hdClass : "x-grid-hd",
55980     splitClass : "x-grid-hd-split",
55981     
55982     init: function(grid){
55983         this.grid = grid;
55984                 var cid = this.grid.getGridEl().id;
55985         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
55986         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
55987         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
55988         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
55989         },
55990         
55991     getColumnRenderers : function(){
55992         var renderers = [];
55993         var cm = this.grid.colModel;
55994         var colCount = cm.getColumnCount();
55995         for(var i = 0; i < colCount; i++){
55996             renderers[i] = cm.getRenderer(i);
55997         }
55998         return renderers;
55999     },
56000     
56001     getColumnIds : function(){
56002         var ids = [];
56003         var cm = this.grid.colModel;
56004         var colCount = cm.getColumnCount();
56005         for(var i = 0; i < colCount; i++){
56006             ids[i] = cm.getColumnId(i);
56007         }
56008         return ids;
56009     },
56010     
56011     getDataIndexes : function(){
56012         if(!this.indexMap){
56013             this.indexMap = this.buildIndexMap();
56014         }
56015         return this.indexMap.colToData;
56016     },
56017     
56018     getColumnIndexByDataIndex : function(dataIndex){
56019         if(!this.indexMap){
56020             this.indexMap = this.buildIndexMap();
56021         }
56022         return this.indexMap.dataToCol[dataIndex];
56023     },
56024     
56025     /**
56026      * Set a css style for a column dynamically. 
56027      * @param {Number} colIndex The index of the column
56028      * @param {String} name The css property name
56029      * @param {String} value The css value
56030      */
56031     setCSSStyle : function(colIndex, name, value){
56032         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
56033         Roo.util.CSS.updateRule(selector, name, value);
56034     },
56035     
56036     generateRules : function(cm){
56037         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
56038         Roo.util.CSS.removeStyleSheet(rulesId);
56039         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56040             var cid = cm.getColumnId(i);
56041             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
56042                          this.tdSelector, cid, " {\n}\n",
56043                          this.hdSelector, cid, " {\n}\n",
56044                          this.splitSelector, cid, " {\n}\n");
56045         }
56046         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56047     }
56048 });/*
56049  * Based on:
56050  * Ext JS Library 1.1.1
56051  * Copyright(c) 2006-2007, Ext JS, LLC.
56052  *
56053  * Originally Released Under LGPL - original licence link has changed is not relivant.
56054  *
56055  * Fork - LGPL
56056  * <script type="text/javascript">
56057  */
56058
56059 // private
56060 // This is a support class used internally by the Grid components
56061 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
56062     this.grid = grid;
56063     this.view = grid.getView();
56064     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56065     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
56066     if(hd2){
56067         this.setHandleElId(Roo.id(hd));
56068         this.setOuterHandleElId(Roo.id(hd2));
56069     }
56070     this.scroll = false;
56071 };
56072 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
56073     maxDragWidth: 120,
56074     getDragData : function(e){
56075         var t = Roo.lib.Event.getTarget(e);
56076         var h = this.view.findHeaderCell(t);
56077         if(h){
56078             return {ddel: h.firstChild, header:h};
56079         }
56080         return false;
56081     },
56082
56083     onInitDrag : function(e){
56084         this.view.headersDisabled = true;
56085         var clone = this.dragData.ddel.cloneNode(true);
56086         clone.id = Roo.id();
56087         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56088         this.proxy.update(clone);
56089         return true;
56090     },
56091
56092     afterValidDrop : function(){
56093         var v = this.view;
56094         setTimeout(function(){
56095             v.headersDisabled = false;
56096         }, 50);
56097     },
56098
56099     afterInvalidDrop : function(){
56100         var v = this.view;
56101         setTimeout(function(){
56102             v.headersDisabled = false;
56103         }, 50);
56104     }
56105 });
56106 /*
56107  * Based on:
56108  * Ext JS Library 1.1.1
56109  * Copyright(c) 2006-2007, Ext JS, LLC.
56110  *
56111  * Originally Released Under LGPL - original licence link has changed is not relivant.
56112  *
56113  * Fork - LGPL
56114  * <script type="text/javascript">
56115  */
56116 // private
56117 // This is a support class used internally by the Grid components
56118 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56119     this.grid = grid;
56120     this.view = grid.getView();
56121     // split the proxies so they don't interfere with mouse events
56122     this.proxyTop = Roo.DomHelper.append(document.body, {
56123         cls:"col-move-top", html:"&#160;"
56124     }, true);
56125     this.proxyBottom = Roo.DomHelper.append(document.body, {
56126         cls:"col-move-bottom", html:"&#160;"
56127     }, true);
56128     this.proxyTop.hide = this.proxyBottom.hide = function(){
56129         this.setLeftTop(-100,-100);
56130         this.setStyle("visibility", "hidden");
56131     };
56132     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56133     // temporarily disabled
56134     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56135     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56136 };
56137 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56138     proxyOffsets : [-4, -9],
56139     fly: Roo.Element.fly,
56140
56141     getTargetFromEvent : function(e){
56142         var t = Roo.lib.Event.getTarget(e);
56143         var cindex = this.view.findCellIndex(t);
56144         if(cindex !== false){
56145             return this.view.getHeaderCell(cindex);
56146         }
56147         return null;
56148     },
56149
56150     nextVisible : function(h){
56151         var v = this.view, cm = this.grid.colModel;
56152         h = h.nextSibling;
56153         while(h){
56154             if(!cm.isHidden(v.getCellIndex(h))){
56155                 return h;
56156             }
56157             h = h.nextSibling;
56158         }
56159         return null;
56160     },
56161
56162     prevVisible : function(h){
56163         var v = this.view, cm = this.grid.colModel;
56164         h = h.prevSibling;
56165         while(h){
56166             if(!cm.isHidden(v.getCellIndex(h))){
56167                 return h;
56168             }
56169             h = h.prevSibling;
56170         }
56171         return null;
56172     },
56173
56174     positionIndicator : function(h, n, e){
56175         var x = Roo.lib.Event.getPageX(e);
56176         var r = Roo.lib.Dom.getRegion(n.firstChild);
56177         var px, pt, py = r.top + this.proxyOffsets[1];
56178         if((r.right - x) <= (r.right-r.left)/2){
56179             px = r.right+this.view.borderWidth;
56180             pt = "after";
56181         }else{
56182             px = r.left;
56183             pt = "before";
56184         }
56185         var oldIndex = this.view.getCellIndex(h);
56186         var newIndex = this.view.getCellIndex(n);
56187
56188         if(this.grid.colModel.isFixed(newIndex)){
56189             return false;
56190         }
56191
56192         var locked = this.grid.colModel.isLocked(newIndex);
56193
56194         if(pt == "after"){
56195             newIndex++;
56196         }
56197         if(oldIndex < newIndex){
56198             newIndex--;
56199         }
56200         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56201             return false;
56202         }
56203         px +=  this.proxyOffsets[0];
56204         this.proxyTop.setLeftTop(px, py);
56205         this.proxyTop.show();
56206         if(!this.bottomOffset){
56207             this.bottomOffset = this.view.mainHd.getHeight();
56208         }
56209         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56210         this.proxyBottom.show();
56211         return pt;
56212     },
56213
56214     onNodeEnter : function(n, dd, e, data){
56215         if(data.header != n){
56216             this.positionIndicator(data.header, n, e);
56217         }
56218     },
56219
56220     onNodeOver : function(n, dd, e, data){
56221         var result = false;
56222         if(data.header != n){
56223             result = this.positionIndicator(data.header, n, e);
56224         }
56225         if(!result){
56226             this.proxyTop.hide();
56227             this.proxyBottom.hide();
56228         }
56229         return result ? this.dropAllowed : this.dropNotAllowed;
56230     },
56231
56232     onNodeOut : function(n, dd, e, data){
56233         this.proxyTop.hide();
56234         this.proxyBottom.hide();
56235     },
56236
56237     onNodeDrop : function(n, dd, e, data){
56238         var h = data.header;
56239         if(h != n){
56240             var cm = this.grid.colModel;
56241             var x = Roo.lib.Event.getPageX(e);
56242             var r = Roo.lib.Dom.getRegion(n.firstChild);
56243             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56244             var oldIndex = this.view.getCellIndex(h);
56245             var newIndex = this.view.getCellIndex(n);
56246             var locked = cm.isLocked(newIndex);
56247             if(pt == "after"){
56248                 newIndex++;
56249             }
56250             if(oldIndex < newIndex){
56251                 newIndex--;
56252             }
56253             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56254                 return false;
56255             }
56256             cm.setLocked(oldIndex, locked, true);
56257             cm.moveColumn(oldIndex, newIndex);
56258             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56259             return true;
56260         }
56261         return false;
56262     }
56263 });
56264 /*
56265  * Based on:
56266  * Ext JS Library 1.1.1
56267  * Copyright(c) 2006-2007, Ext JS, LLC.
56268  *
56269  * Originally Released Under LGPL - original licence link has changed is not relivant.
56270  *
56271  * Fork - LGPL
56272  * <script type="text/javascript">
56273  */
56274   
56275 /**
56276  * @class Roo.grid.GridView
56277  * @extends Roo.util.Observable
56278  *
56279  * @constructor
56280  * @param {Object} config
56281  */
56282 Roo.grid.GridView = function(config){
56283     Roo.grid.GridView.superclass.constructor.call(this);
56284     this.el = null;
56285
56286     Roo.apply(this, config);
56287 };
56288
56289 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56290
56291     unselectable :  'unselectable="on"',
56292     unselectableCls :  'x-unselectable',
56293     
56294     
56295     rowClass : "x-grid-row",
56296
56297     cellClass : "x-grid-col",
56298
56299     tdClass : "x-grid-td",
56300
56301     hdClass : "x-grid-hd",
56302
56303     splitClass : "x-grid-split",
56304
56305     sortClasses : ["sort-asc", "sort-desc"],
56306
56307     enableMoveAnim : false,
56308
56309     hlColor: "C3DAF9",
56310
56311     dh : Roo.DomHelper,
56312
56313     fly : Roo.Element.fly,
56314
56315     css : Roo.util.CSS,
56316
56317     borderWidth: 1,
56318
56319     splitOffset: 3,
56320
56321     scrollIncrement : 22,
56322
56323     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56324
56325     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56326
56327     bind : function(ds, cm){
56328         if(this.ds){
56329             this.ds.un("load", this.onLoad, this);
56330             this.ds.un("datachanged", this.onDataChange, this);
56331             this.ds.un("add", this.onAdd, this);
56332             this.ds.un("remove", this.onRemove, this);
56333             this.ds.un("update", this.onUpdate, this);
56334             this.ds.un("clear", this.onClear, this);
56335         }
56336         if(ds){
56337             ds.on("load", this.onLoad, this);
56338             ds.on("datachanged", this.onDataChange, this);
56339             ds.on("add", this.onAdd, this);
56340             ds.on("remove", this.onRemove, this);
56341             ds.on("update", this.onUpdate, this);
56342             ds.on("clear", this.onClear, this);
56343         }
56344         this.ds = ds;
56345
56346         if(this.cm){
56347             this.cm.un("widthchange", this.onColWidthChange, this);
56348             this.cm.un("headerchange", this.onHeaderChange, this);
56349             this.cm.un("hiddenchange", this.onHiddenChange, this);
56350             this.cm.un("columnmoved", this.onColumnMove, this);
56351             this.cm.un("columnlockchange", this.onColumnLock, this);
56352         }
56353         if(cm){
56354             this.generateRules(cm);
56355             cm.on("widthchange", this.onColWidthChange, this);
56356             cm.on("headerchange", this.onHeaderChange, this);
56357             cm.on("hiddenchange", this.onHiddenChange, this);
56358             cm.on("columnmoved", this.onColumnMove, this);
56359             cm.on("columnlockchange", this.onColumnLock, this);
56360         }
56361         this.cm = cm;
56362     },
56363
56364     init: function(grid){
56365         Roo.grid.GridView.superclass.init.call(this, grid);
56366
56367         this.bind(grid.dataSource, grid.colModel);
56368
56369         grid.on("headerclick", this.handleHeaderClick, this);
56370
56371         if(grid.trackMouseOver){
56372             grid.on("mouseover", this.onRowOver, this);
56373             grid.on("mouseout", this.onRowOut, this);
56374         }
56375         grid.cancelTextSelection = function(){};
56376         this.gridId = grid.id;
56377
56378         var tpls = this.templates || {};
56379
56380         if(!tpls.master){
56381             tpls.master = new Roo.Template(
56382                '<div class="x-grid" hidefocus="true">',
56383                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56384                   '<div class="x-grid-topbar"></div>',
56385                   '<div class="x-grid-scroller"><div></div></div>',
56386                   '<div class="x-grid-locked">',
56387                       '<div class="x-grid-header">{lockedHeader}</div>',
56388                       '<div class="x-grid-body">{lockedBody}</div>',
56389                   "</div>",
56390                   '<div class="x-grid-viewport">',
56391                       '<div class="x-grid-header">{header}</div>',
56392                       '<div class="x-grid-body">{body}</div>',
56393                   "</div>",
56394                   '<div class="x-grid-bottombar"></div>',
56395                  
56396                   '<div class="x-grid-resize-proxy">&#160;</div>',
56397                "</div>"
56398             );
56399             tpls.master.disableformats = true;
56400         }
56401
56402         if(!tpls.header){
56403             tpls.header = new Roo.Template(
56404                '<table border="0" cellspacing="0" cellpadding="0">',
56405                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56406                "</table>{splits}"
56407             );
56408             tpls.header.disableformats = true;
56409         }
56410         tpls.header.compile();
56411
56412         if(!tpls.hcell){
56413             tpls.hcell = new Roo.Template(
56414                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56415                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56416                 "</div></td>"
56417              );
56418              tpls.hcell.disableFormats = true;
56419         }
56420         tpls.hcell.compile();
56421
56422         if(!tpls.hsplit){
56423             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56424                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56425             tpls.hsplit.disableFormats = true;
56426         }
56427         tpls.hsplit.compile();
56428
56429         if(!tpls.body){
56430             tpls.body = new Roo.Template(
56431                '<table border="0" cellspacing="0" cellpadding="0">',
56432                "<tbody>{rows}</tbody>",
56433                "</table>"
56434             );
56435             tpls.body.disableFormats = true;
56436         }
56437         tpls.body.compile();
56438
56439         if(!tpls.row){
56440             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56441             tpls.row.disableFormats = true;
56442         }
56443         tpls.row.compile();
56444
56445         if(!tpls.cell){
56446             tpls.cell = new Roo.Template(
56447                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56448                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56449                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56450                 "</td>"
56451             );
56452             tpls.cell.disableFormats = true;
56453         }
56454         tpls.cell.compile();
56455
56456         this.templates = tpls;
56457     },
56458
56459     // remap these for backwards compat
56460     onColWidthChange : function(){
56461         this.updateColumns.apply(this, arguments);
56462     },
56463     onHeaderChange : function(){
56464         this.updateHeaders.apply(this, arguments);
56465     }, 
56466     onHiddenChange : function(){
56467         this.handleHiddenChange.apply(this, arguments);
56468     },
56469     onColumnMove : function(){
56470         this.handleColumnMove.apply(this, arguments);
56471     },
56472     onColumnLock : function(){
56473         this.handleLockChange.apply(this, arguments);
56474     },
56475
56476     onDataChange : function(){
56477         this.refresh();
56478         this.updateHeaderSortState();
56479     },
56480
56481     onClear : function(){
56482         this.refresh();
56483     },
56484
56485     onUpdate : function(ds, record){
56486         this.refreshRow(record);
56487     },
56488
56489     refreshRow : function(record){
56490         var ds = this.ds, index;
56491         if(typeof record == 'number'){
56492             index = record;
56493             record = ds.getAt(index);
56494         }else{
56495             index = ds.indexOf(record);
56496         }
56497         this.insertRows(ds, index, index, true);
56498         this.onRemove(ds, record, index+1, true);
56499         this.syncRowHeights(index, index);
56500         this.layout();
56501         this.fireEvent("rowupdated", this, index, record);
56502     },
56503
56504     onAdd : function(ds, records, index){
56505         this.insertRows(ds, index, index + (records.length-1));
56506     },
56507
56508     onRemove : function(ds, record, index, isUpdate){
56509         if(isUpdate !== true){
56510             this.fireEvent("beforerowremoved", this, index, record);
56511         }
56512         var bt = this.getBodyTable(), lt = this.getLockedTable();
56513         if(bt.rows[index]){
56514             bt.firstChild.removeChild(bt.rows[index]);
56515         }
56516         if(lt.rows[index]){
56517             lt.firstChild.removeChild(lt.rows[index]);
56518         }
56519         if(isUpdate !== true){
56520             this.stripeRows(index);
56521             this.syncRowHeights(index, index);
56522             this.layout();
56523             this.fireEvent("rowremoved", this, index, record);
56524         }
56525     },
56526
56527     onLoad : function(){
56528         this.scrollToTop();
56529     },
56530
56531     /**
56532      * Scrolls the grid to the top
56533      */
56534     scrollToTop : function(){
56535         if(this.scroller){
56536             this.scroller.dom.scrollTop = 0;
56537             this.syncScroll();
56538         }
56539     },
56540
56541     /**
56542      * Gets a panel in the header of the grid that can be used for toolbars etc.
56543      * After modifying the contents of this panel a call to grid.autoSize() may be
56544      * required to register any changes in size.
56545      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56546      * @return Roo.Element
56547      */
56548     getHeaderPanel : function(doShow){
56549         if(doShow){
56550             this.headerPanel.show();
56551         }
56552         return this.headerPanel;
56553     },
56554
56555     /**
56556      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56557      * After modifying the contents of this panel a call to grid.autoSize() may be
56558      * required to register any changes in size.
56559      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56560      * @return Roo.Element
56561      */
56562     getFooterPanel : function(doShow){
56563         if(doShow){
56564             this.footerPanel.show();
56565         }
56566         return this.footerPanel;
56567     },
56568
56569     initElements : function(){
56570         var E = Roo.Element;
56571         var el = this.grid.getGridEl().dom.firstChild;
56572         var cs = el.childNodes;
56573
56574         this.el = new E(el);
56575         
56576          this.focusEl = new E(el.firstChild);
56577         this.focusEl.swallowEvent("click", true);
56578         
56579         this.headerPanel = new E(cs[1]);
56580         this.headerPanel.enableDisplayMode("block");
56581
56582         this.scroller = new E(cs[2]);
56583         this.scrollSizer = new E(this.scroller.dom.firstChild);
56584
56585         this.lockedWrap = new E(cs[3]);
56586         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56587         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56588
56589         this.mainWrap = new E(cs[4]);
56590         this.mainHd = new E(this.mainWrap.dom.firstChild);
56591         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56592
56593         this.footerPanel = new E(cs[5]);
56594         this.footerPanel.enableDisplayMode("block");
56595
56596         this.resizeProxy = new E(cs[6]);
56597
56598         this.headerSelector = String.format(
56599            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56600            this.lockedHd.id, this.mainHd.id
56601         );
56602
56603         this.splitterSelector = String.format(
56604            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56605            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56606         );
56607     },
56608     idToCssName : function(s)
56609     {
56610         return s.replace(/[^a-z0-9]+/ig, '-');
56611     },
56612
56613     getHeaderCell : function(index){
56614         return Roo.DomQuery.select(this.headerSelector)[index];
56615     },
56616
56617     getHeaderCellMeasure : function(index){
56618         return this.getHeaderCell(index).firstChild;
56619     },
56620
56621     getHeaderCellText : function(index){
56622         return this.getHeaderCell(index).firstChild.firstChild;
56623     },
56624
56625     getLockedTable : function(){
56626         return this.lockedBody.dom.firstChild;
56627     },
56628
56629     getBodyTable : function(){
56630         return this.mainBody.dom.firstChild;
56631     },
56632
56633     getLockedRow : function(index){
56634         return this.getLockedTable().rows[index];
56635     },
56636
56637     getRow : function(index){
56638         return this.getBodyTable().rows[index];
56639     },
56640
56641     getRowComposite : function(index){
56642         if(!this.rowEl){
56643             this.rowEl = new Roo.CompositeElementLite();
56644         }
56645         var els = [], lrow, mrow;
56646         if(lrow = this.getLockedRow(index)){
56647             els.push(lrow);
56648         }
56649         if(mrow = this.getRow(index)){
56650             els.push(mrow);
56651         }
56652         this.rowEl.elements = els;
56653         return this.rowEl;
56654     },
56655     /**
56656      * Gets the 'td' of the cell
56657      * 
56658      * @param {Integer} rowIndex row to select
56659      * @param {Integer} colIndex column to select
56660      * 
56661      * @return {Object} 
56662      */
56663     getCell : function(rowIndex, colIndex){
56664         var locked = this.cm.getLockedCount();
56665         var source;
56666         if(colIndex < locked){
56667             source = this.lockedBody.dom.firstChild;
56668         }else{
56669             source = this.mainBody.dom.firstChild;
56670             colIndex -= locked;
56671         }
56672         return source.rows[rowIndex].childNodes[colIndex];
56673     },
56674
56675     getCellText : function(rowIndex, colIndex){
56676         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56677     },
56678
56679     getCellBox : function(cell){
56680         var b = this.fly(cell).getBox();
56681         if(Roo.isOpera){ // opera fails to report the Y
56682             b.y = cell.offsetTop + this.mainBody.getY();
56683         }
56684         return b;
56685     },
56686
56687     getCellIndex : function(cell){
56688         var id = String(cell.className).match(this.cellRE);
56689         if(id){
56690             return parseInt(id[1], 10);
56691         }
56692         return 0;
56693     },
56694
56695     findHeaderIndex : function(n){
56696         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56697         return r ? this.getCellIndex(r) : false;
56698     },
56699
56700     findHeaderCell : function(n){
56701         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56702         return r ? r : false;
56703     },
56704
56705     findRowIndex : function(n){
56706         if(!n){
56707             return false;
56708         }
56709         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56710         return r ? r.rowIndex : false;
56711     },
56712
56713     findCellIndex : function(node){
56714         var stop = this.el.dom;
56715         while(node && node != stop){
56716             if(this.findRE.test(node.className)){
56717                 return this.getCellIndex(node);
56718             }
56719             node = node.parentNode;
56720         }
56721         return false;
56722     },
56723
56724     getColumnId : function(index){
56725         return this.cm.getColumnId(index);
56726     },
56727
56728     getSplitters : function()
56729     {
56730         if(this.splitterSelector){
56731            return Roo.DomQuery.select(this.splitterSelector);
56732         }else{
56733             return null;
56734       }
56735     },
56736
56737     getSplitter : function(index){
56738         return this.getSplitters()[index];
56739     },
56740
56741     onRowOver : function(e, t){
56742         var row;
56743         if((row = this.findRowIndex(t)) !== false){
56744             this.getRowComposite(row).addClass("x-grid-row-over");
56745         }
56746     },
56747
56748     onRowOut : function(e, t){
56749         var row;
56750         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56751             this.getRowComposite(row).removeClass("x-grid-row-over");
56752         }
56753     },
56754
56755     renderHeaders : function(){
56756         var cm = this.cm;
56757         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56758         var cb = [], lb = [], sb = [], lsb = [], p = {};
56759         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56760             p.cellId = "x-grid-hd-0-" + i;
56761             p.splitId = "x-grid-csplit-0-" + i;
56762             p.id = cm.getColumnId(i);
56763             p.value = cm.getColumnHeader(i) || "";
56764             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56765             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56766             if(!cm.isLocked(i)){
56767                 cb[cb.length] = ct.apply(p);
56768                 sb[sb.length] = st.apply(p);
56769             }else{
56770                 lb[lb.length] = ct.apply(p);
56771                 lsb[lsb.length] = st.apply(p);
56772             }
56773         }
56774         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56775                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56776     },
56777
56778     updateHeaders : function(){
56779         var html = this.renderHeaders();
56780         this.lockedHd.update(html[0]);
56781         this.mainHd.update(html[1]);
56782     },
56783
56784     /**
56785      * Focuses the specified row.
56786      * @param {Number} row The row index
56787      */
56788     focusRow : function(row)
56789     {
56790         //Roo.log('GridView.focusRow');
56791         var x = this.scroller.dom.scrollLeft;
56792         this.focusCell(row, 0, false);
56793         this.scroller.dom.scrollLeft = x;
56794     },
56795
56796     /**
56797      * Focuses the specified cell.
56798      * @param {Number} row The row index
56799      * @param {Number} col The column index
56800      * @param {Boolean} hscroll false to disable horizontal scrolling
56801      */
56802     focusCell : function(row, col, hscroll)
56803     {
56804         //Roo.log('GridView.focusCell');
56805         var el = this.ensureVisible(row, col, hscroll);
56806         this.focusEl.alignTo(el, "tl-tl");
56807         if(Roo.isGecko){
56808             this.focusEl.focus();
56809         }else{
56810             this.focusEl.focus.defer(1, this.focusEl);
56811         }
56812     },
56813
56814     /**
56815      * Scrolls the specified cell into view
56816      * @param {Number} row The row index
56817      * @param {Number} col The column index
56818      * @param {Boolean} hscroll false to disable horizontal scrolling
56819      */
56820     ensureVisible : function(row, col, hscroll)
56821     {
56822         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56823         //return null; //disable for testing.
56824         if(typeof row != "number"){
56825             row = row.rowIndex;
56826         }
56827         if(row < 0 && row >= this.ds.getCount()){
56828             return  null;
56829         }
56830         col = (col !== undefined ? col : 0);
56831         var cm = this.grid.colModel;
56832         while(cm.isHidden(col)){
56833             col++;
56834         }
56835
56836         var el = this.getCell(row, col);
56837         if(!el){
56838             return null;
56839         }
56840         var c = this.scroller.dom;
56841
56842         var ctop = parseInt(el.offsetTop, 10);
56843         var cleft = parseInt(el.offsetLeft, 10);
56844         var cbot = ctop + el.offsetHeight;
56845         var cright = cleft + el.offsetWidth;
56846         
56847         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56848         var stop = parseInt(c.scrollTop, 10);
56849         var sleft = parseInt(c.scrollLeft, 10);
56850         var sbot = stop + ch;
56851         var sright = sleft + c.clientWidth;
56852         /*
56853         Roo.log('GridView.ensureVisible:' +
56854                 ' ctop:' + ctop +
56855                 ' c.clientHeight:' + c.clientHeight +
56856                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56857                 ' stop:' + stop +
56858                 ' cbot:' + cbot +
56859                 ' sbot:' + sbot +
56860                 ' ch:' + ch  
56861                 );
56862         */
56863         if(ctop < stop){
56864             c.scrollTop = ctop;
56865             //Roo.log("set scrolltop to ctop DISABLE?");
56866         }else if(cbot > sbot){
56867             //Roo.log("set scrolltop to cbot-ch");
56868             c.scrollTop = cbot-ch;
56869         }
56870         
56871         if(hscroll !== false){
56872             if(cleft < sleft){
56873                 c.scrollLeft = cleft;
56874             }else if(cright > sright){
56875                 c.scrollLeft = cright-c.clientWidth;
56876             }
56877         }
56878          
56879         return el;
56880     },
56881
56882     updateColumns : function(){
56883         this.grid.stopEditing();
56884         var cm = this.grid.colModel, colIds = this.getColumnIds();
56885         //var totalWidth = cm.getTotalWidth();
56886         var pos = 0;
56887         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56888             //if(cm.isHidden(i)) continue;
56889             var w = cm.getColumnWidth(i);
56890             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56891             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56892         }
56893         this.updateSplitters();
56894     },
56895
56896     generateRules : function(cm){
56897         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56898         Roo.util.CSS.removeStyleSheet(rulesId);
56899         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56900             var cid = cm.getColumnId(i);
56901             var align = '';
56902             if(cm.config[i].align){
56903                 align = 'text-align:'+cm.config[i].align+';';
56904             }
56905             var hidden = '';
56906             if(cm.isHidden(i)){
56907                 hidden = 'display:none;';
56908             }
56909             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56910             ruleBuf.push(
56911                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56912                     this.hdSelector, cid, " {\n", align, width, "}\n",
56913                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56914                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56915         }
56916         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56917     },
56918
56919     updateSplitters : function(){
56920         var cm = this.cm, s = this.getSplitters();
56921         if(s){ // splitters not created yet
56922             var pos = 0, locked = true;
56923             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56924                 if(cm.isHidden(i)) {
56925                     continue;
56926                 }
56927                 var w = cm.getColumnWidth(i); // make sure it's a number
56928                 if(!cm.isLocked(i) && locked){
56929                     pos = 0;
56930                     locked = false;
56931                 }
56932                 pos += w;
56933                 s[i].style.left = (pos-this.splitOffset) + "px";
56934             }
56935         }
56936     },
56937
56938     handleHiddenChange : function(colModel, colIndex, hidden){
56939         if(hidden){
56940             this.hideColumn(colIndex);
56941         }else{
56942             this.unhideColumn(colIndex);
56943         }
56944     },
56945
56946     hideColumn : function(colIndex){
56947         var cid = this.getColumnId(colIndex);
56948         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56949         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56950         if(Roo.isSafari){
56951             this.updateHeaders();
56952         }
56953         this.updateSplitters();
56954         this.layout();
56955     },
56956
56957     unhideColumn : function(colIndex){
56958         var cid = this.getColumnId(colIndex);
56959         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56960         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56961
56962         if(Roo.isSafari){
56963             this.updateHeaders();
56964         }
56965         this.updateSplitters();
56966         this.layout();
56967     },
56968
56969     insertRows : function(dm, firstRow, lastRow, isUpdate){
56970         if(firstRow == 0 && lastRow == dm.getCount()-1){
56971             this.refresh();
56972         }else{
56973             if(!isUpdate){
56974                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56975             }
56976             var s = this.getScrollState();
56977             var markup = this.renderRows(firstRow, lastRow);
56978             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56979             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56980             this.restoreScroll(s);
56981             if(!isUpdate){
56982                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56983                 this.syncRowHeights(firstRow, lastRow);
56984                 this.stripeRows(firstRow);
56985                 this.layout();
56986             }
56987         }
56988     },
56989
56990     bufferRows : function(markup, target, index){
56991         var before = null, trows = target.rows, tbody = target.tBodies[0];
56992         if(index < trows.length){
56993             before = trows[index];
56994         }
56995         var b = document.createElement("div");
56996         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
56997         var rows = b.firstChild.rows;
56998         for(var i = 0, len = rows.length; i < len; i++){
56999             if(before){
57000                 tbody.insertBefore(rows[0], before);
57001             }else{
57002                 tbody.appendChild(rows[0]);
57003             }
57004         }
57005         b.innerHTML = "";
57006         b = null;
57007     },
57008
57009     deleteRows : function(dm, firstRow, lastRow){
57010         if(dm.getRowCount()<1){
57011             this.fireEvent("beforerefresh", this);
57012             this.mainBody.update("");
57013             this.lockedBody.update("");
57014             this.fireEvent("refresh", this);
57015         }else{
57016             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
57017             var bt = this.getBodyTable();
57018             var tbody = bt.firstChild;
57019             var rows = bt.rows;
57020             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
57021                 tbody.removeChild(rows[firstRow]);
57022             }
57023             this.stripeRows(firstRow);
57024             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
57025         }
57026     },
57027
57028     updateRows : function(dataSource, firstRow, lastRow){
57029         var s = this.getScrollState();
57030         this.refresh();
57031         this.restoreScroll(s);
57032     },
57033
57034     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
57035         if(!noRefresh){
57036            this.refresh();
57037         }
57038         this.updateHeaderSortState();
57039     },
57040
57041     getScrollState : function(){
57042         
57043         var sb = this.scroller.dom;
57044         return {left: sb.scrollLeft, top: sb.scrollTop};
57045     },
57046
57047     stripeRows : function(startRow){
57048         if(!this.grid.stripeRows || this.ds.getCount() < 1){
57049             return;
57050         }
57051         startRow = startRow || 0;
57052         var rows = this.getBodyTable().rows;
57053         var lrows = this.getLockedTable().rows;
57054         var cls = ' x-grid-row-alt ';
57055         for(var i = startRow, len = rows.length; i < len; i++){
57056             var row = rows[i], lrow = lrows[i];
57057             var isAlt = ((i+1) % 2 == 0);
57058             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
57059             if(isAlt == hasAlt){
57060                 continue;
57061             }
57062             if(isAlt){
57063                 row.className += " x-grid-row-alt";
57064             }else{
57065                 row.className = row.className.replace("x-grid-row-alt", "");
57066             }
57067             if(lrow){
57068                 lrow.className = row.className;
57069             }
57070         }
57071     },
57072
57073     restoreScroll : function(state){
57074         //Roo.log('GridView.restoreScroll');
57075         var sb = this.scroller.dom;
57076         sb.scrollLeft = state.left;
57077         sb.scrollTop = state.top;
57078         this.syncScroll();
57079     },
57080
57081     syncScroll : function(){
57082         //Roo.log('GridView.syncScroll');
57083         var sb = this.scroller.dom;
57084         var sh = this.mainHd.dom;
57085         var bs = this.mainBody.dom;
57086         var lv = this.lockedBody.dom;
57087         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57088         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57089     },
57090
57091     handleScroll : function(e){
57092         this.syncScroll();
57093         var sb = this.scroller.dom;
57094         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57095         e.stopEvent();
57096     },
57097
57098     handleWheel : function(e){
57099         var d = e.getWheelDelta();
57100         this.scroller.dom.scrollTop -= d*22;
57101         // set this here to prevent jumpy scrolling on large tables
57102         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57103         e.stopEvent();
57104     },
57105
57106     renderRows : function(startRow, endRow){
57107         // pull in all the crap needed to render rows
57108         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57109         var colCount = cm.getColumnCount();
57110
57111         if(ds.getCount() < 1){
57112             return ["", ""];
57113         }
57114
57115         // build a map for all the columns
57116         var cs = [];
57117         for(var i = 0; i < colCount; i++){
57118             var name = cm.getDataIndex(i);
57119             cs[i] = {
57120                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57121                 renderer : cm.getRenderer(i),
57122                 id : cm.getColumnId(i),
57123                 locked : cm.isLocked(i),
57124                 has_editor : cm.isCellEditable(i)
57125             };
57126         }
57127
57128         startRow = startRow || 0;
57129         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57130
57131         // records to render
57132         var rs = ds.getRange(startRow, endRow);
57133
57134         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57135     },
57136
57137     // As much as I hate to duplicate code, this was branched because FireFox really hates
57138     // [].join("") on strings. The performance difference was substantial enough to
57139     // branch this function
57140     doRender : Roo.isGecko ?
57141             function(cs, rs, ds, startRow, colCount, stripe){
57142                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57143                 // buffers
57144                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57145                 
57146                 var hasListener = this.grid.hasListener('rowclass');
57147                 var rowcfg = {};
57148                 for(var j = 0, len = rs.length; j < len; j++){
57149                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57150                     for(var i = 0; i < colCount; i++){
57151                         c = cs[i];
57152                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57153                         p.id = c.id;
57154                         p.css = p.attr = "";
57155                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57156                         if(p.value == undefined || p.value === "") {
57157                             p.value = "&#160;";
57158                         }
57159                         if(c.has_editor){
57160                             p.css += ' x-grid-editable-cell';
57161                         }
57162                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57163                             p.css +=  ' x-grid-dirty-cell';
57164                         }
57165                         var markup = ct.apply(p);
57166                         if(!c.locked){
57167                             cb+= markup;
57168                         }else{
57169                             lcb+= markup;
57170                         }
57171                     }
57172                     var alt = [];
57173                     if(stripe && ((rowIndex+1) % 2 == 0)){
57174                         alt.push("x-grid-row-alt")
57175                     }
57176                     if(r.dirty){
57177                         alt.push(  " x-grid-dirty-row");
57178                     }
57179                     rp.cells = lcb;
57180                     if(this.getRowClass){
57181                         alt.push(this.getRowClass(r, rowIndex));
57182                     }
57183                     if (hasListener) {
57184                         rowcfg = {
57185                              
57186                             record: r,
57187                             rowIndex : rowIndex,
57188                             rowClass : ''
57189                         };
57190                         this.grid.fireEvent('rowclass', this, rowcfg);
57191                         alt.push(rowcfg.rowClass);
57192                     }
57193                     rp.alt = alt.join(" ");
57194                     lbuf+= rt.apply(rp);
57195                     rp.cells = cb;
57196                     buf+=  rt.apply(rp);
57197                 }
57198                 return [lbuf, buf];
57199             } :
57200             function(cs, rs, ds, startRow, colCount, stripe){
57201                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57202                 // buffers
57203                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57204                 var hasListener = this.grid.hasListener('rowclass');
57205  
57206                 var rowcfg = {};
57207                 for(var j = 0, len = rs.length; j < len; j++){
57208                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57209                     for(var i = 0; i < colCount; i++){
57210                         c = cs[i];
57211                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57212                         p.id = c.id;
57213                         p.css = p.attr = "";
57214                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57215                         if(p.value == undefined || p.value === "") {
57216                             p.value = "&#160;";
57217                         }
57218                         //Roo.log(c);
57219                          if(c.has_editor){
57220                             p.css += ' x-grid-editable-cell';
57221                         }
57222                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57223                             p.css += ' x-grid-dirty-cell' 
57224                         }
57225                         
57226                         var markup = ct.apply(p);
57227                         if(!c.locked){
57228                             cb[cb.length] = markup;
57229                         }else{
57230                             lcb[lcb.length] = markup;
57231                         }
57232                     }
57233                     var alt = [];
57234                     if(stripe && ((rowIndex+1) % 2 == 0)){
57235                         alt.push( "x-grid-row-alt");
57236                     }
57237                     if(r.dirty){
57238                         alt.push(" x-grid-dirty-row");
57239                     }
57240                     rp.cells = lcb;
57241                     if(this.getRowClass){
57242                         alt.push( this.getRowClass(r, rowIndex));
57243                     }
57244                     if (hasListener) {
57245                         rowcfg = {
57246                              
57247                             record: r,
57248                             rowIndex : rowIndex,
57249                             rowClass : ''
57250                         };
57251                         this.grid.fireEvent('rowclass', this, rowcfg);
57252                         alt.push(rowcfg.rowClass);
57253                     }
57254                     
57255                     rp.alt = alt.join(" ");
57256                     rp.cells = lcb.join("");
57257                     lbuf[lbuf.length] = rt.apply(rp);
57258                     rp.cells = cb.join("");
57259                     buf[buf.length] =  rt.apply(rp);
57260                 }
57261                 return [lbuf.join(""), buf.join("")];
57262             },
57263
57264     renderBody : function(){
57265         var markup = this.renderRows();
57266         var bt = this.templates.body;
57267         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57268     },
57269
57270     /**
57271      * Refreshes the grid
57272      * @param {Boolean} headersToo
57273      */
57274     refresh : function(headersToo){
57275         this.fireEvent("beforerefresh", this);
57276         this.grid.stopEditing();
57277         var result = this.renderBody();
57278         this.lockedBody.update(result[0]);
57279         this.mainBody.update(result[1]);
57280         if(headersToo === true){
57281             this.updateHeaders();
57282             this.updateColumns();
57283             this.updateSplitters();
57284             this.updateHeaderSortState();
57285         }
57286         this.syncRowHeights();
57287         this.layout();
57288         this.fireEvent("refresh", this);
57289     },
57290
57291     handleColumnMove : function(cm, oldIndex, newIndex){
57292         this.indexMap = null;
57293         var s = this.getScrollState();
57294         this.refresh(true);
57295         this.restoreScroll(s);
57296         this.afterMove(newIndex);
57297     },
57298
57299     afterMove : function(colIndex){
57300         if(this.enableMoveAnim && Roo.enableFx){
57301             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57302         }
57303         // if multisort - fix sortOrder, and reload..
57304         if (this.grid.dataSource.multiSort) {
57305             // the we can call sort again..
57306             var dm = this.grid.dataSource;
57307             var cm = this.grid.colModel;
57308             var so = [];
57309             for(var i = 0; i < cm.config.length; i++ ) {
57310                 
57311                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57312                     continue; // dont' bother, it's not in sort list or being set.
57313                 }
57314                 
57315                 so.push(cm.config[i].dataIndex);
57316             };
57317             dm.sortOrder = so;
57318             dm.load(dm.lastOptions);
57319             
57320             
57321         }
57322         
57323     },
57324
57325     updateCell : function(dm, rowIndex, dataIndex){
57326         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57327         if(typeof colIndex == "undefined"){ // not present in grid
57328             return;
57329         }
57330         var cm = this.grid.colModel;
57331         var cell = this.getCell(rowIndex, colIndex);
57332         var cellText = this.getCellText(rowIndex, colIndex);
57333
57334         var p = {
57335             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57336             id : cm.getColumnId(colIndex),
57337             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57338         };
57339         var renderer = cm.getRenderer(colIndex);
57340         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57341         if(typeof val == "undefined" || val === "") {
57342             val = "&#160;";
57343         }
57344         cellText.innerHTML = val;
57345         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57346         this.syncRowHeights(rowIndex, rowIndex);
57347     },
57348
57349     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57350         var maxWidth = 0;
57351         if(this.grid.autoSizeHeaders){
57352             var h = this.getHeaderCellMeasure(colIndex);
57353             maxWidth = Math.max(maxWidth, h.scrollWidth);
57354         }
57355         var tb, index;
57356         if(this.cm.isLocked(colIndex)){
57357             tb = this.getLockedTable();
57358             index = colIndex;
57359         }else{
57360             tb = this.getBodyTable();
57361             index = colIndex - this.cm.getLockedCount();
57362         }
57363         if(tb && tb.rows){
57364             var rows = tb.rows;
57365             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57366             for(var i = 0; i < stopIndex; i++){
57367                 var cell = rows[i].childNodes[index].firstChild;
57368                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57369             }
57370         }
57371         return maxWidth + /*margin for error in IE*/ 5;
57372     },
57373     /**
57374      * Autofit a column to its content.
57375      * @param {Number} colIndex
57376      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57377      */
57378      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57379          if(this.cm.isHidden(colIndex)){
57380              return; // can't calc a hidden column
57381          }
57382         if(forceMinSize){
57383             var cid = this.cm.getColumnId(colIndex);
57384             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57385            if(this.grid.autoSizeHeaders){
57386                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57387            }
57388         }
57389         var newWidth = this.calcColumnWidth(colIndex);
57390         this.cm.setColumnWidth(colIndex,
57391             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57392         if(!suppressEvent){
57393             this.grid.fireEvent("columnresize", colIndex, newWidth);
57394         }
57395     },
57396
57397     /**
57398      * Autofits all columns to their content and then expands to fit any extra space in the grid
57399      */
57400      autoSizeColumns : function(){
57401         var cm = this.grid.colModel;
57402         var colCount = cm.getColumnCount();
57403         for(var i = 0; i < colCount; i++){
57404             this.autoSizeColumn(i, true, true);
57405         }
57406         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57407             this.fitColumns();
57408         }else{
57409             this.updateColumns();
57410             this.layout();
57411         }
57412     },
57413
57414     /**
57415      * Autofits all columns to the grid's width proportionate with their current size
57416      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57417      */
57418     fitColumns : function(reserveScrollSpace){
57419         var cm = this.grid.colModel;
57420         var colCount = cm.getColumnCount();
57421         var cols = [];
57422         var width = 0;
57423         var i, w;
57424         for (i = 0; i < colCount; i++){
57425             if(!cm.isHidden(i) && !cm.isFixed(i)){
57426                 w = cm.getColumnWidth(i);
57427                 cols.push(i);
57428                 cols.push(w);
57429                 width += w;
57430             }
57431         }
57432         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57433         if(reserveScrollSpace){
57434             avail -= 17;
57435         }
57436         var frac = (avail - cm.getTotalWidth())/width;
57437         while (cols.length){
57438             w = cols.pop();
57439             i = cols.pop();
57440             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57441         }
57442         this.updateColumns();
57443         this.layout();
57444     },
57445
57446     onRowSelect : function(rowIndex){
57447         var row = this.getRowComposite(rowIndex);
57448         row.addClass("x-grid-row-selected");
57449     },
57450
57451     onRowDeselect : function(rowIndex){
57452         var row = this.getRowComposite(rowIndex);
57453         row.removeClass("x-grid-row-selected");
57454     },
57455
57456     onCellSelect : function(row, col){
57457         var cell = this.getCell(row, col);
57458         if(cell){
57459             Roo.fly(cell).addClass("x-grid-cell-selected");
57460         }
57461     },
57462
57463     onCellDeselect : function(row, col){
57464         var cell = this.getCell(row, col);
57465         if(cell){
57466             Roo.fly(cell).removeClass("x-grid-cell-selected");
57467         }
57468     },
57469
57470     updateHeaderSortState : function(){
57471         
57472         // sort state can be single { field: xxx, direction : yyy}
57473         // or   { xxx=>ASC , yyy : DESC ..... }
57474         
57475         var mstate = {};
57476         if (!this.ds.multiSort) { 
57477             var state = this.ds.getSortState();
57478             if(!state){
57479                 return;
57480             }
57481             mstate[state.field] = state.direction;
57482             // FIXME... - this is not used here.. but might be elsewhere..
57483             this.sortState = state;
57484             
57485         } else {
57486             mstate = this.ds.sortToggle;
57487         }
57488         //remove existing sort classes..
57489         
57490         var sc = this.sortClasses;
57491         var hds = this.el.select(this.headerSelector).removeClass(sc);
57492         
57493         for(var f in mstate) {
57494         
57495             var sortColumn = this.cm.findColumnIndex(f);
57496             
57497             if(sortColumn != -1){
57498                 var sortDir = mstate[f];        
57499                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57500             }
57501         }
57502         
57503          
57504         
57505     },
57506
57507
57508     handleHeaderClick : function(g, index,e){
57509         
57510         Roo.log("header click");
57511         
57512         if (Roo.isTouch) {
57513             // touch events on header are handled by context
57514             this.handleHdCtx(g,index,e);
57515             return;
57516         }
57517         
57518         
57519         if(this.headersDisabled){
57520             return;
57521         }
57522         var dm = g.dataSource, cm = g.colModel;
57523         if(!cm.isSortable(index)){
57524             return;
57525         }
57526         g.stopEditing();
57527         
57528         if (dm.multiSort) {
57529             // update the sortOrder
57530             var so = [];
57531             for(var i = 0; i < cm.config.length; i++ ) {
57532                 
57533                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57534                     continue; // dont' bother, it's not in sort list or being set.
57535                 }
57536                 
57537                 so.push(cm.config[i].dataIndex);
57538             };
57539             dm.sortOrder = so;
57540         }
57541         
57542         
57543         dm.sort(cm.getDataIndex(index));
57544     },
57545
57546
57547     destroy : function(){
57548         if(this.colMenu){
57549             this.colMenu.removeAll();
57550             Roo.menu.MenuMgr.unregister(this.colMenu);
57551             this.colMenu.getEl().remove();
57552             delete this.colMenu;
57553         }
57554         if(this.hmenu){
57555             this.hmenu.removeAll();
57556             Roo.menu.MenuMgr.unregister(this.hmenu);
57557             this.hmenu.getEl().remove();
57558             delete this.hmenu;
57559         }
57560         if(this.grid.enableColumnMove){
57561             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57562             if(dds){
57563                 for(var dd in dds){
57564                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57565                         var elid = dds[dd].dragElId;
57566                         dds[dd].unreg();
57567                         Roo.get(elid).remove();
57568                     } else if(dds[dd].config.isTarget){
57569                         dds[dd].proxyTop.remove();
57570                         dds[dd].proxyBottom.remove();
57571                         dds[dd].unreg();
57572                     }
57573                     if(Roo.dd.DDM.locationCache[dd]){
57574                         delete Roo.dd.DDM.locationCache[dd];
57575                     }
57576                 }
57577                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57578             }
57579         }
57580         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57581         this.bind(null, null);
57582         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57583     },
57584
57585     handleLockChange : function(){
57586         this.refresh(true);
57587     },
57588
57589     onDenyColumnLock : function(){
57590
57591     },
57592
57593     onDenyColumnHide : function(){
57594
57595     },
57596
57597     handleHdMenuClick : function(item){
57598         var index = this.hdCtxIndex;
57599         var cm = this.cm, ds = this.ds;
57600         switch(item.id){
57601             case "asc":
57602                 ds.sort(cm.getDataIndex(index), "ASC");
57603                 break;
57604             case "desc":
57605                 ds.sort(cm.getDataIndex(index), "DESC");
57606                 break;
57607             case "lock":
57608                 var lc = cm.getLockedCount();
57609                 if(cm.getColumnCount(true) <= lc+1){
57610                     this.onDenyColumnLock();
57611                     return;
57612                 }
57613                 if(lc != index){
57614                     cm.setLocked(index, true, true);
57615                     cm.moveColumn(index, lc);
57616                     this.grid.fireEvent("columnmove", index, lc);
57617                 }else{
57618                     cm.setLocked(index, true);
57619                 }
57620             break;
57621             case "unlock":
57622                 var lc = cm.getLockedCount();
57623                 if((lc-1) != index){
57624                     cm.setLocked(index, false, true);
57625                     cm.moveColumn(index, lc-1);
57626                     this.grid.fireEvent("columnmove", index, lc-1);
57627                 }else{
57628                     cm.setLocked(index, false);
57629                 }
57630             break;
57631             case 'wider': // used to expand cols on touch..
57632             case 'narrow':
57633                 var cw = cm.getColumnWidth(index);
57634                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57635                 cw = Math.max(0, cw);
57636                 cw = Math.min(cw,4000);
57637                 cm.setColumnWidth(index, cw);
57638                 break;
57639                 
57640             default:
57641                 index = cm.getIndexById(item.id.substr(4));
57642                 if(index != -1){
57643                     if(item.checked && cm.getColumnCount(true) <= 1){
57644                         this.onDenyColumnHide();
57645                         return false;
57646                     }
57647                     cm.setHidden(index, item.checked);
57648                 }
57649         }
57650         return true;
57651     },
57652
57653     beforeColMenuShow : function(){
57654         var cm = this.cm,  colCount = cm.getColumnCount();
57655         this.colMenu.removeAll();
57656         for(var i = 0; i < colCount; i++){
57657             this.colMenu.add(new Roo.menu.CheckItem({
57658                 id: "col-"+cm.getColumnId(i),
57659                 text: cm.getColumnHeader(i),
57660                 checked: !cm.isHidden(i),
57661                 hideOnClick:false
57662             }));
57663         }
57664     },
57665
57666     handleHdCtx : function(g, index, e){
57667         e.stopEvent();
57668         var hd = this.getHeaderCell(index);
57669         this.hdCtxIndex = index;
57670         var ms = this.hmenu.items, cm = this.cm;
57671         ms.get("asc").setDisabled(!cm.isSortable(index));
57672         ms.get("desc").setDisabled(!cm.isSortable(index));
57673         if(this.grid.enableColLock !== false){
57674             ms.get("lock").setDisabled(cm.isLocked(index));
57675             ms.get("unlock").setDisabled(!cm.isLocked(index));
57676         }
57677         this.hmenu.show(hd, "tl-bl");
57678     },
57679
57680     handleHdOver : function(e){
57681         var hd = this.findHeaderCell(e.getTarget());
57682         if(hd && !this.headersDisabled){
57683             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57684                this.fly(hd).addClass("x-grid-hd-over");
57685             }
57686         }
57687     },
57688
57689     handleHdOut : function(e){
57690         var hd = this.findHeaderCell(e.getTarget());
57691         if(hd){
57692             this.fly(hd).removeClass("x-grid-hd-over");
57693         }
57694     },
57695
57696     handleSplitDblClick : function(e, t){
57697         var i = this.getCellIndex(t);
57698         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57699             this.autoSizeColumn(i, true);
57700             this.layout();
57701         }
57702     },
57703
57704     render : function(){
57705
57706         var cm = this.cm;
57707         var colCount = cm.getColumnCount();
57708
57709         if(this.grid.monitorWindowResize === true){
57710             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57711         }
57712         var header = this.renderHeaders();
57713         var body = this.templates.body.apply({rows:""});
57714         var html = this.templates.master.apply({
57715             lockedBody: body,
57716             body: body,
57717             lockedHeader: header[0],
57718             header: header[1]
57719         });
57720
57721         //this.updateColumns();
57722
57723         this.grid.getGridEl().dom.innerHTML = html;
57724
57725         this.initElements();
57726         
57727         // a kludge to fix the random scolling effect in webkit
57728         this.el.on("scroll", function() {
57729             this.el.dom.scrollTop=0; // hopefully not recursive..
57730         },this);
57731
57732         this.scroller.on("scroll", this.handleScroll, this);
57733         this.lockedBody.on("mousewheel", this.handleWheel, this);
57734         this.mainBody.on("mousewheel", this.handleWheel, this);
57735
57736         this.mainHd.on("mouseover", this.handleHdOver, this);
57737         this.mainHd.on("mouseout", this.handleHdOut, this);
57738         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57739                 {delegate: "."+this.splitClass});
57740
57741         this.lockedHd.on("mouseover", this.handleHdOver, this);
57742         this.lockedHd.on("mouseout", this.handleHdOut, this);
57743         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57744                 {delegate: "."+this.splitClass});
57745
57746         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57747             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57748         }
57749
57750         this.updateSplitters();
57751
57752         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57753             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57754             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57755         }
57756
57757         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57758             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57759             this.hmenu.add(
57760                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57761                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57762             );
57763             if(this.grid.enableColLock !== false){
57764                 this.hmenu.add('-',
57765                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57766                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57767                 );
57768             }
57769             if (Roo.isTouch) {
57770                  this.hmenu.add('-',
57771                     {id:"wider", text: this.columnsWiderText},
57772                     {id:"narrow", text: this.columnsNarrowText }
57773                 );
57774                 
57775                  
57776             }
57777             
57778             if(this.grid.enableColumnHide !== false){
57779
57780                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57781                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57782                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57783
57784                 this.hmenu.add('-',
57785                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57786                 );
57787             }
57788             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57789
57790             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57791         }
57792
57793         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57794             this.dd = new Roo.grid.GridDragZone(this.grid, {
57795                 ddGroup : this.grid.ddGroup || 'GridDD'
57796             });
57797             
57798         }
57799
57800         /*
57801         for(var i = 0; i < colCount; i++){
57802             if(cm.isHidden(i)){
57803                 this.hideColumn(i);
57804             }
57805             if(cm.config[i].align){
57806                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57807                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57808             }
57809         }*/
57810         
57811         this.updateHeaderSortState();
57812
57813         this.beforeInitialResize();
57814         this.layout(true);
57815
57816         // two part rendering gives faster view to the user
57817         this.renderPhase2.defer(1, this);
57818     },
57819
57820     renderPhase2 : function(){
57821         // render the rows now
57822         this.refresh();
57823         if(this.grid.autoSizeColumns){
57824             this.autoSizeColumns();
57825         }
57826     },
57827
57828     beforeInitialResize : function(){
57829
57830     },
57831
57832     onColumnSplitterMoved : function(i, w){
57833         this.userResized = true;
57834         var cm = this.grid.colModel;
57835         cm.setColumnWidth(i, w, true);
57836         var cid = cm.getColumnId(i);
57837         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57838         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57839         this.updateSplitters();
57840         this.layout();
57841         this.grid.fireEvent("columnresize", i, w);
57842     },
57843
57844     syncRowHeights : function(startIndex, endIndex){
57845         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57846             startIndex = startIndex || 0;
57847             var mrows = this.getBodyTable().rows;
57848             var lrows = this.getLockedTable().rows;
57849             var len = mrows.length-1;
57850             endIndex = Math.min(endIndex || len, len);
57851             for(var i = startIndex; i <= endIndex; i++){
57852                 var m = mrows[i], l = lrows[i];
57853                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57854                 m.style.height = l.style.height = h + "px";
57855             }
57856         }
57857     },
57858
57859     layout : function(initialRender, is2ndPass)
57860     {
57861         var g = this.grid;
57862         var auto = g.autoHeight;
57863         var scrollOffset = 16;
57864         var c = g.getGridEl(), cm = this.cm,
57865                 expandCol = g.autoExpandColumn,
57866                 gv = this;
57867         //c.beginMeasure();
57868
57869         if(!c.dom.offsetWidth){ // display:none?
57870             if(initialRender){
57871                 this.lockedWrap.show();
57872                 this.mainWrap.show();
57873             }
57874             return;
57875         }
57876
57877         var hasLock = this.cm.isLocked(0);
57878
57879         var tbh = this.headerPanel.getHeight();
57880         var bbh = this.footerPanel.getHeight();
57881
57882         if(auto){
57883             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57884             var newHeight = ch + c.getBorderWidth("tb");
57885             if(g.maxHeight){
57886                 newHeight = Math.min(g.maxHeight, newHeight);
57887             }
57888             c.setHeight(newHeight);
57889         }
57890
57891         if(g.autoWidth){
57892             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57893         }
57894
57895         var s = this.scroller;
57896
57897         var csize = c.getSize(true);
57898
57899         this.el.setSize(csize.width, csize.height);
57900
57901         this.headerPanel.setWidth(csize.width);
57902         this.footerPanel.setWidth(csize.width);
57903
57904         var hdHeight = this.mainHd.getHeight();
57905         var vw = csize.width;
57906         var vh = csize.height - (tbh + bbh);
57907
57908         s.setSize(vw, vh);
57909
57910         var bt = this.getBodyTable();
57911         
57912         if(cm.getLockedCount() == cm.config.length){
57913             bt = this.getLockedTable();
57914         }
57915         
57916         var ltWidth = hasLock ?
57917                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57918
57919         var scrollHeight = bt.offsetHeight;
57920         var scrollWidth = ltWidth + bt.offsetWidth;
57921         var vscroll = false, hscroll = false;
57922
57923         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57924
57925         var lw = this.lockedWrap, mw = this.mainWrap;
57926         var lb = this.lockedBody, mb = this.mainBody;
57927
57928         setTimeout(function(){
57929             var t = s.dom.offsetTop;
57930             var w = s.dom.clientWidth,
57931                 h = s.dom.clientHeight;
57932
57933             lw.setTop(t);
57934             lw.setSize(ltWidth, h);
57935
57936             mw.setLeftTop(ltWidth, t);
57937             mw.setSize(w-ltWidth, h);
57938
57939             lb.setHeight(h-hdHeight);
57940             mb.setHeight(h-hdHeight);
57941
57942             if(is2ndPass !== true && !gv.userResized && expandCol){
57943                 // high speed resize without full column calculation
57944                 
57945                 var ci = cm.getIndexById(expandCol);
57946                 if (ci < 0) {
57947                     ci = cm.findColumnIndex(expandCol);
57948                 }
57949                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57950                 var expandId = cm.getColumnId(ci);
57951                 var  tw = cm.getTotalWidth(false);
57952                 var currentWidth = cm.getColumnWidth(ci);
57953                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57954                 if(currentWidth != cw){
57955                     cm.setColumnWidth(ci, cw, true);
57956                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57957                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57958                     gv.updateSplitters();
57959                     gv.layout(false, true);
57960                 }
57961             }
57962
57963             if(initialRender){
57964                 lw.show();
57965                 mw.show();
57966             }
57967             //c.endMeasure();
57968         }, 10);
57969     },
57970
57971     onWindowResize : function(){
57972         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57973             return;
57974         }
57975         this.layout();
57976     },
57977
57978     appendFooter : function(parentEl){
57979         return null;
57980     },
57981
57982     sortAscText : "Sort Ascending",
57983     sortDescText : "Sort Descending",
57984     lockText : "Lock Column",
57985     unlockText : "Unlock Column",
57986     columnsText : "Columns",
57987  
57988     columnsWiderText : "Wider",
57989     columnsNarrowText : "Thinner"
57990 });
57991
57992
57993 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
57994     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
57995     this.proxy.el.addClass('x-grid3-col-dd');
57996 };
57997
57998 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
57999     handleMouseDown : function(e){
58000
58001     },
58002
58003     callHandleMouseDown : function(e){
58004         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
58005     }
58006 });
58007 /*
58008  * Based on:
58009  * Ext JS Library 1.1.1
58010  * Copyright(c) 2006-2007, Ext JS, LLC.
58011  *
58012  * Originally Released Under LGPL - original licence link has changed is not relivant.
58013  *
58014  * Fork - LGPL
58015  * <script type="text/javascript">
58016  */
58017  
58018 // private
58019 // This is a support class used internally by the Grid components
58020 Roo.grid.SplitDragZone = function(grid, hd, hd2){
58021     this.grid = grid;
58022     this.view = grid.getView();
58023     this.proxy = this.view.resizeProxy;
58024     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
58025         "gridSplitters" + this.grid.getGridEl().id, {
58026         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
58027     });
58028     this.setHandleElId(Roo.id(hd));
58029     this.setOuterHandleElId(Roo.id(hd2));
58030     this.scroll = false;
58031 };
58032 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
58033     fly: Roo.Element.fly,
58034
58035     b4StartDrag : function(x, y){
58036         this.view.headersDisabled = true;
58037         this.proxy.setHeight(this.view.mainWrap.getHeight());
58038         var w = this.cm.getColumnWidth(this.cellIndex);
58039         var minw = Math.max(w-this.grid.minColumnWidth, 0);
58040         this.resetConstraints();
58041         this.setXConstraint(minw, 1000);
58042         this.setYConstraint(0, 0);
58043         this.minX = x - minw;
58044         this.maxX = x + 1000;
58045         this.startPos = x;
58046         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
58047     },
58048
58049
58050     handleMouseDown : function(e){
58051         ev = Roo.EventObject.setEvent(e);
58052         var t = this.fly(ev.getTarget());
58053         if(t.hasClass("x-grid-split")){
58054             this.cellIndex = this.view.getCellIndex(t.dom);
58055             this.split = t.dom;
58056             this.cm = this.grid.colModel;
58057             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
58058                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
58059             }
58060         }
58061     },
58062
58063     endDrag : function(e){
58064         this.view.headersDisabled = false;
58065         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
58066         var diff = endX - this.startPos;
58067         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
58068     },
58069
58070     autoOffset : function(){
58071         this.setDelta(0,0);
58072     }
58073 });/*
58074  * Based on:
58075  * Ext JS Library 1.1.1
58076  * Copyright(c) 2006-2007, Ext JS, LLC.
58077  *
58078  * Originally Released Under LGPL - original licence link has changed is not relivant.
58079  *
58080  * Fork - LGPL
58081  * <script type="text/javascript">
58082  */
58083  
58084 // private
58085 // This is a support class used internally by the Grid components
58086 Roo.grid.GridDragZone = function(grid, config){
58087     this.view = grid.getView();
58088     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58089     if(this.view.lockedBody){
58090         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58091         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58092     }
58093     this.scroll = false;
58094     this.grid = grid;
58095     this.ddel = document.createElement('div');
58096     this.ddel.className = 'x-grid-dd-wrap';
58097 };
58098
58099 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58100     ddGroup : "GridDD",
58101
58102     getDragData : function(e){
58103         var t = Roo.lib.Event.getTarget(e);
58104         var rowIndex = this.view.findRowIndex(t);
58105         var sm = this.grid.selModel;
58106             
58107         //Roo.log(rowIndex);
58108         
58109         if (sm.getSelectedCell) {
58110             // cell selection..
58111             if (!sm.getSelectedCell()) {
58112                 return false;
58113             }
58114             if (rowIndex != sm.getSelectedCell()[0]) {
58115                 return false;
58116             }
58117         
58118         }
58119         if (sm.getSelections && sm.getSelections().length < 1) {
58120             return false;
58121         }
58122         
58123         
58124         // before it used to all dragging of unseleted... - now we dont do that.
58125         if(rowIndex !== false){
58126             
58127             // if editorgrid.. 
58128             
58129             
58130             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58131                
58132             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58133               //  
58134             //}
58135             if (e.hasModifier()){
58136                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58137             }
58138             
58139             Roo.log("getDragData");
58140             
58141             return {
58142                 grid: this.grid,
58143                 ddel: this.ddel,
58144                 rowIndex: rowIndex,
58145                 selections: sm.getSelections ? sm.getSelections() : (
58146                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58147             };
58148         }
58149         return false;
58150     },
58151     
58152     
58153     onInitDrag : function(e){
58154         var data = this.dragData;
58155         this.ddel.innerHTML = this.grid.getDragDropText();
58156         this.proxy.update(this.ddel);
58157         // fire start drag?
58158     },
58159
58160     afterRepair : function(){
58161         this.dragging = false;
58162     },
58163
58164     getRepairXY : function(e, data){
58165         return false;
58166     },
58167
58168     onEndDrag : function(data, e){
58169         // fire end drag?
58170     },
58171
58172     onValidDrop : function(dd, e, id){
58173         // fire drag drop?
58174         this.hideProxy();
58175     },
58176
58177     beforeInvalidDrop : function(e, id){
58178
58179     }
58180 });/*
58181  * Based on:
58182  * Ext JS Library 1.1.1
58183  * Copyright(c) 2006-2007, Ext JS, LLC.
58184  *
58185  * Originally Released Under LGPL - original licence link has changed is not relivant.
58186  *
58187  * Fork - LGPL
58188  * <script type="text/javascript">
58189  */
58190  
58191
58192 /**
58193  * @class Roo.grid.ColumnModel
58194  * @extends Roo.util.Observable
58195  * This is the default implementation of a ColumnModel used by the Grid. It defines
58196  * the columns in the grid.
58197  * <br>Usage:<br>
58198  <pre><code>
58199  var colModel = new Roo.grid.ColumnModel([
58200         {header: "Ticker", width: 60, sortable: true, locked: true},
58201         {header: "Company Name", width: 150, sortable: true},
58202         {header: "Market Cap.", width: 100, sortable: true},
58203         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58204         {header: "Employees", width: 100, sortable: true, resizable: false}
58205  ]);
58206  </code></pre>
58207  * <p>
58208  
58209  * The config options listed for this class are options which may appear in each
58210  * individual column definition.
58211  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58212  * @constructor
58213  * @param {Object} config An Array of column config objects. See this class's
58214  * config objects for details.
58215 */
58216 Roo.grid.ColumnModel = function(config){
58217         /**
58218      * The config passed into the constructor
58219      */
58220     this.config = config;
58221     this.lookup = {};
58222
58223     // if no id, create one
58224     // if the column does not have a dataIndex mapping,
58225     // map it to the order it is in the config
58226     for(var i = 0, len = config.length; i < len; i++){
58227         var c = config[i];
58228         if(typeof c.dataIndex == "undefined"){
58229             c.dataIndex = i;
58230         }
58231         if(typeof c.renderer == "string"){
58232             c.renderer = Roo.util.Format[c.renderer];
58233         }
58234         if(typeof c.id == "undefined"){
58235             c.id = Roo.id();
58236         }
58237         if(c.editor && c.editor.xtype){
58238             c.editor  = Roo.factory(c.editor, Roo.grid);
58239         }
58240         if(c.editor && c.editor.isFormField){
58241             c.editor = new Roo.grid.GridEditor(c.editor);
58242         }
58243         this.lookup[c.id] = c;
58244     }
58245
58246     /**
58247      * The width of columns which have no width specified (defaults to 100)
58248      * @type Number
58249      */
58250     this.defaultWidth = 100;
58251
58252     /**
58253      * Default sortable of columns which have no sortable specified (defaults to false)
58254      * @type Boolean
58255      */
58256     this.defaultSortable = false;
58257
58258     this.addEvents({
58259         /**
58260              * @event widthchange
58261              * Fires when the width of a column changes.
58262              * @param {ColumnModel} this
58263              * @param {Number} columnIndex The column index
58264              * @param {Number} newWidth The new width
58265              */
58266             "widthchange": true,
58267         /**
58268              * @event headerchange
58269              * Fires when the text of a header changes.
58270              * @param {ColumnModel} this
58271              * @param {Number} columnIndex The column index
58272              * @param {Number} newText The new header text
58273              */
58274             "headerchange": true,
58275         /**
58276              * @event hiddenchange
58277              * Fires when a column is hidden or "unhidden".
58278              * @param {ColumnModel} this
58279              * @param {Number} columnIndex The column index
58280              * @param {Boolean} hidden true if hidden, false otherwise
58281              */
58282             "hiddenchange": true,
58283             /**
58284          * @event columnmoved
58285          * Fires when a column is moved.
58286          * @param {ColumnModel} this
58287          * @param {Number} oldIndex
58288          * @param {Number} newIndex
58289          */
58290         "columnmoved" : true,
58291         /**
58292          * @event columlockchange
58293          * Fires when a column's locked state is changed
58294          * @param {ColumnModel} this
58295          * @param {Number} colIndex
58296          * @param {Boolean} locked true if locked
58297          */
58298         "columnlockchange" : true
58299     });
58300     Roo.grid.ColumnModel.superclass.constructor.call(this);
58301 };
58302 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58303     /**
58304      * @cfg {String} header The header text to display in the Grid view.
58305      */
58306     /**
58307      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58308      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58309      * specified, the column's index is used as an index into the Record's data Array.
58310      */
58311     /**
58312      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58313      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58314      */
58315     /**
58316      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58317      * Defaults to the value of the {@link #defaultSortable} property.
58318      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58319      */
58320     /**
58321      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58322      */
58323     /**
58324      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58325      */
58326     /**
58327      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58328      */
58329     /**
58330      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58331      */
58332     /**
58333      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58334      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58335      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58336      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58337      */
58338        /**
58339      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58340      */
58341     /**
58342      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58343      */
58344     /**
58345      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58346      */
58347     /**
58348      * @cfg {String} cursor (Optional)
58349      */
58350     /**
58351      * @cfg {String} tooltip (Optional)
58352      */
58353     /**
58354      * @cfg {Number} xs (Optional)
58355      */
58356     /**
58357      * @cfg {Number} sm (Optional)
58358      */
58359     /**
58360      * @cfg {Number} md (Optional)
58361      */
58362     /**
58363      * @cfg {Number} lg (Optional)
58364      */
58365     /**
58366      * Returns the id of the column at the specified index.
58367      * @param {Number} index The column index
58368      * @return {String} the id
58369      */
58370     getColumnId : function(index){
58371         return this.config[index].id;
58372     },
58373
58374     /**
58375      * Returns the column for a specified id.
58376      * @param {String} id The column id
58377      * @return {Object} the column
58378      */
58379     getColumnById : function(id){
58380         return this.lookup[id];
58381     },
58382
58383     
58384     /**
58385      * Returns the column for a specified dataIndex.
58386      * @param {String} dataIndex The column dataIndex
58387      * @return {Object|Boolean} the column or false if not found
58388      */
58389     getColumnByDataIndex: function(dataIndex){
58390         var index = this.findColumnIndex(dataIndex);
58391         return index > -1 ? this.config[index] : false;
58392     },
58393     
58394     /**
58395      * Returns the index for a specified column id.
58396      * @param {String} id The column id
58397      * @return {Number} the index, or -1 if not found
58398      */
58399     getIndexById : function(id){
58400         for(var i = 0, len = this.config.length; i < len; i++){
58401             if(this.config[i].id == id){
58402                 return i;
58403             }
58404         }
58405         return -1;
58406     },
58407     
58408     /**
58409      * Returns the index for a specified column dataIndex.
58410      * @param {String} dataIndex The column dataIndex
58411      * @return {Number} the index, or -1 if not found
58412      */
58413     
58414     findColumnIndex : function(dataIndex){
58415         for(var i = 0, len = this.config.length; i < len; i++){
58416             if(this.config[i].dataIndex == dataIndex){
58417                 return i;
58418             }
58419         }
58420         return -1;
58421     },
58422     
58423     
58424     moveColumn : function(oldIndex, newIndex){
58425         var c = this.config[oldIndex];
58426         this.config.splice(oldIndex, 1);
58427         this.config.splice(newIndex, 0, c);
58428         this.dataMap = null;
58429         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58430     },
58431
58432     isLocked : function(colIndex){
58433         return this.config[colIndex].locked === true;
58434     },
58435
58436     setLocked : function(colIndex, value, suppressEvent){
58437         if(this.isLocked(colIndex) == value){
58438             return;
58439         }
58440         this.config[colIndex].locked = value;
58441         if(!suppressEvent){
58442             this.fireEvent("columnlockchange", this, colIndex, value);
58443         }
58444     },
58445
58446     getTotalLockedWidth : function(){
58447         var totalWidth = 0;
58448         for(var i = 0; i < this.config.length; i++){
58449             if(this.isLocked(i) && !this.isHidden(i)){
58450                 this.totalWidth += this.getColumnWidth(i);
58451             }
58452         }
58453         return totalWidth;
58454     },
58455
58456     getLockedCount : function(){
58457         for(var i = 0, len = this.config.length; i < len; i++){
58458             if(!this.isLocked(i)){
58459                 return i;
58460             }
58461         }
58462         
58463         return this.config.length;
58464     },
58465
58466     /**
58467      * Returns the number of columns.
58468      * @return {Number}
58469      */
58470     getColumnCount : function(visibleOnly){
58471         if(visibleOnly === true){
58472             var c = 0;
58473             for(var i = 0, len = this.config.length; i < len; i++){
58474                 if(!this.isHidden(i)){
58475                     c++;
58476                 }
58477             }
58478             return c;
58479         }
58480         return this.config.length;
58481     },
58482
58483     /**
58484      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58485      * @param {Function} fn
58486      * @param {Object} scope (optional)
58487      * @return {Array} result
58488      */
58489     getColumnsBy : function(fn, scope){
58490         var r = [];
58491         for(var i = 0, len = this.config.length; i < len; i++){
58492             var c = this.config[i];
58493             if(fn.call(scope||this, c, i) === true){
58494                 r[r.length] = c;
58495             }
58496         }
58497         return r;
58498     },
58499
58500     /**
58501      * Returns true if the specified column is sortable.
58502      * @param {Number} col The column index
58503      * @return {Boolean}
58504      */
58505     isSortable : function(col){
58506         if(typeof this.config[col].sortable == "undefined"){
58507             return this.defaultSortable;
58508         }
58509         return this.config[col].sortable;
58510     },
58511
58512     /**
58513      * Returns the rendering (formatting) function defined for the column.
58514      * @param {Number} col The column index.
58515      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58516      */
58517     getRenderer : function(col){
58518         if(!this.config[col].renderer){
58519             return Roo.grid.ColumnModel.defaultRenderer;
58520         }
58521         return this.config[col].renderer;
58522     },
58523
58524     /**
58525      * Sets the rendering (formatting) function for a column.
58526      * @param {Number} col The column index
58527      * @param {Function} fn The function to use to process the cell's raw data
58528      * to return HTML markup for the grid view. The render function is called with
58529      * the following parameters:<ul>
58530      * <li>Data value.</li>
58531      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58532      * <li>css A CSS style string to apply to the table cell.</li>
58533      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58534      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58535      * <li>Row index</li>
58536      * <li>Column index</li>
58537      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58538      */
58539     setRenderer : function(col, fn){
58540         this.config[col].renderer = fn;
58541     },
58542
58543     /**
58544      * Returns the width for the specified column.
58545      * @param {Number} col The column index
58546      * @return {Number}
58547      */
58548     getColumnWidth : function(col){
58549         return this.config[col].width * 1 || this.defaultWidth;
58550     },
58551
58552     /**
58553      * Sets the width for a column.
58554      * @param {Number} col The column index
58555      * @param {Number} width The new width
58556      */
58557     setColumnWidth : function(col, width, suppressEvent){
58558         this.config[col].width = width;
58559         this.totalWidth = null;
58560         if(!suppressEvent){
58561              this.fireEvent("widthchange", this, col, width);
58562         }
58563     },
58564
58565     /**
58566      * Returns the total width of all columns.
58567      * @param {Boolean} includeHidden True to include hidden column widths
58568      * @return {Number}
58569      */
58570     getTotalWidth : function(includeHidden){
58571         if(!this.totalWidth){
58572             this.totalWidth = 0;
58573             for(var i = 0, len = this.config.length; i < len; i++){
58574                 if(includeHidden || !this.isHidden(i)){
58575                     this.totalWidth += this.getColumnWidth(i);
58576                 }
58577             }
58578         }
58579         return this.totalWidth;
58580     },
58581
58582     /**
58583      * Returns the header for the specified column.
58584      * @param {Number} col The column index
58585      * @return {String}
58586      */
58587     getColumnHeader : function(col){
58588         return this.config[col].header;
58589     },
58590
58591     /**
58592      * Sets the header for a column.
58593      * @param {Number} col The column index
58594      * @param {String} header The new header
58595      */
58596     setColumnHeader : function(col, header){
58597         this.config[col].header = header;
58598         this.fireEvent("headerchange", this, col, header);
58599     },
58600
58601     /**
58602      * Returns the tooltip for the specified column.
58603      * @param {Number} col The column index
58604      * @return {String}
58605      */
58606     getColumnTooltip : function(col){
58607             return this.config[col].tooltip;
58608     },
58609     /**
58610      * Sets the tooltip for a column.
58611      * @param {Number} col The column index
58612      * @param {String} tooltip The new tooltip
58613      */
58614     setColumnTooltip : function(col, tooltip){
58615             this.config[col].tooltip = tooltip;
58616     },
58617
58618     /**
58619      * Returns the dataIndex for the specified column.
58620      * @param {Number} col The column index
58621      * @return {Number}
58622      */
58623     getDataIndex : function(col){
58624         return this.config[col].dataIndex;
58625     },
58626
58627     /**
58628      * Sets the dataIndex for a column.
58629      * @param {Number} col The column index
58630      * @param {Number} dataIndex The new dataIndex
58631      */
58632     setDataIndex : function(col, dataIndex){
58633         this.config[col].dataIndex = dataIndex;
58634     },
58635
58636     
58637     
58638     /**
58639      * Returns true if the cell is editable.
58640      * @param {Number} colIndex The column index
58641      * @param {Number} rowIndex The row index - this is nto actually used..?
58642      * @return {Boolean}
58643      */
58644     isCellEditable : function(colIndex, rowIndex){
58645         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58646     },
58647
58648     /**
58649      * Returns the editor defined for the cell/column.
58650      * return false or null to disable editing.
58651      * @param {Number} colIndex The column index
58652      * @param {Number} rowIndex The row index
58653      * @return {Object}
58654      */
58655     getCellEditor : function(colIndex, rowIndex){
58656         return this.config[colIndex].editor;
58657     },
58658
58659     /**
58660      * Sets if a column is editable.
58661      * @param {Number} col The column index
58662      * @param {Boolean} editable True if the column is editable
58663      */
58664     setEditable : function(col, editable){
58665         this.config[col].editable = editable;
58666     },
58667
58668
58669     /**
58670      * Returns true if the column is hidden.
58671      * @param {Number} colIndex The column index
58672      * @return {Boolean}
58673      */
58674     isHidden : function(colIndex){
58675         return this.config[colIndex].hidden;
58676     },
58677
58678
58679     /**
58680      * Returns true if the column width cannot be changed
58681      */
58682     isFixed : function(colIndex){
58683         return this.config[colIndex].fixed;
58684     },
58685
58686     /**
58687      * Returns true if the column can be resized
58688      * @return {Boolean}
58689      */
58690     isResizable : function(colIndex){
58691         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58692     },
58693     /**
58694      * Sets if a column is hidden.
58695      * @param {Number} colIndex The column index
58696      * @param {Boolean} hidden True if the column is hidden
58697      */
58698     setHidden : function(colIndex, hidden){
58699         this.config[colIndex].hidden = hidden;
58700         this.totalWidth = null;
58701         this.fireEvent("hiddenchange", this, colIndex, hidden);
58702     },
58703
58704     /**
58705      * Sets the editor for a column.
58706      * @param {Number} col The column index
58707      * @param {Object} editor The editor object
58708      */
58709     setEditor : function(col, editor){
58710         this.config[col].editor = editor;
58711     }
58712 });
58713
58714 Roo.grid.ColumnModel.defaultRenderer = function(value)
58715 {
58716     if(typeof value == "object") {
58717         return value;
58718     }
58719         if(typeof value == "string" && value.length < 1){
58720             return "&#160;";
58721         }
58722     
58723         return String.format("{0}", value);
58724 };
58725
58726 // Alias for backwards compatibility
58727 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58728 /*
58729  * Based on:
58730  * Ext JS Library 1.1.1
58731  * Copyright(c) 2006-2007, Ext JS, LLC.
58732  *
58733  * Originally Released Under LGPL - original licence link has changed is not relivant.
58734  *
58735  * Fork - LGPL
58736  * <script type="text/javascript">
58737  */
58738
58739 /**
58740  * @class Roo.grid.AbstractSelectionModel
58741  * @extends Roo.util.Observable
58742  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58743  * implemented by descendant classes.  This class should not be directly instantiated.
58744  * @constructor
58745  */
58746 Roo.grid.AbstractSelectionModel = function(){
58747     this.locked = false;
58748     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58749 };
58750
58751 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58752     /** @ignore Called by the grid automatically. Do not call directly. */
58753     init : function(grid){
58754         this.grid = grid;
58755         this.initEvents();
58756     },
58757
58758     /**
58759      * Locks the selections.
58760      */
58761     lock : function(){
58762         this.locked = true;
58763     },
58764
58765     /**
58766      * Unlocks the selections.
58767      */
58768     unlock : function(){
58769         this.locked = false;
58770     },
58771
58772     /**
58773      * Returns true if the selections are locked.
58774      * @return {Boolean}
58775      */
58776     isLocked : function(){
58777         return this.locked;
58778     }
58779 });/*
58780  * Based on:
58781  * Ext JS Library 1.1.1
58782  * Copyright(c) 2006-2007, Ext JS, LLC.
58783  *
58784  * Originally Released Under LGPL - original licence link has changed is not relivant.
58785  *
58786  * Fork - LGPL
58787  * <script type="text/javascript">
58788  */
58789 /**
58790  * @extends Roo.grid.AbstractSelectionModel
58791  * @class Roo.grid.RowSelectionModel
58792  * The default SelectionModel used by {@link Roo.grid.Grid}.
58793  * It supports multiple selections and keyboard selection/navigation. 
58794  * @constructor
58795  * @param {Object} config
58796  */
58797 Roo.grid.RowSelectionModel = function(config){
58798     Roo.apply(this, config);
58799     this.selections = new Roo.util.MixedCollection(false, function(o){
58800         return o.id;
58801     });
58802
58803     this.last = false;
58804     this.lastActive = false;
58805
58806     this.addEvents({
58807         /**
58808              * @event selectionchange
58809              * Fires when the selection changes
58810              * @param {SelectionModel} this
58811              */
58812             "selectionchange" : true,
58813         /**
58814              * @event afterselectionchange
58815              * Fires after the selection changes (eg. by key press or clicking)
58816              * @param {SelectionModel} this
58817              */
58818             "afterselectionchange" : true,
58819         /**
58820              * @event beforerowselect
58821              * Fires when a row is selected being selected, return false to cancel.
58822              * @param {SelectionModel} this
58823              * @param {Number} rowIndex The selected index
58824              * @param {Boolean} keepExisting False if other selections will be cleared
58825              */
58826             "beforerowselect" : true,
58827         /**
58828              * @event rowselect
58829              * Fires when a row is selected.
58830              * @param {SelectionModel} this
58831              * @param {Number} rowIndex The selected index
58832              * @param {Roo.data.Record} r The record
58833              */
58834             "rowselect" : true,
58835         /**
58836              * @event rowdeselect
58837              * Fires when a row is deselected.
58838              * @param {SelectionModel} this
58839              * @param {Number} rowIndex The selected index
58840              */
58841         "rowdeselect" : true
58842     });
58843     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58844     this.locked = false;
58845 };
58846
58847 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58848     /**
58849      * @cfg {Boolean} singleSelect
58850      * True to allow selection of only one row at a time (defaults to false)
58851      */
58852     singleSelect : false,
58853
58854     // private
58855     initEvents : function(){
58856
58857         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58858             this.grid.on("mousedown", this.handleMouseDown, this);
58859         }else{ // allow click to work like normal
58860             this.grid.on("rowclick", this.handleDragableRowClick, this);
58861         }
58862
58863         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58864             "up" : function(e){
58865                 if(!e.shiftKey){
58866                     this.selectPrevious(e.shiftKey);
58867                 }else if(this.last !== false && this.lastActive !== false){
58868                     var last = this.last;
58869                     this.selectRange(this.last,  this.lastActive-1);
58870                     this.grid.getView().focusRow(this.lastActive);
58871                     if(last !== false){
58872                         this.last = last;
58873                     }
58874                 }else{
58875                     this.selectFirstRow();
58876                 }
58877                 this.fireEvent("afterselectionchange", this);
58878             },
58879             "down" : function(e){
58880                 if(!e.shiftKey){
58881                     this.selectNext(e.shiftKey);
58882                 }else if(this.last !== false && this.lastActive !== false){
58883                     var last = this.last;
58884                     this.selectRange(this.last,  this.lastActive+1);
58885                     this.grid.getView().focusRow(this.lastActive);
58886                     if(last !== false){
58887                         this.last = last;
58888                     }
58889                 }else{
58890                     this.selectFirstRow();
58891                 }
58892                 this.fireEvent("afterselectionchange", this);
58893             },
58894             scope: this
58895         });
58896
58897         var view = this.grid.view;
58898         view.on("refresh", this.onRefresh, this);
58899         view.on("rowupdated", this.onRowUpdated, this);
58900         view.on("rowremoved", this.onRemove, this);
58901     },
58902
58903     // private
58904     onRefresh : function(){
58905         var ds = this.grid.dataSource, i, v = this.grid.view;
58906         var s = this.selections;
58907         s.each(function(r){
58908             if((i = ds.indexOfId(r.id)) != -1){
58909                 v.onRowSelect(i);
58910                 s.add(ds.getAt(i)); // updating the selection relate data
58911             }else{
58912                 s.remove(r);
58913             }
58914         });
58915     },
58916
58917     // private
58918     onRemove : function(v, index, r){
58919         this.selections.remove(r);
58920     },
58921
58922     // private
58923     onRowUpdated : function(v, index, r){
58924         if(this.isSelected(r)){
58925             v.onRowSelect(index);
58926         }
58927     },
58928
58929     /**
58930      * Select records.
58931      * @param {Array} records The records to select
58932      * @param {Boolean} keepExisting (optional) True to keep existing selections
58933      */
58934     selectRecords : function(records, keepExisting){
58935         if(!keepExisting){
58936             this.clearSelections();
58937         }
58938         var ds = this.grid.dataSource;
58939         for(var i = 0, len = records.length; i < len; i++){
58940             this.selectRow(ds.indexOf(records[i]), true);
58941         }
58942     },
58943
58944     /**
58945      * Gets the number of selected rows.
58946      * @return {Number}
58947      */
58948     getCount : function(){
58949         return this.selections.length;
58950     },
58951
58952     /**
58953      * Selects the first row in the grid.
58954      */
58955     selectFirstRow : function(){
58956         this.selectRow(0);
58957     },
58958
58959     /**
58960      * Select the last row.
58961      * @param {Boolean} keepExisting (optional) True to keep existing selections
58962      */
58963     selectLastRow : function(keepExisting){
58964         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58965     },
58966
58967     /**
58968      * Selects the row immediately following the last selected row.
58969      * @param {Boolean} keepExisting (optional) True to keep existing selections
58970      */
58971     selectNext : function(keepExisting){
58972         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58973             this.selectRow(this.last+1, keepExisting);
58974             this.grid.getView().focusRow(this.last);
58975         }
58976     },
58977
58978     /**
58979      * Selects the row that precedes the last selected row.
58980      * @param {Boolean} keepExisting (optional) True to keep existing selections
58981      */
58982     selectPrevious : function(keepExisting){
58983         if(this.last){
58984             this.selectRow(this.last-1, keepExisting);
58985             this.grid.getView().focusRow(this.last);
58986         }
58987     },
58988
58989     /**
58990      * Returns the selected records
58991      * @return {Array} Array of selected records
58992      */
58993     getSelections : function(){
58994         return [].concat(this.selections.items);
58995     },
58996
58997     /**
58998      * Returns the first selected record.
58999      * @return {Record}
59000      */
59001     getSelected : function(){
59002         return this.selections.itemAt(0);
59003     },
59004
59005
59006     /**
59007      * Clears all selections.
59008      */
59009     clearSelections : function(fast){
59010         if(this.locked) {
59011             return;
59012         }
59013         if(fast !== true){
59014             var ds = this.grid.dataSource;
59015             var s = this.selections;
59016             s.each(function(r){
59017                 this.deselectRow(ds.indexOfId(r.id));
59018             }, this);
59019             s.clear();
59020         }else{
59021             this.selections.clear();
59022         }
59023         this.last = false;
59024     },
59025
59026
59027     /**
59028      * Selects all rows.
59029      */
59030     selectAll : function(){
59031         if(this.locked) {
59032             return;
59033         }
59034         this.selections.clear();
59035         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
59036             this.selectRow(i, true);
59037         }
59038     },
59039
59040     /**
59041      * Returns True if there is a selection.
59042      * @return {Boolean}
59043      */
59044     hasSelection : function(){
59045         return this.selections.length > 0;
59046     },
59047
59048     /**
59049      * Returns True if the specified row is selected.
59050      * @param {Number/Record} record The record or index of the record to check
59051      * @return {Boolean}
59052      */
59053     isSelected : function(index){
59054         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
59055         return (r && this.selections.key(r.id) ? true : false);
59056     },
59057
59058     /**
59059      * Returns True if the specified record id is selected.
59060      * @param {String} id The id of record to check
59061      * @return {Boolean}
59062      */
59063     isIdSelected : function(id){
59064         return (this.selections.key(id) ? true : false);
59065     },
59066
59067     // private
59068     handleMouseDown : function(e, t){
59069         var view = this.grid.getView(), rowIndex;
59070         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
59071             return;
59072         };
59073         if(e.shiftKey && this.last !== false){
59074             var last = this.last;
59075             this.selectRange(last, rowIndex, e.ctrlKey);
59076             this.last = last; // reset the last
59077             view.focusRow(rowIndex);
59078         }else{
59079             var isSelected = this.isSelected(rowIndex);
59080             if(e.button !== 0 && isSelected){
59081                 view.focusRow(rowIndex);
59082             }else if(e.ctrlKey && isSelected){
59083                 this.deselectRow(rowIndex);
59084             }else if(!isSelected){
59085                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59086                 view.focusRow(rowIndex);
59087             }
59088         }
59089         this.fireEvent("afterselectionchange", this);
59090     },
59091     // private
59092     handleDragableRowClick :  function(grid, rowIndex, e) 
59093     {
59094         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59095             this.selectRow(rowIndex, false);
59096             grid.view.focusRow(rowIndex);
59097              this.fireEvent("afterselectionchange", this);
59098         }
59099     },
59100     
59101     /**
59102      * Selects multiple rows.
59103      * @param {Array} rows Array of the indexes of the row to select
59104      * @param {Boolean} keepExisting (optional) True to keep existing selections
59105      */
59106     selectRows : function(rows, keepExisting){
59107         if(!keepExisting){
59108             this.clearSelections();
59109         }
59110         for(var i = 0, len = rows.length; i < len; i++){
59111             this.selectRow(rows[i], true);
59112         }
59113     },
59114
59115     /**
59116      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59117      * @param {Number} startRow The index of the first row in the range
59118      * @param {Number} endRow The index of the last row in the range
59119      * @param {Boolean} keepExisting (optional) True to retain existing selections
59120      */
59121     selectRange : function(startRow, endRow, keepExisting){
59122         if(this.locked) {
59123             return;
59124         }
59125         if(!keepExisting){
59126             this.clearSelections();
59127         }
59128         if(startRow <= endRow){
59129             for(var i = startRow; i <= endRow; i++){
59130                 this.selectRow(i, true);
59131             }
59132         }else{
59133             for(var i = startRow; i >= endRow; i--){
59134                 this.selectRow(i, true);
59135             }
59136         }
59137     },
59138
59139     /**
59140      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59141      * @param {Number} startRow The index of the first row in the range
59142      * @param {Number} endRow The index of the last row in the range
59143      */
59144     deselectRange : function(startRow, endRow, preventViewNotify){
59145         if(this.locked) {
59146             return;
59147         }
59148         for(var i = startRow; i <= endRow; i++){
59149             this.deselectRow(i, preventViewNotify);
59150         }
59151     },
59152
59153     /**
59154      * Selects a row.
59155      * @param {Number} row The index of the row to select
59156      * @param {Boolean} keepExisting (optional) True to keep existing selections
59157      */
59158     selectRow : function(index, keepExisting, preventViewNotify){
59159         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59160             return;
59161         }
59162         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59163             if(!keepExisting || this.singleSelect){
59164                 this.clearSelections();
59165             }
59166             var r = this.grid.dataSource.getAt(index);
59167             this.selections.add(r);
59168             this.last = this.lastActive = index;
59169             if(!preventViewNotify){
59170                 this.grid.getView().onRowSelect(index);
59171             }
59172             this.fireEvent("rowselect", this, index, r);
59173             this.fireEvent("selectionchange", this);
59174         }
59175     },
59176
59177     /**
59178      * Deselects a row.
59179      * @param {Number} row The index of the row to deselect
59180      */
59181     deselectRow : function(index, preventViewNotify){
59182         if(this.locked) {
59183             return;
59184         }
59185         if(this.last == index){
59186             this.last = false;
59187         }
59188         if(this.lastActive == index){
59189             this.lastActive = false;
59190         }
59191         var r = this.grid.dataSource.getAt(index);
59192         this.selections.remove(r);
59193         if(!preventViewNotify){
59194             this.grid.getView().onRowDeselect(index);
59195         }
59196         this.fireEvent("rowdeselect", this, index);
59197         this.fireEvent("selectionchange", this);
59198     },
59199
59200     // private
59201     restoreLast : function(){
59202         if(this._last){
59203             this.last = this._last;
59204         }
59205     },
59206
59207     // private
59208     acceptsNav : function(row, col, cm){
59209         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59210     },
59211
59212     // private
59213     onEditorKey : function(field, e){
59214         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59215         if(k == e.TAB){
59216             e.stopEvent();
59217             ed.completeEdit();
59218             if(e.shiftKey){
59219                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59220             }else{
59221                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59222             }
59223         }else if(k == e.ENTER && !e.ctrlKey){
59224             e.stopEvent();
59225             ed.completeEdit();
59226             if(e.shiftKey){
59227                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59228             }else{
59229                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59230             }
59231         }else if(k == e.ESC){
59232             ed.cancelEdit();
59233         }
59234         if(newCell){
59235             g.startEditing(newCell[0], newCell[1]);
59236         }
59237     }
59238 });/*
59239  * Based on:
59240  * Ext JS Library 1.1.1
59241  * Copyright(c) 2006-2007, Ext JS, LLC.
59242  *
59243  * Originally Released Under LGPL - original licence link has changed is not relivant.
59244  *
59245  * Fork - LGPL
59246  * <script type="text/javascript">
59247  */
59248 /**
59249  * @class Roo.grid.CellSelectionModel
59250  * @extends Roo.grid.AbstractSelectionModel
59251  * This class provides the basic implementation for cell selection in a grid.
59252  * @constructor
59253  * @param {Object} config The object containing the configuration of this model.
59254  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59255  */
59256 Roo.grid.CellSelectionModel = function(config){
59257     Roo.apply(this, config);
59258
59259     this.selection = null;
59260
59261     this.addEvents({
59262         /**
59263              * @event beforerowselect
59264              * Fires before a cell is selected.
59265              * @param {SelectionModel} this
59266              * @param {Number} rowIndex The selected row index
59267              * @param {Number} colIndex The selected cell index
59268              */
59269             "beforecellselect" : true,
59270         /**
59271              * @event cellselect
59272              * Fires when a cell is selected.
59273              * @param {SelectionModel} this
59274              * @param {Number} rowIndex The selected row index
59275              * @param {Number} colIndex The selected cell index
59276              */
59277             "cellselect" : true,
59278         /**
59279              * @event selectionchange
59280              * Fires when the active selection changes.
59281              * @param {SelectionModel} this
59282              * @param {Object} selection null for no selection or an object (o) with two properties
59283                 <ul>
59284                 <li>o.record: the record object for the row the selection is in</li>
59285                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59286                 </ul>
59287              */
59288             "selectionchange" : true,
59289         /**
59290              * @event tabend
59291              * Fires when the tab (or enter) was pressed on the last editable cell
59292              * You can use this to trigger add new row.
59293              * @param {SelectionModel} this
59294              */
59295             "tabend" : true,
59296          /**
59297              * @event beforeeditnext
59298              * Fires before the next editable sell is made active
59299              * You can use this to skip to another cell or fire the tabend
59300              *    if you set cell to false
59301              * @param {Object} eventdata object : { cell : [ row, col ] } 
59302              */
59303             "beforeeditnext" : true
59304     });
59305     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59306 };
59307
59308 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59309     
59310     enter_is_tab: false,
59311
59312     /** @ignore */
59313     initEvents : function(){
59314         this.grid.on("mousedown", this.handleMouseDown, this);
59315         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59316         var view = this.grid.view;
59317         view.on("refresh", this.onViewChange, this);
59318         view.on("rowupdated", this.onRowUpdated, this);
59319         view.on("beforerowremoved", this.clearSelections, this);
59320         view.on("beforerowsinserted", this.clearSelections, this);
59321         if(this.grid.isEditor){
59322             this.grid.on("beforeedit", this.beforeEdit,  this);
59323         }
59324     },
59325
59326         //private
59327     beforeEdit : function(e){
59328         this.select(e.row, e.column, false, true, e.record);
59329     },
59330
59331         //private
59332     onRowUpdated : function(v, index, r){
59333         if(this.selection && this.selection.record == r){
59334             v.onCellSelect(index, this.selection.cell[1]);
59335         }
59336     },
59337
59338         //private
59339     onViewChange : function(){
59340         this.clearSelections(true);
59341     },
59342
59343         /**
59344          * Returns the currently selected cell,.
59345          * @return {Array} The selected cell (row, column) or null if none selected.
59346          */
59347     getSelectedCell : function(){
59348         return this.selection ? this.selection.cell : null;
59349     },
59350
59351     /**
59352      * Clears all selections.
59353      * @param {Boolean} true to prevent the gridview from being notified about the change.
59354      */
59355     clearSelections : function(preventNotify){
59356         var s = this.selection;
59357         if(s){
59358             if(preventNotify !== true){
59359                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59360             }
59361             this.selection = null;
59362             this.fireEvent("selectionchange", this, null);
59363         }
59364     },
59365
59366     /**
59367      * Returns true if there is a selection.
59368      * @return {Boolean}
59369      */
59370     hasSelection : function(){
59371         return this.selection ? true : false;
59372     },
59373
59374     /** @ignore */
59375     handleMouseDown : function(e, t){
59376         var v = this.grid.getView();
59377         if(this.isLocked()){
59378             return;
59379         };
59380         var row = v.findRowIndex(t);
59381         var cell = v.findCellIndex(t);
59382         if(row !== false && cell !== false){
59383             this.select(row, cell);
59384         }
59385     },
59386
59387     /**
59388      * Selects a cell.
59389      * @param {Number} rowIndex
59390      * @param {Number} collIndex
59391      */
59392     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59393         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59394             this.clearSelections();
59395             r = r || this.grid.dataSource.getAt(rowIndex);
59396             this.selection = {
59397                 record : r,
59398                 cell : [rowIndex, colIndex]
59399             };
59400             if(!preventViewNotify){
59401                 var v = this.grid.getView();
59402                 v.onCellSelect(rowIndex, colIndex);
59403                 if(preventFocus !== true){
59404                     v.focusCell(rowIndex, colIndex);
59405                 }
59406             }
59407             this.fireEvent("cellselect", this, rowIndex, colIndex);
59408             this.fireEvent("selectionchange", this, this.selection);
59409         }
59410     },
59411
59412         //private
59413     isSelectable : function(rowIndex, colIndex, cm){
59414         return !cm.isHidden(colIndex);
59415     },
59416
59417     /** @ignore */
59418     handleKeyDown : function(e){
59419         //Roo.log('Cell Sel Model handleKeyDown');
59420         if(!e.isNavKeyPress()){
59421             return;
59422         }
59423         var g = this.grid, s = this.selection;
59424         if(!s){
59425             e.stopEvent();
59426             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59427             if(cell){
59428                 this.select(cell[0], cell[1]);
59429             }
59430             return;
59431         }
59432         var sm = this;
59433         var walk = function(row, col, step){
59434             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59435         };
59436         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59437         var newCell;
59438
59439       
59440
59441         switch(k){
59442             case e.TAB:
59443                 // handled by onEditorKey
59444                 if (g.isEditor && g.editing) {
59445                     return;
59446                 }
59447                 if(e.shiftKey) {
59448                     newCell = walk(r, c-1, -1);
59449                 } else {
59450                     newCell = walk(r, c+1, 1);
59451                 }
59452                 break;
59453             
59454             case e.DOWN:
59455                newCell = walk(r+1, c, 1);
59456                 break;
59457             
59458             case e.UP:
59459                 newCell = walk(r-1, c, -1);
59460                 break;
59461             
59462             case e.RIGHT:
59463                 newCell = walk(r, c+1, 1);
59464                 break;
59465             
59466             case e.LEFT:
59467                 newCell = walk(r, c-1, -1);
59468                 break;
59469             
59470             case e.ENTER:
59471                 
59472                 if(g.isEditor && !g.editing){
59473                    g.startEditing(r, c);
59474                    e.stopEvent();
59475                    return;
59476                 }
59477                 
59478                 
59479              break;
59480         };
59481         if(newCell){
59482             this.select(newCell[0], newCell[1]);
59483             e.stopEvent();
59484             
59485         }
59486     },
59487
59488     acceptsNav : function(row, col, cm){
59489         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59490     },
59491     /**
59492      * Selects a cell.
59493      * @param {Number} field (not used) - as it's normally used as a listener
59494      * @param {Number} e - event - fake it by using
59495      *
59496      * var e = Roo.EventObjectImpl.prototype;
59497      * e.keyCode = e.TAB
59498      *
59499      * 
59500      */
59501     onEditorKey : function(field, e){
59502         
59503         var k = e.getKey(),
59504             newCell,
59505             g = this.grid,
59506             ed = g.activeEditor,
59507             forward = false;
59508         ///Roo.log('onEditorKey' + k);
59509         
59510         
59511         if (this.enter_is_tab && k == e.ENTER) {
59512             k = e.TAB;
59513         }
59514         
59515         if(k == e.TAB){
59516             if(e.shiftKey){
59517                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59518             }else{
59519                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59520                 forward = true;
59521             }
59522             
59523             e.stopEvent();
59524             
59525         } else if(k == e.ENTER &&  !e.ctrlKey){
59526             ed.completeEdit();
59527             e.stopEvent();
59528             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59529         
59530                 } else if(k == e.ESC){
59531             ed.cancelEdit();
59532         }
59533                 
59534         if (newCell) {
59535             var ecall = { cell : newCell, forward : forward };
59536             this.fireEvent('beforeeditnext', ecall );
59537             newCell = ecall.cell;
59538                         forward = ecall.forward;
59539         }
59540                 
59541         if(newCell){
59542             //Roo.log('next cell after edit');
59543             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59544         } else if (forward) {
59545             // tabbed past last
59546             this.fireEvent.defer(100, this, ['tabend',this]);
59547         }
59548     }
59549 });/*
59550  * Based on:
59551  * Ext JS Library 1.1.1
59552  * Copyright(c) 2006-2007, Ext JS, LLC.
59553  *
59554  * Originally Released Under LGPL - original licence link has changed is not relivant.
59555  *
59556  * Fork - LGPL
59557  * <script type="text/javascript">
59558  */
59559  
59560 /**
59561  * @class Roo.grid.EditorGrid
59562  * @extends Roo.grid.Grid
59563  * Class for creating and editable grid.
59564  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59565  * The container MUST have some type of size defined for the grid to fill. The container will be 
59566  * automatically set to position relative if it isn't already.
59567  * @param {Object} dataSource The data model to bind to
59568  * @param {Object} colModel The column model with info about this grid's columns
59569  */
59570 Roo.grid.EditorGrid = function(container, config){
59571     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59572     this.getGridEl().addClass("xedit-grid");
59573
59574     if(!this.selModel){
59575         this.selModel = new Roo.grid.CellSelectionModel();
59576     }
59577
59578     this.activeEditor = null;
59579
59580         this.addEvents({
59581             /**
59582              * @event beforeedit
59583              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59584              * <ul style="padding:5px;padding-left:16px;">
59585              * <li>grid - This grid</li>
59586              * <li>record - The record being edited</li>
59587              * <li>field - The field name being edited</li>
59588              * <li>value - The value for the field being edited.</li>
59589              * <li>row - The grid row index</li>
59590              * <li>column - The grid column index</li>
59591              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59592              * </ul>
59593              * @param {Object} e An edit event (see above for description)
59594              */
59595             "beforeedit" : true,
59596             /**
59597              * @event afteredit
59598              * Fires after a cell is edited. <br />
59599              * <ul style="padding:5px;padding-left:16px;">
59600              * <li>grid - This grid</li>
59601              * <li>record - The record being edited</li>
59602              * <li>field - The field name being edited</li>
59603              * <li>value - The value being set</li>
59604              * <li>originalValue - The original value for the field, before the edit.</li>
59605              * <li>row - The grid row index</li>
59606              * <li>column - The grid column index</li>
59607              * </ul>
59608              * @param {Object} e An edit event (see above for description)
59609              */
59610             "afteredit" : true,
59611             /**
59612              * @event validateedit
59613              * Fires after a cell is edited, but before the value is set in the record. 
59614          * You can use this to modify the value being set in the field, Return false
59615              * to cancel the change. The edit event object has the following properties <br />
59616              * <ul style="padding:5px;padding-left:16px;">
59617          * <li>editor - This editor</li>
59618              * <li>grid - This grid</li>
59619              * <li>record - The record being edited</li>
59620              * <li>field - The field name being edited</li>
59621              * <li>value - The value being set</li>
59622              * <li>originalValue - The original value for the field, before the edit.</li>
59623              * <li>row - The grid row index</li>
59624              * <li>column - The grid column index</li>
59625              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59626              * </ul>
59627              * @param {Object} e An edit event (see above for description)
59628              */
59629             "validateedit" : true
59630         });
59631     this.on("bodyscroll", this.stopEditing,  this);
59632     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59633 };
59634
59635 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59636     /**
59637      * @cfg {Number} clicksToEdit
59638      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59639      */
59640     clicksToEdit: 2,
59641
59642     // private
59643     isEditor : true,
59644     // private
59645     trackMouseOver: false, // causes very odd FF errors
59646
59647     onCellDblClick : function(g, row, col){
59648         this.startEditing(row, col);
59649     },
59650
59651     onEditComplete : function(ed, value, startValue){
59652         this.editing = false;
59653         this.activeEditor = null;
59654         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59655         var r = ed.record;
59656         var field = this.colModel.getDataIndex(ed.col);
59657         var e = {
59658             grid: this,
59659             record: r,
59660             field: field,
59661             originalValue: startValue,
59662             value: value,
59663             row: ed.row,
59664             column: ed.col,
59665             cancel:false,
59666             editor: ed
59667         };
59668         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59669         cell.show();
59670           
59671         if(String(value) !== String(startValue)){
59672             
59673             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59674                 r.set(field, e.value);
59675                 // if we are dealing with a combo box..
59676                 // then we also set the 'name' colum to be the displayField
59677                 if (ed.field.displayField && ed.field.name) {
59678                     r.set(ed.field.name, ed.field.el.dom.value);
59679                 }
59680                 
59681                 delete e.cancel; //?? why!!!
59682                 this.fireEvent("afteredit", e);
59683             }
59684         } else {
59685             this.fireEvent("afteredit", e); // always fire it!
59686         }
59687         this.view.focusCell(ed.row, ed.col);
59688     },
59689
59690     /**
59691      * Starts editing the specified for the specified row/column
59692      * @param {Number} rowIndex
59693      * @param {Number} colIndex
59694      */
59695     startEditing : function(row, col){
59696         this.stopEditing();
59697         if(this.colModel.isCellEditable(col, row)){
59698             this.view.ensureVisible(row, col, true);
59699           
59700             var r = this.dataSource.getAt(row);
59701             var field = this.colModel.getDataIndex(col);
59702             var cell = Roo.get(this.view.getCell(row,col));
59703             var e = {
59704                 grid: this,
59705                 record: r,
59706                 field: field,
59707                 value: r.data[field],
59708                 row: row,
59709                 column: col,
59710                 cancel:false 
59711             };
59712             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59713                 this.editing = true;
59714                 var ed = this.colModel.getCellEditor(col, row);
59715                 
59716                 if (!ed) {
59717                     return;
59718                 }
59719                 if(!ed.rendered){
59720                     ed.render(ed.parentEl || document.body);
59721                 }
59722                 ed.field.reset();
59723                
59724                 cell.hide();
59725                 
59726                 (function(){ // complex but required for focus issues in safari, ie and opera
59727                     ed.row = row;
59728                     ed.col = col;
59729                     ed.record = r;
59730                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59731                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59732                     this.activeEditor = ed;
59733                     var v = r.data[field];
59734                     ed.startEdit(this.view.getCell(row, col), v);
59735                     // combo's with 'displayField and name set
59736                     if (ed.field.displayField && ed.field.name) {
59737                         ed.field.el.dom.value = r.data[ed.field.name];
59738                     }
59739                     
59740                     
59741                 }).defer(50, this);
59742             }
59743         }
59744     },
59745         
59746     /**
59747      * Stops any active editing
59748      */
59749     stopEditing : function(){
59750         if(this.activeEditor){
59751             this.activeEditor.completeEdit();
59752         }
59753         this.activeEditor = null;
59754     },
59755         
59756          /**
59757      * Called to get grid's drag proxy text, by default returns this.ddText.
59758      * @return {String}
59759      */
59760     getDragDropText : function(){
59761         var count = this.selModel.getSelectedCell() ? 1 : 0;
59762         return String.format(this.ddText, count, count == 1 ? '' : 's');
59763     }
59764         
59765 });/*
59766  * Based on:
59767  * Ext JS Library 1.1.1
59768  * Copyright(c) 2006-2007, Ext JS, LLC.
59769  *
59770  * Originally Released Under LGPL - original licence link has changed is not relivant.
59771  *
59772  * Fork - LGPL
59773  * <script type="text/javascript">
59774  */
59775
59776 // private - not really -- you end up using it !
59777 // This is a support class used internally by the Grid components
59778
59779 /**
59780  * @class Roo.grid.GridEditor
59781  * @extends Roo.Editor
59782  * Class for creating and editable grid elements.
59783  * @param {Object} config any settings (must include field)
59784  */
59785 Roo.grid.GridEditor = function(field, config){
59786     if (!config && field.field) {
59787         config = field;
59788         field = Roo.factory(config.field, Roo.form);
59789     }
59790     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59791     field.monitorTab = false;
59792 };
59793
59794 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59795     
59796     /**
59797      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59798      */
59799     
59800     alignment: "tl-tl",
59801     autoSize: "width",
59802     hideEl : false,
59803     cls: "x-small-editor x-grid-editor",
59804     shim:false,
59805     shadow:"frame"
59806 });/*
59807  * Based on:
59808  * Ext JS Library 1.1.1
59809  * Copyright(c) 2006-2007, Ext JS, LLC.
59810  *
59811  * Originally Released Under LGPL - original licence link has changed is not relivant.
59812  *
59813  * Fork - LGPL
59814  * <script type="text/javascript">
59815  */
59816   
59817
59818   
59819 Roo.grid.PropertyRecord = Roo.data.Record.create([
59820     {name:'name',type:'string'},  'value'
59821 ]);
59822
59823
59824 Roo.grid.PropertyStore = function(grid, source){
59825     this.grid = grid;
59826     this.store = new Roo.data.Store({
59827         recordType : Roo.grid.PropertyRecord
59828     });
59829     this.store.on('update', this.onUpdate,  this);
59830     if(source){
59831         this.setSource(source);
59832     }
59833     Roo.grid.PropertyStore.superclass.constructor.call(this);
59834 };
59835
59836
59837
59838 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59839     setSource : function(o){
59840         this.source = o;
59841         this.store.removeAll();
59842         var data = [];
59843         for(var k in o){
59844             if(this.isEditableValue(o[k])){
59845                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59846             }
59847         }
59848         this.store.loadRecords({records: data}, {}, true);
59849     },
59850
59851     onUpdate : function(ds, record, type){
59852         if(type == Roo.data.Record.EDIT){
59853             var v = record.data['value'];
59854             var oldValue = record.modified['value'];
59855             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59856                 this.source[record.id] = v;
59857                 record.commit();
59858                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59859             }else{
59860                 record.reject();
59861             }
59862         }
59863     },
59864
59865     getProperty : function(row){
59866        return this.store.getAt(row);
59867     },
59868
59869     isEditableValue: function(val){
59870         if(val && val instanceof Date){
59871             return true;
59872         }else if(typeof val == 'object' || typeof val == 'function'){
59873             return false;
59874         }
59875         return true;
59876     },
59877
59878     setValue : function(prop, value){
59879         this.source[prop] = value;
59880         this.store.getById(prop).set('value', value);
59881     },
59882
59883     getSource : function(){
59884         return this.source;
59885     }
59886 });
59887
59888 Roo.grid.PropertyColumnModel = function(grid, store){
59889     this.grid = grid;
59890     var g = Roo.grid;
59891     g.PropertyColumnModel.superclass.constructor.call(this, [
59892         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59893         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59894     ]);
59895     this.store = store;
59896     this.bselect = Roo.DomHelper.append(document.body, {
59897         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59898             {tag: 'option', value: 'true', html: 'true'},
59899             {tag: 'option', value: 'false', html: 'false'}
59900         ]
59901     });
59902     Roo.id(this.bselect);
59903     var f = Roo.form;
59904     this.editors = {
59905         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59906         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59907         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59908         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59909         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59910     };
59911     this.renderCellDelegate = this.renderCell.createDelegate(this);
59912     this.renderPropDelegate = this.renderProp.createDelegate(this);
59913 };
59914
59915 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59916     
59917     
59918     nameText : 'Name',
59919     valueText : 'Value',
59920     
59921     dateFormat : 'm/j/Y',
59922     
59923     
59924     renderDate : function(dateVal){
59925         return dateVal.dateFormat(this.dateFormat);
59926     },
59927
59928     renderBool : function(bVal){
59929         return bVal ? 'true' : 'false';
59930     },
59931
59932     isCellEditable : function(colIndex, rowIndex){
59933         return colIndex == 1;
59934     },
59935
59936     getRenderer : function(col){
59937         return col == 1 ?
59938             this.renderCellDelegate : this.renderPropDelegate;
59939     },
59940
59941     renderProp : function(v){
59942         return this.getPropertyName(v);
59943     },
59944
59945     renderCell : function(val){
59946         var rv = val;
59947         if(val instanceof Date){
59948             rv = this.renderDate(val);
59949         }else if(typeof val == 'boolean'){
59950             rv = this.renderBool(val);
59951         }
59952         return Roo.util.Format.htmlEncode(rv);
59953     },
59954
59955     getPropertyName : function(name){
59956         var pn = this.grid.propertyNames;
59957         return pn && pn[name] ? pn[name] : name;
59958     },
59959
59960     getCellEditor : function(colIndex, rowIndex){
59961         var p = this.store.getProperty(rowIndex);
59962         var n = p.data['name'], val = p.data['value'];
59963         
59964         if(typeof(this.grid.customEditors[n]) == 'string'){
59965             return this.editors[this.grid.customEditors[n]];
59966         }
59967         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59968             return this.grid.customEditors[n];
59969         }
59970         if(val instanceof Date){
59971             return this.editors['date'];
59972         }else if(typeof val == 'number'){
59973             return this.editors['number'];
59974         }else if(typeof val == 'boolean'){
59975             return this.editors['boolean'];
59976         }else{
59977             return this.editors['string'];
59978         }
59979     }
59980 });
59981
59982 /**
59983  * @class Roo.grid.PropertyGrid
59984  * @extends Roo.grid.EditorGrid
59985  * This class represents the  interface of a component based property grid control.
59986  * <br><br>Usage:<pre><code>
59987  var grid = new Roo.grid.PropertyGrid("my-container-id", {
59988       
59989  });
59990  // set any options
59991  grid.render();
59992  * </code></pre>
59993   
59994  * @constructor
59995  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59996  * The container MUST have some type of size defined for the grid to fill. The container will be
59997  * automatically set to position relative if it isn't already.
59998  * @param {Object} config A config object that sets properties on this grid.
59999  */
60000 Roo.grid.PropertyGrid = function(container, config){
60001     config = config || {};
60002     var store = new Roo.grid.PropertyStore(this);
60003     this.store = store;
60004     var cm = new Roo.grid.PropertyColumnModel(this, store);
60005     store.store.sort('name', 'ASC');
60006     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
60007         ds: store.store,
60008         cm: cm,
60009         enableColLock:false,
60010         enableColumnMove:false,
60011         stripeRows:false,
60012         trackMouseOver: false,
60013         clicksToEdit:1
60014     }, config));
60015     this.getGridEl().addClass('x-props-grid');
60016     this.lastEditRow = null;
60017     this.on('columnresize', this.onColumnResize, this);
60018     this.addEvents({
60019          /**
60020              * @event beforepropertychange
60021              * Fires before a property changes (return false to stop?)
60022              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60023              * @param {String} id Record Id
60024              * @param {String} newval New Value
60025          * @param {String} oldval Old Value
60026              */
60027         "beforepropertychange": true,
60028         /**
60029              * @event propertychange
60030              * Fires after a property changes
60031              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60032              * @param {String} id Record Id
60033              * @param {String} newval New Value
60034          * @param {String} oldval Old Value
60035              */
60036         "propertychange": true
60037     });
60038     this.customEditors = this.customEditors || {};
60039 };
60040 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
60041     
60042      /**
60043      * @cfg {Object} customEditors map of colnames=> custom editors.
60044      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
60045      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
60046      * false disables editing of the field.
60047          */
60048     
60049       /**
60050      * @cfg {Object} propertyNames map of property Names to their displayed value
60051          */
60052     
60053     render : function(){
60054         Roo.grid.PropertyGrid.superclass.render.call(this);
60055         this.autoSize.defer(100, this);
60056     },
60057
60058     autoSize : function(){
60059         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
60060         if(this.view){
60061             this.view.fitColumns();
60062         }
60063     },
60064
60065     onColumnResize : function(){
60066         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
60067         this.autoSize();
60068     },
60069     /**
60070      * Sets the data for the Grid
60071      * accepts a Key => Value object of all the elements avaiable.
60072      * @param {Object} data  to appear in grid.
60073      */
60074     setSource : function(source){
60075         this.store.setSource(source);
60076         //this.autoSize();
60077     },
60078     /**
60079      * Gets all the data from the grid.
60080      * @return {Object} data  data stored in grid
60081      */
60082     getSource : function(){
60083         return this.store.getSource();
60084     }
60085 });/*
60086   
60087  * Licence LGPL
60088  
60089  */
60090  
60091 /**
60092  * @class Roo.grid.Calendar
60093  * @extends Roo.util.Grid
60094  * This class extends the Grid to provide a calendar widget
60095  * <br><br>Usage:<pre><code>
60096  var grid = new Roo.grid.Calendar("my-container-id", {
60097      ds: myDataStore,
60098      cm: myColModel,
60099      selModel: mySelectionModel,
60100      autoSizeColumns: true,
60101      monitorWindowResize: false,
60102      trackMouseOver: true
60103      eventstore : real data store..
60104  });
60105  // set any options
60106  grid.render();
60107   
60108   * @constructor
60109  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60110  * The container MUST have some type of size defined for the grid to fill. The container will be
60111  * automatically set to position relative if it isn't already.
60112  * @param {Object} config A config object that sets properties on this grid.
60113  */
60114 Roo.grid.Calendar = function(container, config){
60115         // initialize the container
60116         this.container = Roo.get(container);
60117         this.container.update("");
60118         this.container.setStyle("overflow", "hidden");
60119     this.container.addClass('x-grid-container');
60120
60121     this.id = this.container.id;
60122
60123     Roo.apply(this, config);
60124     // check and correct shorthanded configs
60125     
60126     var rows = [];
60127     var d =1;
60128     for (var r = 0;r < 6;r++) {
60129         
60130         rows[r]=[];
60131         for (var c =0;c < 7;c++) {
60132             rows[r][c]= '';
60133         }
60134     }
60135     if (this.eventStore) {
60136         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60137         this.eventStore.on('load',this.onLoad, this);
60138         this.eventStore.on('beforeload',this.clearEvents, this);
60139          
60140     }
60141     
60142     this.dataSource = new Roo.data.Store({
60143             proxy: new Roo.data.MemoryProxy(rows),
60144             reader: new Roo.data.ArrayReader({}, [
60145                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60146     });
60147
60148     this.dataSource.load();
60149     this.ds = this.dataSource;
60150     this.ds.xmodule = this.xmodule || false;
60151     
60152     
60153     var cellRender = function(v,x,r)
60154     {
60155         return String.format(
60156             '<div class="fc-day  fc-widget-content"><div>' +
60157                 '<div class="fc-event-container"></div>' +
60158                 '<div class="fc-day-number">{0}</div>'+
60159                 
60160                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60161             '</div></div>', v);
60162     
60163     }
60164     
60165     
60166     this.colModel = new Roo.grid.ColumnModel( [
60167         {
60168             xtype: 'ColumnModel',
60169             xns: Roo.grid,
60170             dataIndex : 'weekday0',
60171             header : 'Sunday',
60172             renderer : cellRender
60173         },
60174         {
60175             xtype: 'ColumnModel',
60176             xns: Roo.grid,
60177             dataIndex : 'weekday1',
60178             header : 'Monday',
60179             renderer : cellRender
60180         },
60181         {
60182             xtype: 'ColumnModel',
60183             xns: Roo.grid,
60184             dataIndex : 'weekday2',
60185             header : 'Tuesday',
60186             renderer : cellRender
60187         },
60188         {
60189             xtype: 'ColumnModel',
60190             xns: Roo.grid,
60191             dataIndex : 'weekday3',
60192             header : 'Wednesday',
60193             renderer : cellRender
60194         },
60195         {
60196             xtype: 'ColumnModel',
60197             xns: Roo.grid,
60198             dataIndex : 'weekday4',
60199             header : 'Thursday',
60200             renderer : cellRender
60201         },
60202         {
60203             xtype: 'ColumnModel',
60204             xns: Roo.grid,
60205             dataIndex : 'weekday5',
60206             header : 'Friday',
60207             renderer : cellRender
60208         },
60209         {
60210             xtype: 'ColumnModel',
60211             xns: Roo.grid,
60212             dataIndex : 'weekday6',
60213             header : 'Saturday',
60214             renderer : cellRender
60215         }
60216     ]);
60217     this.cm = this.colModel;
60218     this.cm.xmodule = this.xmodule || false;
60219  
60220         
60221           
60222     //this.selModel = new Roo.grid.CellSelectionModel();
60223     //this.sm = this.selModel;
60224     //this.selModel.init(this);
60225     
60226     
60227     if(this.width){
60228         this.container.setWidth(this.width);
60229     }
60230
60231     if(this.height){
60232         this.container.setHeight(this.height);
60233     }
60234     /** @private */
60235         this.addEvents({
60236         // raw events
60237         /**
60238          * @event click
60239          * The raw click event for the entire grid.
60240          * @param {Roo.EventObject} e
60241          */
60242         "click" : true,
60243         /**
60244          * @event dblclick
60245          * The raw dblclick event for the entire grid.
60246          * @param {Roo.EventObject} e
60247          */
60248         "dblclick" : true,
60249         /**
60250          * @event contextmenu
60251          * The raw contextmenu event for the entire grid.
60252          * @param {Roo.EventObject} e
60253          */
60254         "contextmenu" : true,
60255         /**
60256          * @event mousedown
60257          * The raw mousedown event for the entire grid.
60258          * @param {Roo.EventObject} e
60259          */
60260         "mousedown" : true,
60261         /**
60262          * @event mouseup
60263          * The raw mouseup event for the entire grid.
60264          * @param {Roo.EventObject} e
60265          */
60266         "mouseup" : true,
60267         /**
60268          * @event mouseover
60269          * The raw mouseover event for the entire grid.
60270          * @param {Roo.EventObject} e
60271          */
60272         "mouseover" : true,
60273         /**
60274          * @event mouseout
60275          * The raw mouseout event for the entire grid.
60276          * @param {Roo.EventObject} e
60277          */
60278         "mouseout" : true,
60279         /**
60280          * @event keypress
60281          * The raw keypress event for the entire grid.
60282          * @param {Roo.EventObject} e
60283          */
60284         "keypress" : true,
60285         /**
60286          * @event keydown
60287          * The raw keydown event for the entire grid.
60288          * @param {Roo.EventObject} e
60289          */
60290         "keydown" : true,
60291
60292         // custom events
60293
60294         /**
60295          * @event cellclick
60296          * Fires when a cell is clicked
60297          * @param {Grid} this
60298          * @param {Number} rowIndex
60299          * @param {Number} columnIndex
60300          * @param {Roo.EventObject} e
60301          */
60302         "cellclick" : true,
60303         /**
60304          * @event celldblclick
60305          * Fires when a cell is double clicked
60306          * @param {Grid} this
60307          * @param {Number} rowIndex
60308          * @param {Number} columnIndex
60309          * @param {Roo.EventObject} e
60310          */
60311         "celldblclick" : true,
60312         /**
60313          * @event rowclick
60314          * Fires when a row is clicked
60315          * @param {Grid} this
60316          * @param {Number} rowIndex
60317          * @param {Roo.EventObject} e
60318          */
60319         "rowclick" : true,
60320         /**
60321          * @event rowdblclick
60322          * Fires when a row is double clicked
60323          * @param {Grid} this
60324          * @param {Number} rowIndex
60325          * @param {Roo.EventObject} e
60326          */
60327         "rowdblclick" : true,
60328         /**
60329          * @event headerclick
60330          * Fires when a header is clicked
60331          * @param {Grid} this
60332          * @param {Number} columnIndex
60333          * @param {Roo.EventObject} e
60334          */
60335         "headerclick" : true,
60336         /**
60337          * @event headerdblclick
60338          * Fires when a header cell is double clicked
60339          * @param {Grid} this
60340          * @param {Number} columnIndex
60341          * @param {Roo.EventObject} e
60342          */
60343         "headerdblclick" : true,
60344         /**
60345          * @event rowcontextmenu
60346          * Fires when a row is right clicked
60347          * @param {Grid} this
60348          * @param {Number} rowIndex
60349          * @param {Roo.EventObject} e
60350          */
60351         "rowcontextmenu" : true,
60352         /**
60353          * @event cellcontextmenu
60354          * Fires when a cell is right clicked
60355          * @param {Grid} this
60356          * @param {Number} rowIndex
60357          * @param {Number} cellIndex
60358          * @param {Roo.EventObject} e
60359          */
60360          "cellcontextmenu" : true,
60361         /**
60362          * @event headercontextmenu
60363          * Fires when a header is right clicked
60364          * @param {Grid} this
60365          * @param {Number} columnIndex
60366          * @param {Roo.EventObject} e
60367          */
60368         "headercontextmenu" : true,
60369         /**
60370          * @event bodyscroll
60371          * Fires when the body element is scrolled
60372          * @param {Number} scrollLeft
60373          * @param {Number} scrollTop
60374          */
60375         "bodyscroll" : true,
60376         /**
60377          * @event columnresize
60378          * Fires when the user resizes a column
60379          * @param {Number} columnIndex
60380          * @param {Number} newSize
60381          */
60382         "columnresize" : true,
60383         /**
60384          * @event columnmove
60385          * Fires when the user moves a column
60386          * @param {Number} oldIndex
60387          * @param {Number} newIndex
60388          */
60389         "columnmove" : true,
60390         /**
60391          * @event startdrag
60392          * Fires when row(s) start being dragged
60393          * @param {Grid} this
60394          * @param {Roo.GridDD} dd The drag drop object
60395          * @param {event} e The raw browser event
60396          */
60397         "startdrag" : true,
60398         /**
60399          * @event enddrag
60400          * Fires when a drag operation is complete
60401          * @param {Grid} this
60402          * @param {Roo.GridDD} dd The drag drop object
60403          * @param {event} e The raw browser event
60404          */
60405         "enddrag" : true,
60406         /**
60407          * @event dragdrop
60408          * Fires when dragged row(s) are dropped on a valid DD target
60409          * @param {Grid} this
60410          * @param {Roo.GridDD} dd The drag drop object
60411          * @param {String} targetId The target drag drop object
60412          * @param {event} e The raw browser event
60413          */
60414         "dragdrop" : true,
60415         /**
60416          * @event dragover
60417          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60418          * @param {Grid} this
60419          * @param {Roo.GridDD} dd The drag drop object
60420          * @param {String} targetId The target drag drop object
60421          * @param {event} e The raw browser event
60422          */
60423         "dragover" : true,
60424         /**
60425          * @event dragenter
60426          *  Fires when the dragged row(s) first cross another DD target while being dragged
60427          * @param {Grid} this
60428          * @param {Roo.GridDD} dd The drag drop object
60429          * @param {String} targetId The target drag drop object
60430          * @param {event} e The raw browser event
60431          */
60432         "dragenter" : true,
60433         /**
60434          * @event dragout
60435          * Fires when the dragged row(s) leave another DD target while being dragged
60436          * @param {Grid} this
60437          * @param {Roo.GridDD} dd The drag drop object
60438          * @param {String} targetId The target drag drop object
60439          * @param {event} e The raw browser event
60440          */
60441         "dragout" : true,
60442         /**
60443          * @event rowclass
60444          * Fires when a row is rendered, so you can change add a style to it.
60445          * @param {GridView} gridview   The grid view
60446          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60447          */
60448         'rowclass' : true,
60449
60450         /**
60451          * @event render
60452          * Fires when the grid is rendered
60453          * @param {Grid} grid
60454          */
60455         'render' : true,
60456             /**
60457              * @event select
60458              * Fires when a date is selected
60459              * @param {DatePicker} this
60460              * @param {Date} date The selected date
60461              */
60462         'select': true,
60463         /**
60464              * @event monthchange
60465              * Fires when the displayed month changes 
60466              * @param {DatePicker} this
60467              * @param {Date} date The selected month
60468              */
60469         'monthchange': true,
60470         /**
60471              * @event evententer
60472              * Fires when mouse over an event
60473              * @param {Calendar} this
60474              * @param {event} Event
60475              */
60476         'evententer': true,
60477         /**
60478              * @event eventleave
60479              * Fires when the mouse leaves an
60480              * @param {Calendar} this
60481              * @param {event}
60482              */
60483         'eventleave': true,
60484         /**
60485              * @event eventclick
60486              * Fires when the mouse click an
60487              * @param {Calendar} this
60488              * @param {event}
60489              */
60490         'eventclick': true,
60491         /**
60492              * @event eventrender
60493              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60494              * @param {Calendar} this
60495              * @param {data} data to be modified
60496              */
60497         'eventrender': true
60498         
60499     });
60500
60501     Roo.grid.Grid.superclass.constructor.call(this);
60502     this.on('render', function() {
60503         this.view.el.addClass('x-grid-cal'); 
60504         
60505         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60506
60507     },this);
60508     
60509     if (!Roo.grid.Calendar.style) {
60510         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60511             
60512             
60513             '.x-grid-cal .x-grid-col' :  {
60514                 height: 'auto !important',
60515                 'vertical-align': 'top'
60516             },
60517             '.x-grid-cal  .fc-event-hori' : {
60518                 height: '14px'
60519             }
60520              
60521             
60522         }, Roo.id());
60523     }
60524
60525     
60526     
60527 };
60528 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60529     /**
60530      * @cfg {Store} eventStore The store that loads events.
60531      */
60532     eventStore : 25,
60533
60534      
60535     activeDate : false,
60536     startDay : 0,
60537     autoWidth : true,
60538     monitorWindowResize : false,
60539
60540     
60541     resizeColumns : function() {
60542         var col = (this.view.el.getWidth() / 7) - 3;
60543         // loop through cols, and setWidth
60544         for(var i =0 ; i < 7 ; i++){
60545             this.cm.setColumnWidth(i, col);
60546         }
60547     },
60548      setDate :function(date) {
60549         
60550         Roo.log('setDate?');
60551         
60552         this.resizeColumns();
60553         var vd = this.activeDate;
60554         this.activeDate = date;
60555 //        if(vd && this.el){
60556 //            var t = date.getTime();
60557 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60558 //                Roo.log('using add remove');
60559 //                
60560 //                this.fireEvent('monthchange', this, date);
60561 //                
60562 //                this.cells.removeClass("fc-state-highlight");
60563 //                this.cells.each(function(c){
60564 //                   if(c.dateValue == t){
60565 //                       c.addClass("fc-state-highlight");
60566 //                       setTimeout(function(){
60567 //                            try{c.dom.firstChild.focus();}catch(e){}
60568 //                       }, 50);
60569 //                       return false;
60570 //                   }
60571 //                   return true;
60572 //                });
60573 //                return;
60574 //            }
60575 //        }
60576         
60577         var days = date.getDaysInMonth();
60578         
60579         var firstOfMonth = date.getFirstDateOfMonth();
60580         var startingPos = firstOfMonth.getDay()-this.startDay;
60581         
60582         if(startingPos < this.startDay){
60583             startingPos += 7;
60584         }
60585         
60586         var pm = date.add(Date.MONTH, -1);
60587         var prevStart = pm.getDaysInMonth()-startingPos;
60588 //        
60589         
60590         
60591         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60592         
60593         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60594         //this.cells.addClassOnOver('fc-state-hover');
60595         
60596         var cells = this.cells.elements;
60597         var textEls = this.textNodes;
60598         
60599         //Roo.each(cells, function(cell){
60600         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60601         //});
60602         
60603         days += startingPos;
60604
60605         // convert everything to numbers so it's fast
60606         var day = 86400000;
60607         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60608         //Roo.log(d);
60609         //Roo.log(pm);
60610         //Roo.log(prevStart);
60611         
60612         var today = new Date().clearTime().getTime();
60613         var sel = date.clearTime().getTime();
60614         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60615         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60616         var ddMatch = this.disabledDatesRE;
60617         var ddText = this.disabledDatesText;
60618         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60619         var ddaysText = this.disabledDaysText;
60620         var format = this.format;
60621         
60622         var setCellClass = function(cal, cell){
60623             
60624             //Roo.log('set Cell Class');
60625             cell.title = "";
60626             var t = d.getTime();
60627             
60628             //Roo.log(d);
60629             
60630             
60631             cell.dateValue = t;
60632             if(t == today){
60633                 cell.className += " fc-today";
60634                 cell.className += " fc-state-highlight";
60635                 cell.title = cal.todayText;
60636             }
60637             if(t == sel){
60638                 // disable highlight in other month..
60639                 cell.className += " fc-state-highlight";
60640                 
60641             }
60642             // disabling
60643             if(t < min) {
60644                 //cell.className = " fc-state-disabled";
60645                 cell.title = cal.minText;
60646                 return;
60647             }
60648             if(t > max) {
60649                 //cell.className = " fc-state-disabled";
60650                 cell.title = cal.maxText;
60651                 return;
60652             }
60653             if(ddays){
60654                 if(ddays.indexOf(d.getDay()) != -1){
60655                     // cell.title = ddaysText;
60656                    // cell.className = " fc-state-disabled";
60657                 }
60658             }
60659             if(ddMatch && format){
60660                 var fvalue = d.dateFormat(format);
60661                 if(ddMatch.test(fvalue)){
60662                     cell.title = ddText.replace("%0", fvalue);
60663                    cell.className = " fc-state-disabled";
60664                 }
60665             }
60666             
60667             if (!cell.initialClassName) {
60668                 cell.initialClassName = cell.dom.className;
60669             }
60670             
60671             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60672         };
60673
60674         var i = 0;
60675         
60676         for(; i < startingPos; i++) {
60677             cells[i].dayName =  (++prevStart);
60678             Roo.log(textEls[i]);
60679             d.setDate(d.getDate()+1);
60680             
60681             //cells[i].className = "fc-past fc-other-month";
60682             setCellClass(this, cells[i]);
60683         }
60684         
60685         var intDay = 0;
60686         
60687         for(; i < days; i++){
60688             intDay = i - startingPos + 1;
60689             cells[i].dayName =  (intDay);
60690             d.setDate(d.getDate()+1);
60691             
60692             cells[i].className = ''; // "x-date-active";
60693             setCellClass(this, cells[i]);
60694         }
60695         var extraDays = 0;
60696         
60697         for(; i < 42; i++) {
60698             //textEls[i].innerHTML = (++extraDays);
60699             
60700             d.setDate(d.getDate()+1);
60701             cells[i].dayName = (++extraDays);
60702             cells[i].className = "fc-future fc-other-month";
60703             setCellClass(this, cells[i]);
60704         }
60705         
60706         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60707         
60708         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60709         
60710         // this will cause all the cells to mis
60711         var rows= [];
60712         var i =0;
60713         for (var r = 0;r < 6;r++) {
60714             for (var c =0;c < 7;c++) {
60715                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60716             }    
60717         }
60718         
60719         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60720         for(i=0;i<cells.length;i++) {
60721             
60722             this.cells.elements[i].dayName = cells[i].dayName ;
60723             this.cells.elements[i].className = cells[i].className;
60724             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60725             this.cells.elements[i].title = cells[i].title ;
60726             this.cells.elements[i].dateValue = cells[i].dateValue ;
60727         }
60728         
60729         
60730         
60731         
60732         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60733         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60734         
60735         ////if(totalRows != 6){
60736             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60737            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60738        // }
60739         
60740         this.fireEvent('monthchange', this, date);
60741         
60742         
60743     },
60744  /**
60745      * Returns the grid's SelectionModel.
60746      * @return {SelectionModel}
60747      */
60748     getSelectionModel : function(){
60749         if(!this.selModel){
60750             this.selModel = new Roo.grid.CellSelectionModel();
60751         }
60752         return this.selModel;
60753     },
60754
60755     load: function() {
60756         this.eventStore.load()
60757         
60758         
60759         
60760     },
60761     
60762     findCell : function(dt) {
60763         dt = dt.clearTime().getTime();
60764         var ret = false;
60765         this.cells.each(function(c){
60766             //Roo.log("check " +c.dateValue + '?=' + dt);
60767             if(c.dateValue == dt){
60768                 ret = c;
60769                 return false;
60770             }
60771             return true;
60772         });
60773         
60774         return ret;
60775     },
60776     
60777     findCells : function(rec) {
60778         var s = rec.data.start_dt.clone().clearTime().getTime();
60779        // Roo.log(s);
60780         var e= rec.data.end_dt.clone().clearTime().getTime();
60781        // Roo.log(e);
60782         var ret = [];
60783         this.cells.each(function(c){
60784              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60785             
60786             if(c.dateValue > e){
60787                 return ;
60788             }
60789             if(c.dateValue < s){
60790                 return ;
60791             }
60792             ret.push(c);
60793         });
60794         
60795         return ret;    
60796     },
60797     
60798     findBestRow: function(cells)
60799     {
60800         var ret = 0;
60801         
60802         for (var i =0 ; i < cells.length;i++) {
60803             ret  = Math.max(cells[i].rows || 0,ret);
60804         }
60805         return ret;
60806         
60807     },
60808     
60809     
60810     addItem : function(rec)
60811     {
60812         // look for vertical location slot in
60813         var cells = this.findCells(rec);
60814         
60815         rec.row = this.findBestRow(cells);
60816         
60817         // work out the location.
60818         
60819         var crow = false;
60820         var rows = [];
60821         for(var i =0; i < cells.length; i++) {
60822             if (!crow) {
60823                 crow = {
60824                     start : cells[i],
60825                     end :  cells[i]
60826                 };
60827                 continue;
60828             }
60829             if (crow.start.getY() == cells[i].getY()) {
60830                 // on same row.
60831                 crow.end = cells[i];
60832                 continue;
60833             }
60834             // different row.
60835             rows.push(crow);
60836             crow = {
60837                 start: cells[i],
60838                 end : cells[i]
60839             };
60840             
60841         }
60842         
60843         rows.push(crow);
60844         rec.els = [];
60845         rec.rows = rows;
60846         rec.cells = cells;
60847         for (var i = 0; i < cells.length;i++) {
60848             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60849             
60850         }
60851         
60852         
60853     },
60854     
60855     clearEvents: function() {
60856         
60857         if (!this.eventStore.getCount()) {
60858             return;
60859         }
60860         // reset number of rows in cells.
60861         Roo.each(this.cells.elements, function(c){
60862             c.rows = 0;
60863         });
60864         
60865         this.eventStore.each(function(e) {
60866             this.clearEvent(e);
60867         },this);
60868         
60869     },
60870     
60871     clearEvent : function(ev)
60872     {
60873         if (ev.els) {
60874             Roo.each(ev.els, function(el) {
60875                 el.un('mouseenter' ,this.onEventEnter, this);
60876                 el.un('mouseleave' ,this.onEventLeave, this);
60877                 el.remove();
60878             },this);
60879             ev.els = [];
60880         }
60881     },
60882     
60883     
60884     renderEvent : function(ev,ctr) {
60885         if (!ctr) {
60886              ctr = this.view.el.select('.fc-event-container',true).first();
60887         }
60888         
60889          
60890         this.clearEvent(ev);
60891             //code
60892        
60893         
60894         
60895         ev.els = [];
60896         var cells = ev.cells;
60897         var rows = ev.rows;
60898         this.fireEvent('eventrender', this, ev);
60899         
60900         for(var i =0; i < rows.length; i++) {
60901             
60902             cls = '';
60903             if (i == 0) {
60904                 cls += ' fc-event-start';
60905             }
60906             if ((i+1) == rows.length) {
60907                 cls += ' fc-event-end';
60908             }
60909             
60910             //Roo.log(ev.data);
60911             // how many rows should it span..
60912             var cg = this.eventTmpl.append(ctr,Roo.apply({
60913                 fccls : cls
60914                 
60915             }, ev.data) , true);
60916             
60917             
60918             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60919             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60920             cg.on('click', this.onEventClick, this, ev);
60921             
60922             ev.els.push(cg);
60923             
60924             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60925             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60926             //Roo.log(cg);
60927              
60928             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60929             cg.setWidth(ebox.right - sbox.x -2);
60930         }
60931     },
60932     
60933     renderEvents: function()
60934     {   
60935         // first make sure there is enough space..
60936         
60937         if (!this.eventTmpl) {
60938             this.eventTmpl = new Roo.Template(
60939                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60940                     '<div class="fc-event-inner">' +
60941                         '<span class="fc-event-time">{time}</span>' +
60942                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60943                     '</div>' +
60944                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60945                 '</div>'
60946             );
60947                 
60948         }
60949                
60950         
60951         
60952         this.cells.each(function(c) {
60953             //Roo.log(c.select('.fc-day-content div',true).first());
60954             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60955         });
60956         
60957         var ctr = this.view.el.select('.fc-event-container',true).first();
60958         
60959         var cls;
60960         this.eventStore.each(function(ev){
60961             
60962             this.renderEvent(ev);
60963              
60964              
60965         }, this);
60966         this.view.layout();
60967         
60968     },
60969     
60970     onEventEnter: function (e, el,event,d) {
60971         this.fireEvent('evententer', this, el, event);
60972     },
60973     
60974     onEventLeave: function (e, el,event,d) {
60975         this.fireEvent('eventleave', this, el, event);
60976     },
60977     
60978     onEventClick: function (e, el,event,d) {
60979         this.fireEvent('eventclick', this, el, event);
60980     },
60981     
60982     onMonthChange: function () {
60983         this.store.load();
60984     },
60985     
60986     onLoad: function () {
60987         
60988         //Roo.log('calendar onload');
60989 //         
60990         if(this.eventStore.getCount() > 0){
60991             
60992            
60993             
60994             this.eventStore.each(function(d){
60995                 
60996                 
60997                 // FIXME..
60998                 var add =   d.data;
60999                 if (typeof(add.end_dt) == 'undefined')  {
61000                     Roo.log("Missing End time in calendar data: ");
61001                     Roo.log(d);
61002                     return;
61003                 }
61004                 if (typeof(add.start_dt) == 'undefined')  {
61005                     Roo.log("Missing Start time in calendar data: ");
61006                     Roo.log(d);
61007                     return;
61008                 }
61009                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
61010                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
61011                 add.id = add.id || d.id;
61012                 add.title = add.title || '??';
61013                 
61014                 this.addItem(d);
61015                 
61016              
61017             },this);
61018         }
61019         
61020         this.renderEvents();
61021     }
61022     
61023
61024 });
61025 /*
61026  grid : {
61027                 xtype: 'Grid',
61028                 xns: Roo.grid,
61029                 listeners : {
61030                     render : function ()
61031                     {
61032                         _this.grid = this;
61033                         
61034                         if (!this.view.el.hasClass('course-timesheet')) {
61035                             this.view.el.addClass('course-timesheet');
61036                         }
61037                         if (this.tsStyle) {
61038                             this.ds.load({});
61039                             return; 
61040                         }
61041                         Roo.log('width');
61042                         Roo.log(_this.grid.view.el.getWidth());
61043                         
61044                         
61045                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
61046                             '.course-timesheet .x-grid-row' : {
61047                                 height: '80px'
61048                             },
61049                             '.x-grid-row td' : {
61050                                 'vertical-align' : 0
61051                             },
61052                             '.course-edit-link' : {
61053                                 'color' : 'blue',
61054                                 'text-overflow' : 'ellipsis',
61055                                 'overflow' : 'hidden',
61056                                 'white-space' : 'nowrap',
61057                                 'cursor' : 'pointer'
61058                             },
61059                             '.sub-link' : {
61060                                 'color' : 'green'
61061                             },
61062                             '.de-act-sup-link' : {
61063                                 'color' : 'purple',
61064                                 'text-decoration' : 'line-through'
61065                             },
61066                             '.de-act-link' : {
61067                                 'color' : 'red',
61068                                 'text-decoration' : 'line-through'
61069                             },
61070                             '.course-timesheet .course-highlight' : {
61071                                 'border-top-style': 'dashed !important',
61072                                 'border-bottom-bottom': 'dashed !important'
61073                             },
61074                             '.course-timesheet .course-item' : {
61075                                 'font-family'   : 'tahoma, arial, helvetica',
61076                                 'font-size'     : '11px',
61077                                 'overflow'      : 'hidden',
61078                                 'padding-left'  : '10px',
61079                                 'padding-right' : '10px',
61080                                 'padding-top' : '10px' 
61081                             }
61082                             
61083                         }, Roo.id());
61084                                 this.ds.load({});
61085                     }
61086                 },
61087                 autoWidth : true,
61088                 monitorWindowResize : false,
61089                 cellrenderer : function(v,x,r)
61090                 {
61091                     return v;
61092                 },
61093                 sm : {
61094                     xtype: 'CellSelectionModel',
61095                     xns: Roo.grid
61096                 },
61097                 dataSource : {
61098                     xtype: 'Store',
61099                     xns: Roo.data,
61100                     listeners : {
61101                         beforeload : function (_self, options)
61102                         {
61103                             options.params = options.params || {};
61104                             options.params._month = _this.monthField.getValue();
61105                             options.params.limit = 9999;
61106                             options.params['sort'] = 'when_dt';    
61107                             options.params['dir'] = 'ASC';    
61108                             this.proxy.loadResponse = this.loadResponse;
61109                             Roo.log("load?");
61110                             //this.addColumns();
61111                         },
61112                         load : function (_self, records, options)
61113                         {
61114                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61115                                 // if you click on the translation.. you can edit it...
61116                                 var el = Roo.get(this);
61117                                 var id = el.dom.getAttribute('data-id');
61118                                 var d = el.dom.getAttribute('data-date');
61119                                 var t = el.dom.getAttribute('data-time');
61120                                 //var id = this.child('span').dom.textContent;
61121                                 
61122                                 //Roo.log(this);
61123                                 Pman.Dialog.CourseCalendar.show({
61124                                     id : id,
61125                                     when_d : d,
61126                                     when_t : t,
61127                                     productitem_active : id ? 1 : 0
61128                                 }, function() {
61129                                     _this.grid.ds.load({});
61130                                 });
61131                            
61132                            });
61133                            
61134                            _this.panel.fireEvent('resize', [ '', '' ]);
61135                         }
61136                     },
61137                     loadResponse : function(o, success, response){
61138                             // this is overridden on before load..
61139                             
61140                             Roo.log("our code?");       
61141                             //Roo.log(success);
61142                             //Roo.log(response)
61143                             delete this.activeRequest;
61144                             if(!success){
61145                                 this.fireEvent("loadexception", this, o, response);
61146                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61147                                 return;
61148                             }
61149                             var result;
61150                             try {
61151                                 result = o.reader.read(response);
61152                             }catch(e){
61153                                 Roo.log("load exception?");
61154                                 this.fireEvent("loadexception", this, o, response, e);
61155                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61156                                 return;
61157                             }
61158                             Roo.log("ready...");        
61159                             // loop through result.records;
61160                             // and set this.tdate[date] = [] << array of records..
61161                             _this.tdata  = {};
61162                             Roo.each(result.records, function(r){
61163                                 //Roo.log(r.data);
61164                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61165                                     _this.tdata[r.data.when_dt.format('j')] = [];
61166                                 }
61167                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61168                             });
61169                             
61170                             //Roo.log(_this.tdata);
61171                             
61172                             result.records = [];
61173                             result.totalRecords = 6;
61174                     
61175                             // let's generate some duumy records for the rows.
61176                             //var st = _this.dateField.getValue();
61177                             
61178                             // work out monday..
61179                             //st = st.add(Date.DAY, -1 * st.format('w'));
61180                             
61181                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61182                             
61183                             var firstOfMonth = date.getFirstDayOfMonth();
61184                             var days = date.getDaysInMonth();
61185                             var d = 1;
61186                             var firstAdded = false;
61187                             for (var i = 0; i < result.totalRecords ; i++) {
61188                                 //var d= st.add(Date.DAY, i);
61189                                 var row = {};
61190                                 var added = 0;
61191                                 for(var w = 0 ; w < 7 ; w++){
61192                                     if(!firstAdded && firstOfMonth != w){
61193                                         continue;
61194                                     }
61195                                     if(d > days){
61196                                         continue;
61197                                     }
61198                                     firstAdded = true;
61199                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61200                                     row['weekday'+w] = String.format(
61201                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61202                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61203                                                     d,
61204                                                     date.format('Y-m-')+dd
61205                                                 );
61206                                     added++;
61207                                     if(typeof(_this.tdata[d]) != 'undefined'){
61208                                         Roo.each(_this.tdata[d], function(r){
61209                                             var is_sub = '';
61210                                             var deactive = '';
61211                                             var id = r.id;
61212                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61213                                             if(r.parent_id*1>0){
61214                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61215                                                 id = r.parent_id;
61216                                             }
61217                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61218                                                 deactive = 'de-act-link';
61219                                             }
61220                                             
61221                                             row['weekday'+w] += String.format(
61222                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61223                                                     id, //0
61224                                                     r.product_id_name, //1
61225                                                     r.when_dt.format('h:ia'), //2
61226                                                     is_sub, //3
61227                                                     deactive, //4
61228                                                     desc // 5
61229                                             );
61230                                         });
61231                                     }
61232                                     d++;
61233                                 }
61234                                 
61235                                 // only do this if something added..
61236                                 if(added > 0){ 
61237                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61238                                 }
61239                                 
61240                                 
61241                                 // push it twice. (second one with an hour..
61242                                 
61243                             }
61244                             //Roo.log(result);
61245                             this.fireEvent("load", this, o, o.request.arg);
61246                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61247                         },
61248                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61249                     proxy : {
61250                         xtype: 'HttpProxy',
61251                         xns: Roo.data,
61252                         method : 'GET',
61253                         url : baseURL + '/Roo/Shop_course.php'
61254                     },
61255                     reader : {
61256                         xtype: 'JsonReader',
61257                         xns: Roo.data,
61258                         id : 'id',
61259                         fields : [
61260                             {
61261                                 'name': 'id',
61262                                 'type': 'int'
61263                             },
61264                             {
61265                                 'name': 'when_dt',
61266                                 'type': 'string'
61267                             },
61268                             {
61269                                 'name': 'end_dt',
61270                                 'type': 'string'
61271                             },
61272                             {
61273                                 'name': 'parent_id',
61274                                 'type': 'int'
61275                             },
61276                             {
61277                                 'name': 'product_id',
61278                                 'type': 'int'
61279                             },
61280                             {
61281                                 'name': 'productitem_id',
61282                                 'type': 'int'
61283                             },
61284                             {
61285                                 'name': 'guid',
61286                                 'type': 'int'
61287                             }
61288                         ]
61289                     }
61290                 },
61291                 toolbar : {
61292                     xtype: 'Toolbar',
61293                     xns: Roo,
61294                     items : [
61295                         {
61296                             xtype: 'Button',
61297                             xns: Roo.Toolbar,
61298                             listeners : {
61299                                 click : function (_self, e)
61300                                 {
61301                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61302                                     sd.setMonth(sd.getMonth()-1);
61303                                     _this.monthField.setValue(sd.format('Y-m-d'));
61304                                     _this.grid.ds.load({});
61305                                 }
61306                             },
61307                             text : "Back"
61308                         },
61309                         {
61310                             xtype: 'Separator',
61311                             xns: Roo.Toolbar
61312                         },
61313                         {
61314                             xtype: 'MonthField',
61315                             xns: Roo.form,
61316                             listeners : {
61317                                 render : function (_self)
61318                                 {
61319                                     _this.monthField = _self;
61320                                    // _this.monthField.set  today
61321                                 },
61322                                 select : function (combo, date)
61323                                 {
61324                                     _this.grid.ds.load({});
61325                                 }
61326                             },
61327                             value : (function() { return new Date(); })()
61328                         },
61329                         {
61330                             xtype: 'Separator',
61331                             xns: Roo.Toolbar
61332                         },
61333                         {
61334                             xtype: 'TextItem',
61335                             xns: Roo.Toolbar,
61336                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61337                         },
61338                         {
61339                             xtype: 'Fill',
61340                             xns: Roo.Toolbar
61341                         },
61342                         {
61343                             xtype: 'Button',
61344                             xns: Roo.Toolbar,
61345                             listeners : {
61346                                 click : function (_self, e)
61347                                 {
61348                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61349                                     sd.setMonth(sd.getMonth()+1);
61350                                     _this.monthField.setValue(sd.format('Y-m-d'));
61351                                     _this.grid.ds.load({});
61352                                 }
61353                             },
61354                             text : "Next"
61355                         }
61356                     ]
61357                 },
61358                  
61359             }
61360         };
61361         
61362         *//*
61363  * Based on:
61364  * Ext JS Library 1.1.1
61365  * Copyright(c) 2006-2007, Ext JS, LLC.
61366  *
61367  * Originally Released Under LGPL - original licence link has changed is not relivant.
61368  *
61369  * Fork - LGPL
61370  * <script type="text/javascript">
61371  */
61372  
61373 /**
61374  * @class Roo.LoadMask
61375  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61376  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61377  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61378  * element's UpdateManager load indicator and will be destroyed after the initial load.
61379  * @constructor
61380  * Create a new LoadMask
61381  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61382  * @param {Object} config The config object
61383  */
61384 Roo.LoadMask = function(el, config){
61385     this.el = Roo.get(el);
61386     Roo.apply(this, config);
61387     if(this.store){
61388         this.store.on('beforeload', this.onBeforeLoad, this);
61389         this.store.on('load', this.onLoad, this);
61390         this.store.on('loadexception', this.onLoadException, this);
61391         this.removeMask = false;
61392     }else{
61393         var um = this.el.getUpdateManager();
61394         um.showLoadIndicator = false; // disable the default indicator
61395         um.on('beforeupdate', this.onBeforeLoad, this);
61396         um.on('update', this.onLoad, this);
61397         um.on('failure', this.onLoad, this);
61398         this.removeMask = true;
61399     }
61400 };
61401
61402 Roo.LoadMask.prototype = {
61403     /**
61404      * @cfg {Boolean} removeMask
61405      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61406      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61407      */
61408     /**
61409      * @cfg {String} msg
61410      * The text to display in a centered loading message box (defaults to 'Loading...')
61411      */
61412     msg : 'Loading...',
61413     /**
61414      * @cfg {String} msgCls
61415      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61416      */
61417     msgCls : 'x-mask-loading',
61418
61419     /**
61420      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61421      * @type Boolean
61422      */
61423     disabled: false,
61424
61425     /**
61426      * Disables the mask to prevent it from being displayed
61427      */
61428     disable : function(){
61429        this.disabled = true;
61430     },
61431
61432     /**
61433      * Enables the mask so that it can be displayed
61434      */
61435     enable : function(){
61436         this.disabled = false;
61437     },
61438     
61439     onLoadException : function()
61440     {
61441         Roo.log(arguments);
61442         
61443         if (typeof(arguments[3]) != 'undefined') {
61444             Roo.MessageBox.alert("Error loading",arguments[3]);
61445         } 
61446         /*
61447         try {
61448             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61449                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61450             }   
61451         } catch(e) {
61452             
61453         }
61454         */
61455     
61456         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61457     },
61458     // private
61459     onLoad : function()
61460     {
61461         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61462     },
61463
61464     // private
61465     onBeforeLoad : function(){
61466         if(!this.disabled){
61467             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61468         }
61469     },
61470
61471     // private
61472     destroy : function(){
61473         if(this.store){
61474             this.store.un('beforeload', this.onBeforeLoad, this);
61475             this.store.un('load', this.onLoad, this);
61476             this.store.un('loadexception', this.onLoadException, this);
61477         }else{
61478             var um = this.el.getUpdateManager();
61479             um.un('beforeupdate', this.onBeforeLoad, this);
61480             um.un('update', this.onLoad, this);
61481             um.un('failure', this.onLoad, this);
61482         }
61483     }
61484 };/*
61485  * Based on:
61486  * Ext JS Library 1.1.1
61487  * Copyright(c) 2006-2007, Ext JS, LLC.
61488  *
61489  * Originally Released Under LGPL - original licence link has changed is not relivant.
61490  *
61491  * Fork - LGPL
61492  * <script type="text/javascript">
61493  */
61494
61495
61496 /**
61497  * @class Roo.XTemplate
61498  * @extends Roo.Template
61499  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61500 <pre><code>
61501 var t = new Roo.XTemplate(
61502         '&lt;select name="{name}"&gt;',
61503                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61504         '&lt;/select&gt;'
61505 );
61506  
61507 // then append, applying the master template values
61508  </code></pre>
61509  *
61510  * Supported features:
61511  *
61512  *  Tags:
61513
61514 <pre><code>
61515       {a_variable} - output encoded.
61516       {a_variable.format:("Y-m-d")} - call a method on the variable
61517       {a_variable:raw} - unencoded output
61518       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61519       {a_variable:this.method_on_template(...)} - call a method on the template object.
61520  
61521 </code></pre>
61522  *  The tpl tag:
61523 <pre><code>
61524         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61525         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61526         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61527         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61528   
61529         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61530         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61531 </code></pre>
61532  *      
61533  */
61534 Roo.XTemplate = function()
61535 {
61536     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61537     if (this.html) {
61538         this.compile();
61539     }
61540 };
61541
61542
61543 Roo.extend(Roo.XTemplate, Roo.Template, {
61544
61545     /**
61546      * The various sub templates
61547      */
61548     tpls : false,
61549     /**
61550      *
61551      * basic tag replacing syntax
61552      * WORD:WORD()
61553      *
61554      * // you can fake an object call by doing this
61555      *  x.t:(test,tesT) 
61556      * 
61557      */
61558     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61559
61560     /**
61561      * compile the template
61562      *
61563      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61564      *
61565      */
61566     compile: function()
61567     {
61568         var s = this.html;
61569      
61570         s = ['<tpl>', s, '</tpl>'].join('');
61571     
61572         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61573             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61574             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61575             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61576             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61577             m,
61578             id     = 0,
61579             tpls   = [];
61580     
61581         while(true == !!(m = s.match(re))){
61582             var forMatch   = m[0].match(nameRe),
61583                 ifMatch   = m[0].match(ifRe),
61584                 execMatch   = m[0].match(execRe),
61585                 namedMatch   = m[0].match(namedRe),
61586                 
61587                 exp  = null, 
61588                 fn   = null,
61589                 exec = null,
61590                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61591                 
61592             if (ifMatch) {
61593                 // if - puts fn into test..
61594                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61595                 if(exp){
61596                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61597                 }
61598             }
61599             
61600             if (execMatch) {
61601                 // exec - calls a function... returns empty if true is  returned.
61602                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61603                 if(exp){
61604                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61605                 }
61606             }
61607             
61608             
61609             if (name) {
61610                 // for = 
61611                 switch(name){
61612                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61613                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61614                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61615                 }
61616             }
61617             var uid = namedMatch ? namedMatch[1] : id;
61618             
61619             
61620             tpls.push({
61621                 id:     namedMatch ? namedMatch[1] : id,
61622                 target: name,
61623                 exec:   exec,
61624                 test:   fn,
61625                 body:   m[1] || ''
61626             });
61627             if (namedMatch) {
61628                 s = s.replace(m[0], '');
61629             } else { 
61630                 s = s.replace(m[0], '{xtpl'+ id + '}');
61631             }
61632             ++id;
61633         }
61634         this.tpls = [];
61635         for(var i = tpls.length-1; i >= 0; --i){
61636             this.compileTpl(tpls[i]);
61637             this.tpls[tpls[i].id] = tpls[i];
61638         }
61639         this.master = tpls[tpls.length-1];
61640         return this;
61641     },
61642     /**
61643      * same as applyTemplate, except it's done to one of the subTemplates
61644      * when using named templates, you can do:
61645      *
61646      * var str = pl.applySubTemplate('your-name', values);
61647      *
61648      * 
61649      * @param {Number} id of the template
61650      * @param {Object} values to apply to template
61651      * @param {Object} parent (normaly the instance of this object)
61652      */
61653     applySubTemplate : function(id, values, parent)
61654     {
61655         
61656         
61657         var t = this.tpls[id];
61658         
61659         
61660         try { 
61661             if(t.test && !t.test.call(this, values, parent)){
61662                 return '';
61663             }
61664         } catch(e) {
61665             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61666             Roo.log(e.toString());
61667             Roo.log(t.test);
61668             return ''
61669         }
61670         try { 
61671             
61672             if(t.exec && t.exec.call(this, values, parent)){
61673                 return '';
61674             }
61675         } catch(e) {
61676             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61677             Roo.log(e.toString());
61678             Roo.log(t.exec);
61679             return ''
61680         }
61681         try {
61682             var vs = t.target ? t.target.call(this, values, parent) : values;
61683             parent = t.target ? values : parent;
61684             if(t.target && vs instanceof Array){
61685                 var buf = [];
61686                 for(var i = 0, len = vs.length; i < len; i++){
61687                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61688                 }
61689                 return buf.join('');
61690             }
61691             return t.compiled.call(this, vs, parent);
61692         } catch (e) {
61693             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61694             Roo.log(e.toString());
61695             Roo.log(t.compiled);
61696             return '';
61697         }
61698     },
61699
61700     compileTpl : function(tpl)
61701     {
61702         var fm = Roo.util.Format;
61703         var useF = this.disableFormats !== true;
61704         var sep = Roo.isGecko ? "+" : ",";
61705         var undef = function(str) {
61706             Roo.log("Property not found :"  + str);
61707             return '';
61708         };
61709         
61710         var fn = function(m, name, format, args)
61711         {
61712             //Roo.log(arguments);
61713             args = args ? args.replace(/\\'/g,"'") : args;
61714             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61715             if (typeof(format) == 'undefined') {
61716                 format= 'htmlEncode';
61717             }
61718             if (format == 'raw' ) {
61719                 format = false;
61720             }
61721             
61722             if(name.substr(0, 4) == 'xtpl'){
61723                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61724             }
61725             
61726             // build an array of options to determine if value is undefined..
61727             
61728             // basically get 'xxxx.yyyy' then do
61729             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61730             //    (function () { Roo.log("Property not found"); return ''; })() :
61731             //    ......
61732             
61733             var udef_ar = [];
61734             var lookfor = '';
61735             Roo.each(name.split('.'), function(st) {
61736                 lookfor += (lookfor.length ? '.': '') + st;
61737                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61738             });
61739             
61740             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61741             
61742             
61743             if(format && useF){
61744                 
61745                 args = args ? ',' + args : "";
61746                  
61747                 if(format.substr(0, 5) != "this."){
61748                     format = "fm." + format + '(';
61749                 }else{
61750                     format = 'this.call("'+ format.substr(5) + '", ';
61751                     args = ", values";
61752                 }
61753                 
61754                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61755             }
61756              
61757             if (args.length) {
61758                 // called with xxyx.yuu:(test,test)
61759                 // change to ()
61760                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61761             }
61762             // raw.. - :raw modifier..
61763             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61764             
61765         };
61766         var body;
61767         // branched to use + in gecko and [].join() in others
61768         if(Roo.isGecko){
61769             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61770                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61771                     "';};};";
61772         }else{
61773             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61774             body.push(tpl.body.replace(/(\r\n|\n)/g,
61775                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61776             body.push("'].join('');};};");
61777             body = body.join('');
61778         }
61779         
61780         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61781        
61782         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61783         eval(body);
61784         
61785         return this;
61786     },
61787
61788     applyTemplate : function(values){
61789         return this.master.compiled.call(this, values, {});
61790         //var s = this.subs;
61791     },
61792
61793     apply : function(){
61794         return this.applyTemplate.apply(this, arguments);
61795     }
61796
61797  });
61798
61799 Roo.XTemplate.from = function(el){
61800     el = Roo.getDom(el);
61801     return new Roo.XTemplate(el.value || el.innerHTML);
61802 };