Fix #6814 - Notification fadeout
[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 Roo.util.Format.defaults = {
13997     date : 'd/M/Y'
13998 };/*
13999  * Based on:
14000  * Ext JS Library 1.1.1
14001  * Copyright(c) 2006-2007, Ext JS, LLC.
14002  *
14003  * Originally Released Under LGPL - original licence link has changed is not relivant.
14004  *
14005  * Fork - LGPL
14006  * <script type="text/javascript">
14007  */
14008
14009
14010  
14011
14012 /**
14013  * @class Roo.MasterTemplate
14014  * @extends Roo.Template
14015  * Provides a template that can have child templates. The syntax is:
14016 <pre><code>
14017 var t = new Roo.MasterTemplate(
14018         '&lt;select name="{name}"&gt;',
14019                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14020         '&lt;/select&gt;'
14021 );
14022 t.add('options', {value: 'foo', text: 'bar'});
14023 // or you can add multiple child elements in one shot
14024 t.addAll('options', [
14025     {value: 'foo', text: 'bar'},
14026     {value: 'foo2', text: 'bar2'},
14027     {value: 'foo3', text: 'bar3'}
14028 ]);
14029 // then append, applying the master template values
14030 t.append('my-form', {name: 'my-select'});
14031 </code></pre>
14032 * A name attribute for the child template is not required if you have only one child
14033 * template or you want to refer to them by index.
14034  */
14035 Roo.MasterTemplate = function(){
14036     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14037     this.originalHtml = this.html;
14038     var st = {};
14039     var m, re = this.subTemplateRe;
14040     re.lastIndex = 0;
14041     var subIndex = 0;
14042     while(m = re.exec(this.html)){
14043         var name = m[1], content = m[2];
14044         st[subIndex] = {
14045             name: name,
14046             index: subIndex,
14047             buffer: [],
14048             tpl : new Roo.Template(content)
14049         };
14050         if(name){
14051             st[name] = st[subIndex];
14052         }
14053         st[subIndex].tpl.compile();
14054         st[subIndex].tpl.call = this.call.createDelegate(this);
14055         subIndex++;
14056     }
14057     this.subCount = subIndex;
14058     this.subs = st;
14059 };
14060 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14061     /**
14062     * The regular expression used to match sub templates
14063     * @type RegExp
14064     * @property
14065     */
14066     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14067
14068     /**
14069      * Applies the passed values to a child template.
14070      * @param {String/Number} name (optional) The name or index of the child template
14071      * @param {Array/Object} values The values to be applied to the template
14072      * @return {MasterTemplate} this
14073      */
14074      add : function(name, values){
14075         if(arguments.length == 1){
14076             values = arguments[0];
14077             name = 0;
14078         }
14079         var s = this.subs[name];
14080         s.buffer[s.buffer.length] = s.tpl.apply(values);
14081         return this;
14082     },
14083
14084     /**
14085      * Applies all the passed values to a child template.
14086      * @param {String/Number} name (optional) The name or index of the child template
14087      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14088      * @param {Boolean} reset (optional) True to reset the template first
14089      * @return {MasterTemplate} this
14090      */
14091     fill : function(name, values, reset){
14092         var a = arguments;
14093         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14094             values = a[0];
14095             name = 0;
14096             reset = a[1];
14097         }
14098         if(reset){
14099             this.reset();
14100         }
14101         for(var i = 0, len = values.length; i < len; i++){
14102             this.add(name, values[i]);
14103         }
14104         return this;
14105     },
14106
14107     /**
14108      * Resets the template for reuse
14109      * @return {MasterTemplate} this
14110      */
14111      reset : function(){
14112         var s = this.subs;
14113         for(var i = 0; i < this.subCount; i++){
14114             s[i].buffer = [];
14115         }
14116         return this;
14117     },
14118
14119     applyTemplate : function(values){
14120         var s = this.subs;
14121         var replaceIndex = -1;
14122         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14123             return s[++replaceIndex].buffer.join("");
14124         });
14125         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14126     },
14127
14128     apply : function(){
14129         return this.applyTemplate.apply(this, arguments);
14130     },
14131
14132     compile : function(){return this;}
14133 });
14134
14135 /**
14136  * Alias for fill().
14137  * @method
14138  */
14139 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14140  /**
14141  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14142  * var tpl = Roo.MasterTemplate.from('element-id');
14143  * @param {String/HTMLElement} el
14144  * @param {Object} config
14145  * @static
14146  */
14147 Roo.MasterTemplate.from = function(el, config){
14148     el = Roo.getDom(el);
14149     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14150 };/*
14151  * Based on:
14152  * Ext JS Library 1.1.1
14153  * Copyright(c) 2006-2007, Ext JS, LLC.
14154  *
14155  * Originally Released Under LGPL - original licence link has changed is not relivant.
14156  *
14157  * Fork - LGPL
14158  * <script type="text/javascript">
14159  */
14160
14161  
14162 /**
14163  * @class Roo.util.CSS
14164  * Utility class for manipulating CSS rules
14165  * @singleton
14166  */
14167 Roo.util.CSS = function(){
14168         var rules = null;
14169         var doc = document;
14170
14171     var camelRe = /(-[a-z])/gi;
14172     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14173
14174    return {
14175    /**
14176     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14177     * tag and appended to the HEAD of the document.
14178     * @param {String|Object} cssText The text containing the css rules
14179     * @param {String} id An id to add to the stylesheet for later removal
14180     * @return {StyleSheet}
14181     */
14182     createStyleSheet : function(cssText, id){
14183         var ss;
14184         var head = doc.getElementsByTagName("head")[0];
14185         var nrules = doc.createElement("style");
14186         nrules.setAttribute("type", "text/css");
14187         if(id){
14188             nrules.setAttribute("id", id);
14189         }
14190         if (typeof(cssText) != 'string') {
14191             // support object maps..
14192             // not sure if this a good idea.. 
14193             // perhaps it should be merged with the general css handling
14194             // and handle js style props.
14195             var cssTextNew = [];
14196             for(var n in cssText) {
14197                 var citems = [];
14198                 for(var k in cssText[n]) {
14199                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14200                 }
14201                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14202                 
14203             }
14204             cssText = cssTextNew.join("\n");
14205             
14206         }
14207        
14208        
14209        if(Roo.isIE){
14210            head.appendChild(nrules);
14211            ss = nrules.styleSheet;
14212            ss.cssText = cssText;
14213        }else{
14214            try{
14215                 nrules.appendChild(doc.createTextNode(cssText));
14216            }catch(e){
14217                nrules.cssText = cssText; 
14218            }
14219            head.appendChild(nrules);
14220            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14221        }
14222        this.cacheStyleSheet(ss);
14223        return ss;
14224    },
14225
14226    /**
14227     * Removes a style or link tag by id
14228     * @param {String} id The id of the tag
14229     */
14230    removeStyleSheet : function(id){
14231        var existing = doc.getElementById(id);
14232        if(existing){
14233            existing.parentNode.removeChild(existing);
14234        }
14235    },
14236
14237    /**
14238     * Dynamically swaps an existing stylesheet reference for a new one
14239     * @param {String} id The id of an existing link tag to remove
14240     * @param {String} url The href of the new stylesheet to include
14241     */
14242    swapStyleSheet : function(id, url){
14243        this.removeStyleSheet(id);
14244        var ss = doc.createElement("link");
14245        ss.setAttribute("rel", "stylesheet");
14246        ss.setAttribute("type", "text/css");
14247        ss.setAttribute("id", id);
14248        ss.setAttribute("href", url);
14249        doc.getElementsByTagName("head")[0].appendChild(ss);
14250    },
14251    
14252    /**
14253     * Refresh the rule cache if you have dynamically added stylesheets
14254     * @return {Object} An object (hash) of rules indexed by selector
14255     */
14256    refreshCache : function(){
14257        return this.getRules(true);
14258    },
14259
14260    // private
14261    cacheStyleSheet : function(stylesheet){
14262        if(!rules){
14263            rules = {};
14264        }
14265        try{// try catch for cross domain access issue
14266            var ssRules = stylesheet.cssRules || stylesheet.rules;
14267            for(var j = ssRules.length-1; j >= 0; --j){
14268                rules[ssRules[j].selectorText] = ssRules[j];
14269            }
14270        }catch(e){}
14271    },
14272    
14273    /**
14274     * Gets all css rules for the document
14275     * @param {Boolean} refreshCache true to refresh the internal cache
14276     * @return {Object} An object (hash) of rules indexed by selector
14277     */
14278    getRules : function(refreshCache){
14279                 if(rules == null || refreshCache){
14280                         rules = {};
14281                         var ds = doc.styleSheets;
14282                         for(var i =0, len = ds.length; i < len; i++){
14283                             try{
14284                         this.cacheStyleSheet(ds[i]);
14285                     }catch(e){} 
14286                 }
14287                 }
14288                 return rules;
14289         },
14290         
14291         /**
14292     * Gets an an individual CSS rule by selector(s)
14293     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14294     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14295     * @return {CSSRule} The CSS rule or null if one is not found
14296     */
14297    getRule : function(selector, refreshCache){
14298                 var rs = this.getRules(refreshCache);
14299                 if(!(selector instanceof Array)){
14300                     return rs[selector];
14301                 }
14302                 for(var i = 0; i < selector.length; i++){
14303                         if(rs[selector[i]]){
14304                                 return rs[selector[i]];
14305                         }
14306                 }
14307                 return null;
14308         },
14309         
14310         
14311         /**
14312     * Updates a rule property
14313     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14314     * @param {String} property The css property
14315     * @param {String} value The new value for the property
14316     * @return {Boolean} true If a rule was found and updated
14317     */
14318    updateRule : function(selector, property, value){
14319                 if(!(selector instanceof Array)){
14320                         var rule = this.getRule(selector);
14321                         if(rule){
14322                                 rule.style[property.replace(camelRe, camelFn)] = value;
14323                                 return true;
14324                         }
14325                 }else{
14326                         for(var i = 0; i < selector.length; i++){
14327                                 if(this.updateRule(selector[i], property, value)){
14328                                         return true;
14329                                 }
14330                         }
14331                 }
14332                 return false;
14333         }
14334    };   
14335 }();/*
14336  * Based on:
14337  * Ext JS Library 1.1.1
14338  * Copyright(c) 2006-2007, Ext JS, LLC.
14339  *
14340  * Originally Released Under LGPL - original licence link has changed is not relivant.
14341  *
14342  * Fork - LGPL
14343  * <script type="text/javascript">
14344  */
14345
14346  
14347
14348 /**
14349  * @class Roo.util.ClickRepeater
14350  * @extends Roo.util.Observable
14351  * 
14352  * A wrapper class which can be applied to any element. Fires a "click" event while the
14353  * mouse is pressed. The interval between firings may be specified in the config but
14354  * defaults to 10 milliseconds.
14355  * 
14356  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14357  * 
14358  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14359  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14360  * Similar to an autorepeat key delay.
14361  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14362  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14363  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14364  *           "interval" and "delay" are ignored. "immediate" is honored.
14365  * @cfg {Boolean} preventDefault True to prevent the default click event
14366  * @cfg {Boolean} stopDefault True to stop the default click event
14367  * 
14368  * @history
14369  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14370  *     2007-02-02 jvs Renamed to ClickRepeater
14371  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14372  *
14373  *  @constructor
14374  * @param {String/HTMLElement/Element} el The element to listen on
14375  * @param {Object} config
14376  **/
14377 Roo.util.ClickRepeater = function(el, config)
14378 {
14379     this.el = Roo.get(el);
14380     this.el.unselectable();
14381
14382     Roo.apply(this, config);
14383
14384     this.addEvents({
14385     /**
14386      * @event mousedown
14387      * Fires when the mouse button is depressed.
14388      * @param {Roo.util.ClickRepeater} this
14389      */
14390         "mousedown" : true,
14391     /**
14392      * @event click
14393      * Fires on a specified interval during the time the element is pressed.
14394      * @param {Roo.util.ClickRepeater} this
14395      */
14396         "click" : true,
14397     /**
14398      * @event mouseup
14399      * Fires when the mouse key is released.
14400      * @param {Roo.util.ClickRepeater} this
14401      */
14402         "mouseup" : true
14403     });
14404
14405     this.el.on("mousedown", this.handleMouseDown, this);
14406     if(this.preventDefault || this.stopDefault){
14407         this.el.on("click", function(e){
14408             if(this.preventDefault){
14409                 e.preventDefault();
14410             }
14411             if(this.stopDefault){
14412                 e.stopEvent();
14413             }
14414         }, this);
14415     }
14416
14417     // allow inline handler
14418     if(this.handler){
14419         this.on("click", this.handler,  this.scope || this);
14420     }
14421
14422     Roo.util.ClickRepeater.superclass.constructor.call(this);
14423 };
14424
14425 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14426     interval : 20,
14427     delay: 250,
14428     preventDefault : true,
14429     stopDefault : false,
14430     timer : 0,
14431
14432     // private
14433     handleMouseDown : function(){
14434         clearTimeout(this.timer);
14435         this.el.blur();
14436         if(this.pressClass){
14437             this.el.addClass(this.pressClass);
14438         }
14439         this.mousedownTime = new Date();
14440
14441         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14442         this.el.on("mouseout", this.handleMouseOut, this);
14443
14444         this.fireEvent("mousedown", this);
14445         this.fireEvent("click", this);
14446         
14447         this.timer = this.click.defer(this.delay || this.interval, this);
14448     },
14449
14450     // private
14451     click : function(){
14452         this.fireEvent("click", this);
14453         this.timer = this.click.defer(this.getInterval(), this);
14454     },
14455
14456     // private
14457     getInterval: function(){
14458         if(!this.accelerate){
14459             return this.interval;
14460         }
14461         var pressTime = this.mousedownTime.getElapsed();
14462         if(pressTime < 500){
14463             return 400;
14464         }else if(pressTime < 1700){
14465             return 320;
14466         }else if(pressTime < 2600){
14467             return 250;
14468         }else if(pressTime < 3500){
14469             return 180;
14470         }else if(pressTime < 4400){
14471             return 140;
14472         }else if(pressTime < 5300){
14473             return 80;
14474         }else if(pressTime < 6200){
14475             return 50;
14476         }else{
14477             return 10;
14478         }
14479     },
14480
14481     // private
14482     handleMouseOut : function(){
14483         clearTimeout(this.timer);
14484         if(this.pressClass){
14485             this.el.removeClass(this.pressClass);
14486         }
14487         this.el.on("mouseover", this.handleMouseReturn, this);
14488     },
14489
14490     // private
14491     handleMouseReturn : function(){
14492         this.el.un("mouseover", this.handleMouseReturn);
14493         if(this.pressClass){
14494             this.el.addClass(this.pressClass);
14495         }
14496         this.click();
14497     },
14498
14499     // private
14500     handleMouseUp : function(){
14501         clearTimeout(this.timer);
14502         this.el.un("mouseover", this.handleMouseReturn);
14503         this.el.un("mouseout", this.handleMouseOut);
14504         Roo.get(document).un("mouseup", this.handleMouseUp);
14505         this.el.removeClass(this.pressClass);
14506         this.fireEvent("mouseup", this);
14507     }
14508 });/**
14509  * @class Roo.util.Clipboard
14510  * @static
14511  * 
14512  * Clipboard UTILS
14513  * 
14514  **/
14515 Roo.util.Clipboard = {
14516     /**
14517      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14518      * @param {String} text to copy to clipboard
14519      */
14520     write : function(text) {
14521         // navigator clipboard api needs a secure context (https)
14522         if (navigator.clipboard && window.isSecureContext) {
14523             // navigator clipboard api method'
14524             navigator.clipboard.writeText(text);
14525             return ;
14526         } 
14527         // text area method
14528         var ta = document.createElement("textarea");
14529         ta.value = text;
14530         // make the textarea out of viewport
14531         ta.style.position = "fixed";
14532         ta.style.left = "-999999px";
14533         ta.style.top = "-999999px";
14534         document.body.appendChild(ta);
14535         ta.focus();
14536         ta.select();
14537         document.execCommand('copy');
14538         (function() {
14539             ta.remove();
14540         }).defer(100);
14541         
14542     }
14543         
14544 }
14545     /*
14546  * Based on:
14547  * Ext JS Library 1.1.1
14548  * Copyright(c) 2006-2007, Ext JS, LLC.
14549  *
14550  * Originally Released Under LGPL - original licence link has changed is not relivant.
14551  *
14552  * Fork - LGPL
14553  * <script type="text/javascript">
14554  */
14555
14556  
14557 /**
14558  * @class Roo.KeyNav
14559  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14560  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14561  * way to implement custom navigation schemes for any UI component.</p>
14562  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14563  * pageUp, pageDown, del, home, end.  Usage:</p>
14564  <pre><code>
14565 var nav = new Roo.KeyNav("my-element", {
14566     "left" : function(e){
14567         this.moveLeft(e.ctrlKey);
14568     },
14569     "right" : function(e){
14570         this.moveRight(e.ctrlKey);
14571     },
14572     "enter" : function(e){
14573         this.save();
14574     },
14575     scope : this
14576 });
14577 </code></pre>
14578  * @constructor
14579  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14580  * @param {Object} config The config
14581  */
14582 Roo.KeyNav = function(el, config){
14583     this.el = Roo.get(el);
14584     Roo.apply(this, config);
14585     if(!this.disabled){
14586         this.disabled = true;
14587         this.enable();
14588     }
14589 };
14590
14591 Roo.KeyNav.prototype = {
14592     /**
14593      * @cfg {Boolean} disabled
14594      * True to disable this KeyNav instance (defaults to false)
14595      */
14596     disabled : false,
14597     /**
14598      * @cfg {String} defaultEventAction
14599      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14600      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14601      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14602      */
14603     defaultEventAction: "stopEvent",
14604     /**
14605      * @cfg {Boolean} forceKeyDown
14606      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14607      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14608      * handle keydown instead of keypress.
14609      */
14610     forceKeyDown : false,
14611
14612     // private
14613     prepareEvent : function(e){
14614         var k = e.getKey();
14615         var h = this.keyToHandler[k];
14616         //if(h && this[h]){
14617         //    e.stopPropagation();
14618         //}
14619         if(Roo.isSafari && h && k >= 37 && k <= 40){
14620             e.stopEvent();
14621         }
14622     },
14623
14624     // private
14625     relay : function(e){
14626         var k = e.getKey();
14627         var h = this.keyToHandler[k];
14628         if(h && this[h]){
14629             if(this.doRelay(e, this[h], h) !== true){
14630                 e[this.defaultEventAction]();
14631             }
14632         }
14633     },
14634
14635     // private
14636     doRelay : function(e, h, hname){
14637         return h.call(this.scope || this, e);
14638     },
14639
14640     // possible handlers
14641     enter : false,
14642     left : false,
14643     right : false,
14644     up : false,
14645     down : false,
14646     tab : false,
14647     esc : false,
14648     pageUp : false,
14649     pageDown : false,
14650     del : false,
14651     home : false,
14652     end : false,
14653
14654     // quick lookup hash
14655     keyToHandler : {
14656         37 : "left",
14657         39 : "right",
14658         38 : "up",
14659         40 : "down",
14660         33 : "pageUp",
14661         34 : "pageDown",
14662         46 : "del",
14663         36 : "home",
14664         35 : "end",
14665         13 : "enter",
14666         27 : "esc",
14667         9  : "tab"
14668     },
14669
14670         /**
14671          * Enable this KeyNav
14672          */
14673         enable: function(){
14674                 if(this.disabled){
14675             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14676             // the EventObject will normalize Safari automatically
14677             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14678                 this.el.on("keydown", this.relay,  this);
14679             }else{
14680                 this.el.on("keydown", this.prepareEvent,  this);
14681                 this.el.on("keypress", this.relay,  this);
14682             }
14683                     this.disabled = false;
14684                 }
14685         },
14686
14687         /**
14688          * Disable this KeyNav
14689          */
14690         disable: function(){
14691                 if(!this.disabled){
14692                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14693                 this.el.un("keydown", this.relay);
14694             }else{
14695                 this.el.un("keydown", this.prepareEvent);
14696                 this.el.un("keypress", this.relay);
14697             }
14698                     this.disabled = true;
14699                 }
14700         }
14701 };/*
14702  * Based on:
14703  * Ext JS Library 1.1.1
14704  * Copyright(c) 2006-2007, Ext JS, LLC.
14705  *
14706  * Originally Released Under LGPL - original licence link has changed is not relivant.
14707  *
14708  * Fork - LGPL
14709  * <script type="text/javascript">
14710  */
14711
14712  
14713 /**
14714  * @class Roo.KeyMap
14715  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14716  * The constructor accepts the same config object as defined by {@link #addBinding}.
14717  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14718  * combination it will call the function with this signature (if the match is a multi-key
14719  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14720  * A KeyMap can also handle a string representation of keys.<br />
14721  * Usage:
14722  <pre><code>
14723 // map one key by key code
14724 var map = new Roo.KeyMap("my-element", {
14725     key: 13, // or Roo.EventObject.ENTER
14726     fn: myHandler,
14727     scope: myObject
14728 });
14729
14730 // map multiple keys to one action by string
14731 var map = new Roo.KeyMap("my-element", {
14732     key: "a\r\n\t",
14733     fn: myHandler,
14734     scope: myObject
14735 });
14736
14737 // map multiple keys to multiple actions by strings and array of codes
14738 var map = new Roo.KeyMap("my-element", [
14739     {
14740         key: [10,13],
14741         fn: function(){ alert("Return was pressed"); }
14742     }, {
14743         key: "abc",
14744         fn: function(){ alert('a, b or c was pressed'); }
14745     }, {
14746         key: "\t",
14747         ctrl:true,
14748         shift:true,
14749         fn: function(){ alert('Control + shift + tab was pressed.'); }
14750     }
14751 ]);
14752 </code></pre>
14753  * <b>Note: A KeyMap starts enabled</b>
14754  * @constructor
14755  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14756  * @param {Object} config The config (see {@link #addBinding})
14757  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14758  */
14759 Roo.KeyMap = function(el, config, eventName){
14760     this.el  = Roo.get(el);
14761     this.eventName = eventName || "keydown";
14762     this.bindings = [];
14763     if(config){
14764         this.addBinding(config);
14765     }
14766     this.enable();
14767 };
14768
14769 Roo.KeyMap.prototype = {
14770     /**
14771      * True to stop the event from bubbling and prevent the default browser action if the
14772      * key was handled by the KeyMap (defaults to false)
14773      * @type Boolean
14774      */
14775     stopEvent : false,
14776
14777     /**
14778      * Add a new binding to this KeyMap. The following config object properties are supported:
14779      * <pre>
14780 Property    Type             Description
14781 ----------  ---------------  ----------------------------------------------------------------------
14782 key         String/Array     A single keycode or an array of keycodes to handle
14783 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14784 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14785 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14786 fn          Function         The function to call when KeyMap finds the expected key combination
14787 scope       Object           The scope of the callback function
14788 </pre>
14789      *
14790      * Usage:
14791      * <pre><code>
14792 // Create a KeyMap
14793 var map = new Roo.KeyMap(document, {
14794     key: Roo.EventObject.ENTER,
14795     fn: handleKey,
14796     scope: this
14797 });
14798
14799 //Add a new binding to the existing KeyMap later
14800 map.addBinding({
14801     key: 'abc',
14802     shift: true,
14803     fn: handleKey,
14804     scope: this
14805 });
14806 </code></pre>
14807      * @param {Object/Array} config A single KeyMap config or an array of configs
14808      */
14809         addBinding : function(config){
14810         if(config instanceof Array){
14811             for(var i = 0, len = config.length; i < len; i++){
14812                 this.addBinding(config[i]);
14813             }
14814             return;
14815         }
14816         var keyCode = config.key,
14817             shift = config.shift, 
14818             ctrl = config.ctrl, 
14819             alt = config.alt,
14820             fn = config.fn,
14821             scope = config.scope;
14822         if(typeof keyCode == "string"){
14823             var ks = [];
14824             var keyString = keyCode.toUpperCase();
14825             for(var j = 0, len = keyString.length; j < len; j++){
14826                 ks.push(keyString.charCodeAt(j));
14827             }
14828             keyCode = ks;
14829         }
14830         var keyArray = keyCode instanceof Array;
14831         var handler = function(e){
14832             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14833                 var k = e.getKey();
14834                 if(keyArray){
14835                     for(var i = 0, len = keyCode.length; i < len; i++){
14836                         if(keyCode[i] == k){
14837                           if(this.stopEvent){
14838                               e.stopEvent();
14839                           }
14840                           fn.call(scope || window, k, e);
14841                           return;
14842                         }
14843                     }
14844                 }else{
14845                     if(k == keyCode){
14846                         if(this.stopEvent){
14847                            e.stopEvent();
14848                         }
14849                         fn.call(scope || window, k, e);
14850                     }
14851                 }
14852             }
14853         };
14854         this.bindings.push(handler);  
14855         },
14856
14857     /**
14858      * Shorthand for adding a single key listener
14859      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14860      * following options:
14861      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14862      * @param {Function} fn The function to call
14863      * @param {Object} scope (optional) The scope of the function
14864      */
14865     on : function(key, fn, scope){
14866         var keyCode, shift, ctrl, alt;
14867         if(typeof key == "object" && !(key instanceof Array)){
14868             keyCode = key.key;
14869             shift = key.shift;
14870             ctrl = key.ctrl;
14871             alt = key.alt;
14872         }else{
14873             keyCode = key;
14874         }
14875         this.addBinding({
14876             key: keyCode,
14877             shift: shift,
14878             ctrl: ctrl,
14879             alt: alt,
14880             fn: fn,
14881             scope: scope
14882         })
14883     },
14884
14885     // private
14886     handleKeyDown : function(e){
14887             if(this.enabled){ //just in case
14888             var b = this.bindings;
14889             for(var i = 0, len = b.length; i < len; i++){
14890                 b[i].call(this, e);
14891             }
14892             }
14893         },
14894         
14895         /**
14896          * Returns true if this KeyMap is enabled
14897          * @return {Boolean} 
14898          */
14899         isEnabled : function(){
14900             return this.enabled;  
14901         },
14902         
14903         /**
14904          * Enables this KeyMap
14905          */
14906         enable: function(){
14907                 if(!this.enabled){
14908                     this.el.on(this.eventName, this.handleKeyDown, this);
14909                     this.enabled = true;
14910                 }
14911         },
14912
14913         /**
14914          * Disable this KeyMap
14915          */
14916         disable: function(){
14917                 if(this.enabled){
14918                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14919                     this.enabled = false;
14920                 }
14921         }
14922 };/*
14923  * Based on:
14924  * Ext JS Library 1.1.1
14925  * Copyright(c) 2006-2007, Ext JS, LLC.
14926  *
14927  * Originally Released Under LGPL - original licence link has changed is not relivant.
14928  *
14929  * Fork - LGPL
14930  * <script type="text/javascript">
14931  */
14932
14933  
14934 /**
14935  * @class Roo.util.TextMetrics
14936  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14937  * wide, in pixels, a given block of text will be.
14938  * @singleton
14939  */
14940 Roo.util.TextMetrics = function(){
14941     var shared;
14942     return {
14943         /**
14944          * Measures the size of the specified text
14945          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14946          * that can affect the size of the rendered text
14947          * @param {String} text The text to measure
14948          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14949          * in order to accurately measure the text height
14950          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14951          */
14952         measure : function(el, text, fixedWidth){
14953             if(!shared){
14954                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14955             }
14956             shared.bind(el);
14957             shared.setFixedWidth(fixedWidth || 'auto');
14958             return shared.getSize(text);
14959         },
14960
14961         /**
14962          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14963          * the overhead of multiple calls to initialize the style properties on each measurement.
14964          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14965          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14966          * in order to accurately measure the text height
14967          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14968          */
14969         createInstance : function(el, fixedWidth){
14970             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14971         }
14972     };
14973 }();
14974
14975  
14976
14977 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14978     var ml = new Roo.Element(document.createElement('div'));
14979     document.body.appendChild(ml.dom);
14980     ml.position('absolute');
14981     ml.setLeftTop(-1000, -1000);
14982     ml.hide();
14983
14984     if(fixedWidth){
14985         ml.setWidth(fixedWidth);
14986     }
14987      
14988     var instance = {
14989         /**
14990          * Returns the size of the specified text based on the internal element's style and width properties
14991          * @memberOf Roo.util.TextMetrics.Instance#
14992          * @param {String} text The text to measure
14993          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14994          */
14995         getSize : function(text){
14996             ml.update(text);
14997             var s = ml.getSize();
14998             ml.update('');
14999             return s;
15000         },
15001
15002         /**
15003          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15004          * that can affect the size of the rendered text
15005          * @memberOf Roo.util.TextMetrics.Instance#
15006          * @param {String/HTMLElement} el The element, dom node or id
15007          */
15008         bind : function(el){
15009             ml.setStyle(
15010                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15011             );
15012         },
15013
15014         /**
15015          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15016          * to set a fixed width in order to accurately measure the text height.
15017          * @memberOf Roo.util.TextMetrics.Instance#
15018          * @param {Number} width The width to set on the element
15019          */
15020         setFixedWidth : function(width){
15021             ml.setWidth(width);
15022         },
15023
15024         /**
15025          * Returns the measured width of the specified text
15026          * @memberOf Roo.util.TextMetrics.Instance#
15027          * @param {String} text The text to measure
15028          * @return {Number} width The width in pixels
15029          */
15030         getWidth : function(text){
15031             ml.dom.style.width = 'auto';
15032             return this.getSize(text).width;
15033         },
15034
15035         /**
15036          * Returns the measured height of the specified text.  For multiline text, be sure to call
15037          * {@link #setFixedWidth} if necessary.
15038          * @memberOf Roo.util.TextMetrics.Instance#
15039          * @param {String} text The text to measure
15040          * @return {Number} height The height in pixels
15041          */
15042         getHeight : function(text){
15043             return this.getSize(text).height;
15044         }
15045     };
15046
15047     instance.bind(bindTo);
15048
15049     return instance;
15050 };
15051
15052 // backwards compat
15053 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15054  * Based on:
15055  * Ext JS Library 1.1.1
15056  * Copyright(c) 2006-2007, Ext JS, LLC.
15057  *
15058  * Originally Released Under LGPL - original licence link has changed is not relivant.
15059  *
15060  * Fork - LGPL
15061  * <script type="text/javascript">
15062  */
15063
15064 /**
15065  * @class Roo.state.Provider
15066  * Abstract base class for state provider implementations. This class provides methods
15067  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15068  * Provider interface.
15069  */
15070 Roo.state.Provider = function(){
15071     /**
15072      * @event statechange
15073      * Fires when a state change occurs.
15074      * @param {Provider} this This state provider
15075      * @param {String} key The state key which was changed
15076      * @param {String} value The encoded value for the state
15077      */
15078     this.addEvents({
15079         "statechange": true
15080     });
15081     this.state = {};
15082     Roo.state.Provider.superclass.constructor.call(this);
15083 };
15084 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15085     /**
15086      * Returns the current value for a key
15087      * @param {String} name The key name
15088      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15089      * @return {Mixed} The state data
15090      */
15091     get : function(name, defaultValue){
15092         return typeof this.state[name] == "undefined" ?
15093             defaultValue : this.state[name];
15094     },
15095     
15096     /**
15097      * Clears a value from the state
15098      * @param {String} name The key name
15099      */
15100     clear : function(name){
15101         delete this.state[name];
15102         this.fireEvent("statechange", this, name, null);
15103     },
15104     
15105     /**
15106      * Sets the value for a key
15107      * @param {String} name The key name
15108      * @param {Mixed} value The value to set
15109      */
15110     set : function(name, value){
15111         this.state[name] = value;
15112         this.fireEvent("statechange", this, name, value);
15113     },
15114     
15115     /**
15116      * Decodes a string previously encoded with {@link #encodeValue}.
15117      * @param {String} value The value to decode
15118      * @return {Mixed} The decoded value
15119      */
15120     decodeValue : function(cookie){
15121         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15122         var matches = re.exec(unescape(cookie));
15123         if(!matches || !matches[1]) {
15124             return; // non state cookie
15125         }
15126         var type = matches[1];
15127         var v = matches[2];
15128         switch(type){
15129             case "n":
15130                 return parseFloat(v);
15131             case "d":
15132                 return new Date(Date.parse(v));
15133             case "b":
15134                 return (v == "1");
15135             case "a":
15136                 var all = [];
15137                 var values = v.split("^");
15138                 for(var i = 0, len = values.length; i < len; i++){
15139                     all.push(this.decodeValue(values[i]));
15140                 }
15141                 return all;
15142            case "o":
15143                 var all = {};
15144                 var values = v.split("^");
15145                 for(var i = 0, len = values.length; i < len; i++){
15146                     var kv = values[i].split("=");
15147                     all[kv[0]] = this.decodeValue(kv[1]);
15148                 }
15149                 return all;
15150            default:
15151                 return v;
15152         }
15153     },
15154     
15155     /**
15156      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15157      * @param {Mixed} value The value to encode
15158      * @return {String} The encoded value
15159      */
15160     encodeValue : function(v){
15161         var enc;
15162         if(typeof v == "number"){
15163             enc = "n:" + v;
15164         }else if(typeof v == "boolean"){
15165             enc = "b:" + (v ? "1" : "0");
15166         }else if(v instanceof Date){
15167             enc = "d:" + v.toGMTString();
15168         }else if(v instanceof Array){
15169             var flat = "";
15170             for(var i = 0, len = v.length; i < len; i++){
15171                 flat += this.encodeValue(v[i]);
15172                 if(i != len-1) {
15173                     flat += "^";
15174                 }
15175             }
15176             enc = "a:" + flat;
15177         }else if(typeof v == "object"){
15178             var flat = "";
15179             for(var key in v){
15180                 if(typeof v[key] != "function"){
15181                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15182                 }
15183             }
15184             enc = "o:" + flat.substring(0, flat.length-1);
15185         }else{
15186             enc = "s:" + v;
15187         }
15188         return escape(enc);        
15189     }
15190 });
15191
15192 /*
15193  * Based on:
15194  * Ext JS Library 1.1.1
15195  * Copyright(c) 2006-2007, Ext JS, LLC.
15196  *
15197  * Originally Released Under LGPL - original licence link has changed is not relivant.
15198  *
15199  * Fork - LGPL
15200  * <script type="text/javascript">
15201  */
15202 /**
15203  * @class Roo.state.Manager
15204  * This is the global state manager. By default all components that are "state aware" check this class
15205  * for state information if you don't pass them a custom state provider. In order for this class
15206  * to be useful, it must be initialized with a provider when your application initializes.
15207  <pre><code>
15208 // in your initialization function
15209 init : function(){
15210    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15211    ...
15212    // supposed you have a {@link Roo.BorderLayout}
15213    var layout = new Roo.BorderLayout(...);
15214    layout.restoreState();
15215    // or a {Roo.BasicDialog}
15216    var dialog = new Roo.BasicDialog(...);
15217    dialog.restoreState();
15218  </code></pre>
15219  * @singleton
15220  */
15221 Roo.state.Manager = function(){
15222     var provider = new Roo.state.Provider();
15223     
15224     return {
15225         /**
15226          * Configures the default state provider for your application
15227          * @param {Provider} stateProvider The state provider to set
15228          */
15229         setProvider : function(stateProvider){
15230             provider = stateProvider;
15231         },
15232         
15233         /**
15234          * Returns the current value for a key
15235          * @param {String} name The key name
15236          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15237          * @return {Mixed} The state data
15238          */
15239         get : function(key, defaultValue){
15240             return provider.get(key, defaultValue);
15241         },
15242         
15243         /**
15244          * Sets the value for a key
15245          * @param {String} name The key name
15246          * @param {Mixed} value The state data
15247          */
15248          set : function(key, value){
15249             provider.set(key, value);
15250         },
15251         
15252         /**
15253          * Clears a value from the state
15254          * @param {String} name The key name
15255          */
15256         clear : function(key){
15257             provider.clear(key);
15258         },
15259         
15260         /**
15261          * Gets the currently configured state provider
15262          * @return {Provider} The state provider
15263          */
15264         getProvider : function(){
15265             return provider;
15266         }
15267     };
15268 }();
15269 /*
15270  * Based on:
15271  * Ext JS Library 1.1.1
15272  * Copyright(c) 2006-2007, Ext JS, LLC.
15273  *
15274  * Originally Released Under LGPL - original licence link has changed is not relivant.
15275  *
15276  * Fork - LGPL
15277  * <script type="text/javascript">
15278  */
15279 /**
15280  * @class Roo.state.CookieProvider
15281  * @extends Roo.state.Provider
15282  * The default Provider implementation which saves state via cookies.
15283  * <br />Usage:
15284  <pre><code>
15285    var cp = new Roo.state.CookieProvider({
15286        path: "/cgi-bin/",
15287        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15288        domain: "roojs.com"
15289    })
15290    Roo.state.Manager.setProvider(cp);
15291  </code></pre>
15292  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15293  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15294  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15295  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15296  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15297  * domain the page is running on including the 'www' like 'www.roojs.com')
15298  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15299  * @constructor
15300  * Create a new CookieProvider
15301  * @param {Object} config The configuration object
15302  */
15303 Roo.state.CookieProvider = function(config){
15304     Roo.state.CookieProvider.superclass.constructor.call(this);
15305     this.path = "/";
15306     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15307     this.domain = null;
15308     this.secure = false;
15309     Roo.apply(this, config);
15310     this.state = this.readCookies();
15311 };
15312
15313 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15314     // private
15315     set : function(name, value){
15316         if(typeof value == "undefined" || value === null){
15317             this.clear(name);
15318             return;
15319         }
15320         this.setCookie(name, value);
15321         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15322     },
15323
15324     // private
15325     clear : function(name){
15326         this.clearCookie(name);
15327         Roo.state.CookieProvider.superclass.clear.call(this, name);
15328     },
15329
15330     // private
15331     readCookies : function(){
15332         var cookies = {};
15333         var c = document.cookie + ";";
15334         var re = /\s?(.*?)=(.*?);/g;
15335         var matches;
15336         while((matches = re.exec(c)) != null){
15337             var name = matches[1];
15338             var value = matches[2];
15339             if(name && name.substring(0,3) == "ys-"){
15340                 cookies[name.substr(3)] = this.decodeValue(value);
15341             }
15342         }
15343         return cookies;
15344     },
15345
15346     // private
15347     setCookie : function(name, value){
15348         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15349            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15350            ((this.path == null) ? "" : ("; path=" + this.path)) +
15351            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15352            ((this.secure == true) ? "; secure" : "");
15353     },
15354
15355     // private
15356     clearCookie : function(name){
15357         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15358            ((this.path == null) ? "" : ("; path=" + this.path)) +
15359            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15360            ((this.secure == true) ? "; secure" : "");
15361     }
15362 });/*
15363  * Based on:
15364  * Ext JS Library 1.1.1
15365  * Copyright(c) 2006-2007, Ext JS, LLC.
15366  *
15367  * Originally Released Under LGPL - original licence link has changed is not relivant.
15368  *
15369  * Fork - LGPL
15370  * <script type="text/javascript">
15371  */
15372  
15373
15374 /**
15375  * @class Roo.ComponentMgr
15376  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15377  * @singleton
15378  */
15379 Roo.ComponentMgr = function(){
15380     var all = new Roo.util.MixedCollection();
15381
15382     return {
15383         /**
15384          * Registers a component.
15385          * @param {Roo.Component} c The component
15386          */
15387         register : function(c){
15388             all.add(c);
15389         },
15390
15391         /**
15392          * Unregisters a component.
15393          * @param {Roo.Component} c The component
15394          */
15395         unregister : function(c){
15396             all.remove(c);
15397         },
15398
15399         /**
15400          * Returns a component by id
15401          * @param {String} id The component id
15402          */
15403         get : function(id){
15404             return all.get(id);
15405         },
15406
15407         /**
15408          * Registers a function that will be called when a specified component is added to ComponentMgr
15409          * @param {String} id The component id
15410          * @param {Funtction} fn The callback function
15411          * @param {Object} scope The scope of the callback
15412          */
15413         onAvailable : function(id, fn, scope){
15414             all.on("add", function(index, o){
15415                 if(o.id == id){
15416                     fn.call(scope || o, o);
15417                     all.un("add", fn, scope);
15418                 }
15419             });
15420         }
15421     };
15422 }();/*
15423  * Based on:
15424  * Ext JS Library 1.1.1
15425  * Copyright(c) 2006-2007, Ext JS, LLC.
15426  *
15427  * Originally Released Under LGPL - original licence link has changed is not relivant.
15428  *
15429  * Fork - LGPL
15430  * <script type="text/javascript">
15431  */
15432  
15433 /**
15434  * @class Roo.Component
15435  * @extends Roo.util.Observable
15436  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15437  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15438  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15439  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15440  * All visual components (widgets) that require rendering into a layout should subclass Component.
15441  * @constructor
15442  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15443  * 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
15444  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15445  */
15446 Roo.Component = function(config){
15447     config = config || {};
15448     if(config.tagName || config.dom || typeof config == "string"){ // element object
15449         config = {el: config, id: config.id || config};
15450     }
15451     this.initialConfig = config;
15452
15453     Roo.apply(this, config);
15454     this.addEvents({
15455         /**
15456          * @event disable
15457          * Fires after the component is disabled.
15458              * @param {Roo.Component} this
15459              */
15460         disable : true,
15461         /**
15462          * @event enable
15463          * Fires after the component is enabled.
15464              * @param {Roo.Component} this
15465              */
15466         enable : true,
15467         /**
15468          * @event beforeshow
15469          * Fires before the component is shown.  Return false to stop the show.
15470              * @param {Roo.Component} this
15471              */
15472         beforeshow : true,
15473         /**
15474          * @event show
15475          * Fires after the component is shown.
15476              * @param {Roo.Component} this
15477              */
15478         show : true,
15479         /**
15480          * @event beforehide
15481          * Fires before the component is hidden. Return false to stop the hide.
15482              * @param {Roo.Component} this
15483              */
15484         beforehide : true,
15485         /**
15486          * @event hide
15487          * Fires after the component is hidden.
15488              * @param {Roo.Component} this
15489              */
15490         hide : true,
15491         /**
15492          * @event beforerender
15493          * Fires before the component is rendered. Return false to stop the render.
15494              * @param {Roo.Component} this
15495              */
15496         beforerender : true,
15497         /**
15498          * @event render
15499          * Fires after the component is rendered.
15500              * @param {Roo.Component} this
15501              */
15502         render : true,
15503         /**
15504          * @event beforedestroy
15505          * Fires before the component is destroyed. Return false to stop the destroy.
15506              * @param {Roo.Component} this
15507              */
15508         beforedestroy : true,
15509         /**
15510          * @event destroy
15511          * Fires after the component is destroyed.
15512              * @param {Roo.Component} this
15513              */
15514         destroy : true
15515     });
15516     if(!this.id){
15517         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15518     }
15519     Roo.ComponentMgr.register(this);
15520     Roo.Component.superclass.constructor.call(this);
15521     this.initComponent();
15522     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15523         this.render(this.renderTo);
15524         delete this.renderTo;
15525     }
15526 };
15527
15528 /** @private */
15529 Roo.Component.AUTO_ID = 1000;
15530
15531 Roo.extend(Roo.Component, Roo.util.Observable, {
15532     /**
15533      * @scope Roo.Component.prototype
15534      * @type {Boolean}
15535      * true if this component is hidden. Read-only.
15536      */
15537     hidden : false,
15538     /**
15539      * @type {Boolean}
15540      * true if this component is disabled. Read-only.
15541      */
15542     disabled : false,
15543     /**
15544      * @type {Boolean}
15545      * true if this component has been rendered. Read-only.
15546      */
15547     rendered : false,
15548     
15549     /** @cfg {String} disableClass
15550      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15551      */
15552     disabledClass : "x-item-disabled",
15553         /** @cfg {Boolean} allowDomMove
15554          * Whether the component can move the Dom node when rendering (defaults to true).
15555          */
15556     allowDomMove : true,
15557     /** @cfg {String} hideMode (display|visibility)
15558      * How this component should hidden. Supported values are
15559      * "visibility" (css visibility), "offsets" (negative offset position) and
15560      * "display" (css display) - defaults to "display".
15561      */
15562     hideMode: 'display',
15563
15564     /** @private */
15565     ctype : "Roo.Component",
15566
15567     /**
15568      * @cfg {String} actionMode 
15569      * which property holds the element that used for  hide() / show() / disable() / enable()
15570      * default is 'el' for forms you probably want to set this to fieldEl 
15571      */
15572     actionMode : "el",
15573
15574     /** @private */
15575     getActionEl : function(){
15576         return this[this.actionMode];
15577     },
15578
15579     initComponent : Roo.emptyFn,
15580     /**
15581      * If this is a lazy rendering component, render it to its container element.
15582      * @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.
15583      */
15584     render : function(container, position){
15585         
15586         if(this.rendered){
15587             return this;
15588         }
15589         
15590         if(this.fireEvent("beforerender", this) === false){
15591             return false;
15592         }
15593         
15594         if(!container && this.el){
15595             this.el = Roo.get(this.el);
15596             container = this.el.dom.parentNode;
15597             this.allowDomMove = false;
15598         }
15599         this.container = Roo.get(container);
15600         this.rendered = true;
15601         if(position !== undefined){
15602             if(typeof position == 'number'){
15603                 position = this.container.dom.childNodes[position];
15604             }else{
15605                 position = Roo.getDom(position);
15606             }
15607         }
15608         this.onRender(this.container, position || null);
15609         if(this.cls){
15610             this.el.addClass(this.cls);
15611             delete this.cls;
15612         }
15613         if(this.style){
15614             this.el.applyStyles(this.style);
15615             delete this.style;
15616         }
15617         this.fireEvent("render", this);
15618         this.afterRender(this.container);
15619         if(this.hidden){
15620             this.hide();
15621         }
15622         if(this.disabled){
15623             this.disable();
15624         }
15625
15626         return this;
15627         
15628     },
15629
15630     /** @private */
15631     // default function is not really useful
15632     onRender : function(ct, position){
15633         if(this.el){
15634             this.el = Roo.get(this.el);
15635             if(this.allowDomMove !== false){
15636                 ct.dom.insertBefore(this.el.dom, position);
15637             }
15638         }
15639     },
15640
15641     /** @private */
15642     getAutoCreate : function(){
15643         var cfg = typeof this.autoCreate == "object" ?
15644                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15645         if(this.id && !cfg.id){
15646             cfg.id = this.id;
15647         }
15648         return cfg;
15649     },
15650
15651     /** @private */
15652     afterRender : Roo.emptyFn,
15653
15654     /**
15655      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15656      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15657      */
15658     destroy : function(){
15659         if(this.fireEvent("beforedestroy", this) !== false){
15660             this.purgeListeners();
15661             this.beforeDestroy();
15662             if(this.rendered){
15663                 this.el.removeAllListeners();
15664                 this.el.remove();
15665                 if(this.actionMode == "container"){
15666                     this.container.remove();
15667                 }
15668             }
15669             this.onDestroy();
15670             Roo.ComponentMgr.unregister(this);
15671             this.fireEvent("destroy", this);
15672         }
15673     },
15674
15675         /** @private */
15676     beforeDestroy : function(){
15677
15678     },
15679
15680         /** @private */
15681         onDestroy : function(){
15682
15683     },
15684
15685     /**
15686      * Returns the underlying {@link Roo.Element}.
15687      * @return {Roo.Element} The element
15688      */
15689     getEl : function(){
15690         return this.el;
15691     },
15692
15693     /**
15694      * Returns the id of this component.
15695      * @return {String}
15696      */
15697     getId : function(){
15698         return this.id;
15699     },
15700
15701     /**
15702      * Try to focus this component.
15703      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15704      * @return {Roo.Component} this
15705      */
15706     focus : function(selectText){
15707         if(this.rendered){
15708             this.el.focus();
15709             if(selectText === true){
15710                 this.el.dom.select();
15711             }
15712         }
15713         return this;
15714     },
15715
15716     /** @private */
15717     blur : function(){
15718         if(this.rendered){
15719             this.el.blur();
15720         }
15721         return this;
15722     },
15723
15724     /**
15725      * Disable this component.
15726      * @return {Roo.Component} this
15727      */
15728     disable : function(){
15729         if(this.rendered){
15730             this.onDisable();
15731         }
15732         this.disabled = true;
15733         this.fireEvent("disable", this);
15734         return this;
15735     },
15736
15737         // private
15738     onDisable : function(){
15739         this.getActionEl().addClass(this.disabledClass);
15740         this.el.dom.disabled = true;
15741     },
15742
15743     /**
15744      * Enable this component.
15745      * @return {Roo.Component} this
15746      */
15747     enable : function(){
15748         if(this.rendered){
15749             this.onEnable();
15750         }
15751         this.disabled = false;
15752         this.fireEvent("enable", this);
15753         return this;
15754     },
15755
15756         // private
15757     onEnable : function(){
15758         this.getActionEl().removeClass(this.disabledClass);
15759         this.el.dom.disabled = false;
15760     },
15761
15762     /**
15763      * Convenience function for setting disabled/enabled by boolean.
15764      * @param {Boolean} disabled
15765      */
15766     setDisabled : function(disabled){
15767         this[disabled ? "disable" : "enable"]();
15768     },
15769
15770     /**
15771      * Show this component.
15772      * @return {Roo.Component} this
15773      */
15774     show: function(){
15775         if(this.fireEvent("beforeshow", this) !== false){
15776             this.hidden = false;
15777             if(this.rendered){
15778                 this.onShow();
15779             }
15780             this.fireEvent("show", this);
15781         }
15782         return this;
15783     },
15784
15785     // private
15786     onShow : function(){
15787         var ae = this.getActionEl();
15788         if(this.hideMode == 'visibility'){
15789             ae.dom.style.visibility = "visible";
15790         }else if(this.hideMode == 'offsets'){
15791             ae.removeClass('x-hidden');
15792         }else{
15793             ae.dom.style.display = "";
15794         }
15795     },
15796
15797     /**
15798      * Hide this component.
15799      * @return {Roo.Component} this
15800      */
15801     hide: function(){
15802         if(this.fireEvent("beforehide", this) !== false){
15803             this.hidden = true;
15804             if(this.rendered){
15805                 this.onHide();
15806             }
15807             this.fireEvent("hide", this);
15808         }
15809         return this;
15810     },
15811
15812     // private
15813     onHide : function(){
15814         var ae = this.getActionEl();
15815         if(this.hideMode == 'visibility'){
15816             ae.dom.style.visibility = "hidden";
15817         }else if(this.hideMode == 'offsets'){
15818             ae.addClass('x-hidden');
15819         }else{
15820             ae.dom.style.display = "none";
15821         }
15822     },
15823
15824     /**
15825      * Convenience function to hide or show this component by boolean.
15826      * @param {Boolean} visible True to show, false to hide
15827      * @return {Roo.Component} this
15828      */
15829     setVisible: function(visible){
15830         if(visible) {
15831             this.show();
15832         }else{
15833             this.hide();
15834         }
15835         return this;
15836     },
15837
15838     /**
15839      * Returns true if this component is visible.
15840      */
15841     isVisible : function(){
15842         return this.getActionEl().isVisible();
15843     },
15844
15845     cloneConfig : function(overrides){
15846         overrides = overrides || {};
15847         var id = overrides.id || Roo.id();
15848         var cfg = Roo.applyIf(overrides, this.initialConfig);
15849         cfg.id = id; // prevent dup id
15850         return new this.constructor(cfg);
15851     }
15852 });/*
15853  * Based on:
15854  * Ext JS Library 1.1.1
15855  * Copyright(c) 2006-2007, Ext JS, LLC.
15856  *
15857  * Originally Released Under LGPL - original licence link has changed is not relivant.
15858  *
15859  * Fork - LGPL
15860  * <script type="text/javascript">
15861  */
15862
15863 /**
15864  * @class Roo.BoxComponent
15865  * @extends Roo.Component
15866  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15867  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15868  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15869  * layout containers.
15870  * @constructor
15871  * @param {Roo.Element/String/Object} config The configuration options.
15872  */
15873 Roo.BoxComponent = function(config){
15874     Roo.Component.call(this, config);
15875     this.addEvents({
15876         /**
15877          * @event resize
15878          * Fires after the component is resized.
15879              * @param {Roo.Component} this
15880              * @param {Number} adjWidth The box-adjusted width that was set
15881              * @param {Number} adjHeight The box-adjusted height that was set
15882              * @param {Number} rawWidth The width that was originally specified
15883              * @param {Number} rawHeight The height that was originally specified
15884              */
15885         resize : true,
15886         /**
15887          * @event move
15888          * Fires after the component is moved.
15889              * @param {Roo.Component} this
15890              * @param {Number} x The new x position
15891              * @param {Number} y The new y position
15892              */
15893         move : true
15894     });
15895 };
15896
15897 Roo.extend(Roo.BoxComponent, Roo.Component, {
15898     // private, set in afterRender to signify that the component has been rendered
15899     boxReady : false,
15900     // private, used to defer height settings to subclasses
15901     deferHeight: false,
15902     /** @cfg {Number} width
15903      * width (optional) size of component
15904      */
15905      /** @cfg {Number} height
15906      * height (optional) size of component
15907      */
15908      
15909     /**
15910      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15911      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15912      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15913      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15914      * @return {Roo.BoxComponent} this
15915      */
15916     setSize : function(w, h){
15917         // support for standard size objects
15918         if(typeof w == 'object'){
15919             h = w.height;
15920             w = w.width;
15921         }
15922         // not rendered
15923         if(!this.boxReady){
15924             this.width = w;
15925             this.height = h;
15926             return this;
15927         }
15928
15929         // prevent recalcs when not needed
15930         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15931             return this;
15932         }
15933         this.lastSize = {width: w, height: h};
15934
15935         var adj = this.adjustSize(w, h);
15936         var aw = adj.width, ah = adj.height;
15937         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15938             var rz = this.getResizeEl();
15939             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15940                 rz.setSize(aw, ah);
15941             }else if(!this.deferHeight && ah !== undefined){
15942                 rz.setHeight(ah);
15943             }else if(aw !== undefined){
15944                 rz.setWidth(aw);
15945             }
15946             this.onResize(aw, ah, w, h);
15947             this.fireEvent('resize', this, aw, ah, w, h);
15948         }
15949         return this;
15950     },
15951
15952     /**
15953      * Gets the current size of the component's underlying element.
15954      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15955      */
15956     getSize : function(){
15957         return this.el.getSize();
15958     },
15959
15960     /**
15961      * Gets the current XY position of the component's underlying element.
15962      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15963      * @return {Array} The XY position of the element (e.g., [100, 200])
15964      */
15965     getPosition : function(local){
15966         if(local === true){
15967             return [this.el.getLeft(true), this.el.getTop(true)];
15968         }
15969         return this.xy || this.el.getXY();
15970     },
15971
15972     /**
15973      * Gets the current box measurements of the component's underlying element.
15974      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15975      * @returns {Object} box An object in the format {x, y, width, height}
15976      */
15977     getBox : function(local){
15978         var s = this.el.getSize();
15979         if(local){
15980             s.x = this.el.getLeft(true);
15981             s.y = this.el.getTop(true);
15982         }else{
15983             var xy = this.xy || this.el.getXY();
15984             s.x = xy[0];
15985             s.y = xy[1];
15986         }
15987         return s;
15988     },
15989
15990     /**
15991      * Sets the current box measurements of the component's underlying element.
15992      * @param {Object} box An object in the format {x, y, width, height}
15993      * @returns {Roo.BoxComponent} this
15994      */
15995     updateBox : function(box){
15996         this.setSize(box.width, box.height);
15997         this.setPagePosition(box.x, box.y);
15998         return this;
15999     },
16000
16001     // protected
16002     getResizeEl : function(){
16003         return this.resizeEl || this.el;
16004     },
16005
16006     // protected
16007     getPositionEl : function(){
16008         return this.positionEl || this.el;
16009     },
16010
16011     /**
16012      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16013      * This method fires the move event.
16014      * @param {Number} left The new left
16015      * @param {Number} top The new top
16016      * @returns {Roo.BoxComponent} this
16017      */
16018     setPosition : function(x, y){
16019         this.x = x;
16020         this.y = y;
16021         if(!this.boxReady){
16022             return this;
16023         }
16024         var adj = this.adjustPosition(x, y);
16025         var ax = adj.x, ay = adj.y;
16026
16027         var el = this.getPositionEl();
16028         if(ax !== undefined || ay !== undefined){
16029             if(ax !== undefined && ay !== undefined){
16030                 el.setLeftTop(ax, ay);
16031             }else if(ax !== undefined){
16032                 el.setLeft(ax);
16033             }else if(ay !== undefined){
16034                 el.setTop(ay);
16035             }
16036             this.onPosition(ax, ay);
16037             this.fireEvent('move', this, ax, ay);
16038         }
16039         return this;
16040     },
16041
16042     /**
16043      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16044      * This method fires the move event.
16045      * @param {Number} x The new x position
16046      * @param {Number} y The new y position
16047      * @returns {Roo.BoxComponent} this
16048      */
16049     setPagePosition : function(x, y){
16050         this.pageX = x;
16051         this.pageY = y;
16052         if(!this.boxReady){
16053             return;
16054         }
16055         if(x === undefined || y === undefined){ // cannot translate undefined points
16056             return;
16057         }
16058         var p = this.el.translatePoints(x, y);
16059         this.setPosition(p.left, p.top);
16060         return this;
16061     },
16062
16063     // private
16064     onRender : function(ct, position){
16065         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16066         if(this.resizeEl){
16067             this.resizeEl = Roo.get(this.resizeEl);
16068         }
16069         if(this.positionEl){
16070             this.positionEl = Roo.get(this.positionEl);
16071         }
16072     },
16073
16074     // private
16075     afterRender : function(){
16076         Roo.BoxComponent.superclass.afterRender.call(this);
16077         this.boxReady = true;
16078         this.setSize(this.width, this.height);
16079         if(this.x || this.y){
16080             this.setPosition(this.x, this.y);
16081         }
16082         if(this.pageX || this.pageY){
16083             this.setPagePosition(this.pageX, this.pageY);
16084         }
16085     },
16086
16087     /**
16088      * Force the component's size to recalculate based on the underlying element's current height and width.
16089      * @returns {Roo.BoxComponent} this
16090      */
16091     syncSize : function(){
16092         delete this.lastSize;
16093         this.setSize(this.el.getWidth(), this.el.getHeight());
16094         return this;
16095     },
16096
16097     /**
16098      * Called after the component is resized, this method is empty by default but can be implemented by any
16099      * subclass that needs to perform custom logic after a resize occurs.
16100      * @param {Number} adjWidth The box-adjusted width that was set
16101      * @param {Number} adjHeight The box-adjusted height that was set
16102      * @param {Number} rawWidth The width that was originally specified
16103      * @param {Number} rawHeight The height that was originally specified
16104      */
16105     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16106
16107     },
16108
16109     /**
16110      * Called after the component is moved, this method is empty by default but can be implemented by any
16111      * subclass that needs to perform custom logic after a move occurs.
16112      * @param {Number} x The new x position
16113      * @param {Number} y The new y position
16114      */
16115     onPosition : function(x, y){
16116
16117     },
16118
16119     // private
16120     adjustSize : function(w, h){
16121         if(this.autoWidth){
16122             w = 'auto';
16123         }
16124         if(this.autoHeight){
16125             h = 'auto';
16126         }
16127         return {width : w, height: h};
16128     },
16129
16130     // private
16131     adjustPosition : function(x, y){
16132         return {x : x, y: y};
16133     }
16134 });/*
16135  * Based on:
16136  * Ext JS Library 1.1.1
16137  * Copyright(c) 2006-2007, Ext JS, LLC.
16138  *
16139  * Originally Released Under LGPL - original licence link has changed is not relivant.
16140  *
16141  * Fork - LGPL
16142  * <script type="text/javascript">
16143  */
16144  (function(){ 
16145 /**
16146  * @class Roo.Layer
16147  * @extends Roo.Element
16148  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16149  * automatic maintaining of shadow/shim positions.
16150  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16151  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16152  * you can pass a string with a CSS class name. False turns off the shadow.
16153  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16154  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16155  * @cfg {String} cls CSS class to add to the element
16156  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16157  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16158  * @constructor
16159  * @param {Object} config An object with config options.
16160  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16161  */
16162
16163 Roo.Layer = function(config, existingEl){
16164     config = config || {};
16165     var dh = Roo.DomHelper;
16166     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16167     if(existingEl){
16168         this.dom = Roo.getDom(existingEl);
16169     }
16170     if(!this.dom){
16171         var o = config.dh || {tag: "div", cls: "x-layer"};
16172         this.dom = dh.append(pel, o);
16173     }
16174     if(config.cls){
16175         this.addClass(config.cls);
16176     }
16177     this.constrain = config.constrain !== false;
16178     this.visibilityMode = Roo.Element.VISIBILITY;
16179     if(config.id){
16180         this.id = this.dom.id = config.id;
16181     }else{
16182         this.id = Roo.id(this.dom);
16183     }
16184     this.zindex = config.zindex || this.getZIndex();
16185     this.position("absolute", this.zindex);
16186     if(config.shadow){
16187         this.shadowOffset = config.shadowOffset || 4;
16188         this.shadow = new Roo.Shadow({
16189             offset : this.shadowOffset,
16190             mode : config.shadow
16191         });
16192     }else{
16193         this.shadowOffset = 0;
16194     }
16195     this.useShim = config.shim !== false && Roo.useShims;
16196     this.useDisplay = config.useDisplay;
16197     this.hide();
16198 };
16199
16200 var supr = Roo.Element.prototype;
16201
16202 // shims are shared among layer to keep from having 100 iframes
16203 var shims = [];
16204
16205 Roo.extend(Roo.Layer, Roo.Element, {
16206
16207     getZIndex : function(){
16208         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16209     },
16210
16211     getShim : function(){
16212         if(!this.useShim){
16213             return null;
16214         }
16215         if(this.shim){
16216             return this.shim;
16217         }
16218         var shim = shims.shift();
16219         if(!shim){
16220             shim = this.createShim();
16221             shim.enableDisplayMode('block');
16222             shim.dom.style.display = 'none';
16223             shim.dom.style.visibility = 'visible';
16224         }
16225         var pn = this.dom.parentNode;
16226         if(shim.dom.parentNode != pn){
16227             pn.insertBefore(shim.dom, this.dom);
16228         }
16229         shim.setStyle('z-index', this.getZIndex()-2);
16230         this.shim = shim;
16231         return shim;
16232     },
16233
16234     hideShim : function(){
16235         if(this.shim){
16236             this.shim.setDisplayed(false);
16237             shims.push(this.shim);
16238             delete this.shim;
16239         }
16240     },
16241
16242     disableShadow : function(){
16243         if(this.shadow){
16244             this.shadowDisabled = true;
16245             this.shadow.hide();
16246             this.lastShadowOffset = this.shadowOffset;
16247             this.shadowOffset = 0;
16248         }
16249     },
16250
16251     enableShadow : function(show){
16252         if(this.shadow){
16253             this.shadowDisabled = false;
16254             this.shadowOffset = this.lastShadowOffset;
16255             delete this.lastShadowOffset;
16256             if(show){
16257                 this.sync(true);
16258             }
16259         }
16260     },
16261
16262     // private
16263     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16264     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16265     sync : function(doShow){
16266         var sw = this.shadow;
16267         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16268             var sh = this.getShim();
16269
16270             var w = this.getWidth(),
16271                 h = this.getHeight();
16272
16273             var l = this.getLeft(true),
16274                 t = this.getTop(true);
16275
16276             if(sw && !this.shadowDisabled){
16277                 if(doShow && !sw.isVisible()){
16278                     sw.show(this);
16279                 }else{
16280                     sw.realign(l, t, w, h);
16281                 }
16282                 if(sh){
16283                     if(doShow){
16284                        sh.show();
16285                     }
16286                     // fit the shim behind the shadow, so it is shimmed too
16287                     var a = sw.adjusts, s = sh.dom.style;
16288                     s.left = (Math.min(l, l+a.l))+"px";
16289                     s.top = (Math.min(t, t+a.t))+"px";
16290                     s.width = (w+a.w)+"px";
16291                     s.height = (h+a.h)+"px";
16292                 }
16293             }else if(sh){
16294                 if(doShow){
16295                    sh.show();
16296                 }
16297                 sh.setSize(w, h);
16298                 sh.setLeftTop(l, t);
16299             }
16300             
16301         }
16302     },
16303
16304     // private
16305     destroy : function(){
16306         this.hideShim();
16307         if(this.shadow){
16308             this.shadow.hide();
16309         }
16310         this.removeAllListeners();
16311         var pn = this.dom.parentNode;
16312         if(pn){
16313             pn.removeChild(this.dom);
16314         }
16315         Roo.Element.uncache(this.id);
16316     },
16317
16318     remove : function(){
16319         this.destroy();
16320     },
16321
16322     // private
16323     beginUpdate : function(){
16324         this.updating = true;
16325     },
16326
16327     // private
16328     endUpdate : function(){
16329         this.updating = false;
16330         this.sync(true);
16331     },
16332
16333     // private
16334     hideUnders : function(negOffset){
16335         if(this.shadow){
16336             this.shadow.hide();
16337         }
16338         this.hideShim();
16339     },
16340
16341     // private
16342     constrainXY : function(){
16343         if(this.constrain){
16344             var vw = Roo.lib.Dom.getViewWidth(),
16345                 vh = Roo.lib.Dom.getViewHeight();
16346             var s = Roo.get(document).getScroll();
16347
16348             var xy = this.getXY();
16349             var x = xy[0], y = xy[1];   
16350             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16351             // only move it if it needs it
16352             var moved = false;
16353             // first validate right/bottom
16354             if((x + w) > vw+s.left){
16355                 x = vw - w - this.shadowOffset;
16356                 moved = true;
16357             }
16358             if((y + h) > vh+s.top){
16359                 y = vh - h - this.shadowOffset;
16360                 moved = true;
16361             }
16362             // then make sure top/left isn't negative
16363             if(x < s.left){
16364                 x = s.left;
16365                 moved = true;
16366             }
16367             if(y < s.top){
16368                 y = s.top;
16369                 moved = true;
16370             }
16371             if(moved){
16372                 if(this.avoidY){
16373                     var ay = this.avoidY;
16374                     if(y <= ay && (y+h) >= ay){
16375                         y = ay-h-5;   
16376                     }
16377                 }
16378                 xy = [x, y];
16379                 this.storeXY(xy);
16380                 supr.setXY.call(this, xy);
16381                 this.sync();
16382             }
16383         }
16384     },
16385
16386     isVisible : function(){
16387         return this.visible;    
16388     },
16389
16390     // private
16391     showAction : function(){
16392         this.visible = true; // track visibility to prevent getStyle calls
16393         if(this.useDisplay === true){
16394             this.setDisplayed("");
16395         }else if(this.lastXY){
16396             supr.setXY.call(this, this.lastXY);
16397         }else if(this.lastLT){
16398             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16399         }
16400     },
16401
16402     // private
16403     hideAction : function(){
16404         this.visible = false;
16405         if(this.useDisplay === true){
16406             this.setDisplayed(false);
16407         }else{
16408             this.setLeftTop(-10000,-10000);
16409         }
16410     },
16411
16412     // overridden Element method
16413     setVisible : function(v, a, d, c, e){
16414         if(v){
16415             this.showAction();
16416         }
16417         if(a && v){
16418             var cb = function(){
16419                 this.sync(true);
16420                 if(c){
16421                     c();
16422                 }
16423             }.createDelegate(this);
16424             supr.setVisible.call(this, true, true, d, cb, e);
16425         }else{
16426             if(!v){
16427                 this.hideUnders(true);
16428             }
16429             var cb = c;
16430             if(a){
16431                 cb = function(){
16432                     this.hideAction();
16433                     if(c){
16434                         c();
16435                     }
16436                 }.createDelegate(this);
16437             }
16438             supr.setVisible.call(this, v, a, d, cb, e);
16439             if(v){
16440                 this.sync(true);
16441             }else if(!a){
16442                 this.hideAction();
16443             }
16444         }
16445     },
16446
16447     storeXY : function(xy){
16448         delete this.lastLT;
16449         this.lastXY = xy;
16450     },
16451
16452     storeLeftTop : function(left, top){
16453         delete this.lastXY;
16454         this.lastLT = [left, top];
16455     },
16456
16457     // private
16458     beforeFx : function(){
16459         this.beforeAction();
16460         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16461     },
16462
16463     // private
16464     afterFx : function(){
16465         Roo.Layer.superclass.afterFx.apply(this, arguments);
16466         this.sync(this.isVisible());
16467     },
16468
16469     // private
16470     beforeAction : function(){
16471         if(!this.updating && this.shadow){
16472             this.shadow.hide();
16473         }
16474     },
16475
16476     // overridden Element method
16477     setLeft : function(left){
16478         this.storeLeftTop(left, this.getTop(true));
16479         supr.setLeft.apply(this, arguments);
16480         this.sync();
16481     },
16482
16483     setTop : function(top){
16484         this.storeLeftTop(this.getLeft(true), top);
16485         supr.setTop.apply(this, arguments);
16486         this.sync();
16487     },
16488
16489     setLeftTop : function(left, top){
16490         this.storeLeftTop(left, top);
16491         supr.setLeftTop.apply(this, arguments);
16492         this.sync();
16493     },
16494
16495     setXY : function(xy, a, d, c, e){
16496         this.fixDisplay();
16497         this.beforeAction();
16498         this.storeXY(xy);
16499         var cb = this.createCB(c);
16500         supr.setXY.call(this, xy, a, d, cb, e);
16501         if(!a){
16502             cb();
16503         }
16504     },
16505
16506     // private
16507     createCB : function(c){
16508         var el = this;
16509         return function(){
16510             el.constrainXY();
16511             el.sync(true);
16512             if(c){
16513                 c();
16514             }
16515         };
16516     },
16517
16518     // overridden Element method
16519     setX : function(x, a, d, c, e){
16520         this.setXY([x, this.getY()], a, d, c, e);
16521     },
16522
16523     // overridden Element method
16524     setY : function(y, a, d, c, e){
16525         this.setXY([this.getX(), y], a, d, c, e);
16526     },
16527
16528     // overridden Element method
16529     setSize : function(w, h, a, d, c, e){
16530         this.beforeAction();
16531         var cb = this.createCB(c);
16532         supr.setSize.call(this, w, h, a, d, cb, e);
16533         if(!a){
16534             cb();
16535         }
16536     },
16537
16538     // overridden Element method
16539     setWidth : function(w, a, d, c, e){
16540         this.beforeAction();
16541         var cb = this.createCB(c);
16542         supr.setWidth.call(this, w, a, d, cb, e);
16543         if(!a){
16544             cb();
16545         }
16546     },
16547
16548     // overridden Element method
16549     setHeight : function(h, a, d, c, e){
16550         this.beforeAction();
16551         var cb = this.createCB(c);
16552         supr.setHeight.call(this, h, a, d, cb, e);
16553         if(!a){
16554             cb();
16555         }
16556     },
16557
16558     // overridden Element method
16559     setBounds : function(x, y, w, h, a, d, c, e){
16560         this.beforeAction();
16561         var cb = this.createCB(c);
16562         if(!a){
16563             this.storeXY([x, y]);
16564             supr.setXY.call(this, [x, y]);
16565             supr.setSize.call(this, w, h, a, d, cb, e);
16566             cb();
16567         }else{
16568             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16569         }
16570         return this;
16571     },
16572     
16573     /**
16574      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16575      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16576      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16577      * @param {Number} zindex The new z-index to set
16578      * @return {this} The Layer
16579      */
16580     setZIndex : function(zindex){
16581         this.zindex = zindex;
16582         this.setStyle("z-index", zindex + 2);
16583         if(this.shadow){
16584             this.shadow.setZIndex(zindex + 1);
16585         }
16586         if(this.shim){
16587             this.shim.setStyle("z-index", zindex);
16588         }
16589     }
16590 });
16591 })();/*
16592  * Original code for Roojs - LGPL
16593  * <script type="text/javascript">
16594  */
16595  
16596 /**
16597  * @class Roo.XComponent
16598  * A delayed Element creator...
16599  * Or a way to group chunks of interface together.
16600  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16601  *  used in conjunction with XComponent.build() it will create an instance of each element,
16602  *  then call addxtype() to build the User interface.
16603  * 
16604  * Mypart.xyx = new Roo.XComponent({
16605
16606     parent : 'Mypart.xyz', // empty == document.element.!!
16607     order : '001',
16608     name : 'xxxx'
16609     region : 'xxxx'
16610     disabled : function() {} 
16611      
16612     tree : function() { // return an tree of xtype declared components
16613         var MODULE = this;
16614         return 
16615         {
16616             xtype : 'NestedLayoutPanel',
16617             // technicall
16618         }
16619      ]
16620  *})
16621  *
16622  *
16623  * It can be used to build a big heiracy, with parent etc.
16624  * or you can just use this to render a single compoent to a dom element
16625  * MYPART.render(Roo.Element | String(id) | dom_element )
16626  *
16627  *
16628  * Usage patterns.
16629  *
16630  * Classic Roo
16631  *
16632  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16633  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16634  *
16635  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16636  *
16637  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16638  * - if mulitple topModules exist, the last one is defined as the top module.
16639  *
16640  * Embeded Roo
16641  * 
16642  * When the top level or multiple modules are to embedded into a existing HTML page,
16643  * the parent element can container '#id' of the element where the module will be drawn.
16644  *
16645  * Bootstrap Roo
16646  *
16647  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16648  * it relies more on a include mechanism, where sub modules are included into an outer page.
16649  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16650  * 
16651  * Bootstrap Roo Included elements
16652  *
16653  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16654  * hence confusing the component builder as it thinks there are multiple top level elements. 
16655  *
16656  * String Over-ride & Translations
16657  *
16658  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16659  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16660  * are needed. @see Roo.XComponent.overlayString  
16661  * 
16662  * 
16663  * 
16664  * @extends Roo.util.Observable
16665  * @constructor
16666  * @param cfg {Object} configuration of component
16667  * 
16668  */
16669 Roo.XComponent = function(cfg) {
16670     Roo.apply(this, cfg);
16671     this.addEvents({ 
16672         /**
16673              * @event built
16674              * Fires when this the componnt is built
16675              * @param {Roo.XComponent} c the component
16676              */
16677         'built' : true
16678         
16679     });
16680     this.region = this.region || 'center'; // default..
16681     Roo.XComponent.register(this);
16682     this.modules = false;
16683     this.el = false; // where the layout goes..
16684     
16685     
16686 }
16687 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16688     /**
16689      * @property el
16690      * The created element (with Roo.factory())
16691      * @type {Roo.Layout}
16692      */
16693     el  : false,
16694     
16695     /**
16696      * @property el
16697      * for BC  - use el in new code
16698      * @type {Roo.Layout}
16699      */
16700     panel : false,
16701     
16702     /**
16703      * @property layout
16704      * for BC  - use el in new code
16705      * @type {Roo.Layout}
16706      */
16707     layout : false,
16708     
16709      /**
16710      * @cfg {Function|boolean} disabled
16711      * If this module is disabled by some rule, return true from the funtion
16712      */
16713     disabled : false,
16714     
16715     /**
16716      * @cfg {String} parent 
16717      * Name of parent element which it get xtype added to..
16718      */
16719     parent: false,
16720     
16721     /**
16722      * @cfg {String} order
16723      * Used to set the order in which elements are created (usefull for multiple tabs)
16724      */
16725     
16726     order : false,
16727     /**
16728      * @cfg {String} name
16729      * String to display while loading.
16730      */
16731     name : false,
16732     /**
16733      * @cfg {String} region
16734      * Region to render component to (defaults to center)
16735      */
16736     region : 'center',
16737     
16738     /**
16739      * @cfg {Array} items
16740      * A single item array - the first element is the root of the tree..
16741      * It's done this way to stay compatible with the Xtype system...
16742      */
16743     items : false,
16744     
16745     /**
16746      * @property _tree
16747      * The method that retuns the tree of parts that make up this compoennt 
16748      * @type {function}
16749      */
16750     _tree  : false,
16751     
16752      /**
16753      * render
16754      * render element to dom or tree
16755      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16756      */
16757     
16758     render : function(el)
16759     {
16760         
16761         el = el || false;
16762         var hp = this.parent ? 1 : 0;
16763         Roo.debug &&  Roo.log(this);
16764         
16765         var tree = this._tree ? this._tree() : this.tree();
16766
16767         
16768         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16769             // if parent is a '#.....' string, then let's use that..
16770             var ename = this.parent.substr(1);
16771             this.parent = false;
16772             Roo.debug && Roo.log(ename);
16773             switch (ename) {
16774                 case 'bootstrap-body':
16775                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16776                         // this is the BorderLayout standard?
16777                        this.parent = { el : true };
16778                        break;
16779                     }
16780                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16781                         // need to insert stuff...
16782                         this.parent =  {
16783                              el : new Roo.bootstrap.layout.Border({
16784                                  el : document.body, 
16785                      
16786                                  center: {
16787                                     titlebar: false,
16788                                     autoScroll:false,
16789                                     closeOnTab: true,
16790                                     tabPosition: 'top',
16791                                       //resizeTabs: true,
16792                                     alwaysShowTabs: true,
16793                                     hideTabs: false
16794                                      //minTabWidth: 140
16795                                  }
16796                              })
16797                         
16798                          };
16799                          break;
16800                     }
16801                          
16802                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16803                         this.parent = { el :  new  Roo.bootstrap.Body() };
16804                         Roo.debug && Roo.log("setting el to doc body");
16805                          
16806                     } else {
16807                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16808                     }
16809                     break;
16810                 case 'bootstrap':
16811                     this.parent = { el : true};
16812                     // fall through
16813                 default:
16814                     el = Roo.get(ename);
16815                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16816                         this.parent = { el : true};
16817                     }
16818                     
16819                     break;
16820             }
16821                 
16822             
16823             if (!el && !this.parent) {
16824                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16825                 return;
16826             }
16827         }
16828         
16829         Roo.debug && Roo.log("EL:");
16830         Roo.debug && Roo.log(el);
16831         Roo.debug && Roo.log("this.parent.el:");
16832         Roo.debug && Roo.log(this.parent.el);
16833         
16834
16835         // altertive root elements ??? - we need a better way to indicate these.
16836         var is_alt = Roo.XComponent.is_alt ||
16837                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16838                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16839                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16840         
16841         
16842         
16843         if (!this.parent && is_alt) {
16844             //el = Roo.get(document.body);
16845             this.parent = { el : true };
16846         }
16847             
16848             
16849         
16850         if (!this.parent) {
16851             
16852             Roo.debug && Roo.log("no parent - creating one");
16853             
16854             el = el ? Roo.get(el) : false;      
16855             
16856             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16857                 
16858                 this.parent =  {
16859                     el : new Roo.bootstrap.layout.Border({
16860                         el: el || document.body,
16861                     
16862                         center: {
16863                             titlebar: false,
16864                             autoScroll:false,
16865                             closeOnTab: true,
16866                             tabPosition: 'top',
16867                              //resizeTabs: true,
16868                             alwaysShowTabs: false,
16869                             hideTabs: true,
16870                             minTabWidth: 140,
16871                             overflow: 'visible'
16872                          }
16873                      })
16874                 };
16875             } else {
16876             
16877                 // it's a top level one..
16878                 this.parent =  {
16879                     el : new Roo.BorderLayout(el || document.body, {
16880                         center: {
16881                             titlebar: false,
16882                             autoScroll:false,
16883                             closeOnTab: true,
16884                             tabPosition: 'top',
16885                              //resizeTabs: true,
16886                             alwaysShowTabs: el && hp? false :  true,
16887                             hideTabs: el || !hp ? true :  false,
16888                             minTabWidth: 140
16889                          }
16890                     })
16891                 };
16892             }
16893         }
16894         
16895         if (!this.parent.el) {
16896                 // probably an old style ctor, which has been disabled.
16897                 return;
16898
16899         }
16900                 // The 'tree' method is  '_tree now' 
16901             
16902         tree.region = tree.region || this.region;
16903         var is_body = false;
16904         if (this.parent.el === true) {
16905             // bootstrap... - body..
16906             if (el) {
16907                 tree.el = el;
16908             }
16909             this.parent.el = Roo.factory(tree);
16910             is_body = true;
16911         }
16912         
16913         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16914         this.fireEvent('built', this);
16915         
16916         this.panel = this.el;
16917         this.layout = this.panel.layout;
16918         this.parentLayout = this.parent.layout  || false;  
16919          
16920     }
16921     
16922 });
16923
16924 Roo.apply(Roo.XComponent, {
16925     /**
16926      * @property  hideProgress
16927      * true to disable the building progress bar.. usefull on single page renders.
16928      * @type Boolean
16929      */
16930     hideProgress : false,
16931     /**
16932      * @property  buildCompleted
16933      * True when the builder has completed building the interface.
16934      * @type Boolean
16935      */
16936     buildCompleted : false,
16937      
16938     /**
16939      * @property  topModule
16940      * the upper most module - uses document.element as it's constructor.
16941      * @type Object
16942      */
16943      
16944     topModule  : false,
16945       
16946     /**
16947      * @property  modules
16948      * array of modules to be created by registration system.
16949      * @type {Array} of Roo.XComponent
16950      */
16951     
16952     modules : [],
16953     /**
16954      * @property  elmodules
16955      * array of modules to be created by which use #ID 
16956      * @type {Array} of Roo.XComponent
16957      */
16958      
16959     elmodules : [],
16960
16961      /**
16962      * @property  is_alt
16963      * Is an alternative Root - normally used by bootstrap or other systems,
16964      *    where the top element in the tree can wrap 'body' 
16965      * @type {boolean}  (default false)
16966      */
16967      
16968     is_alt : false,
16969     /**
16970      * @property  build_from_html
16971      * Build elements from html - used by bootstrap HTML stuff 
16972      *    - this is cleared after build is completed
16973      * @type {boolean}    (default false)
16974      */
16975      
16976     build_from_html : false,
16977     /**
16978      * Register components to be built later.
16979      *
16980      * This solves the following issues
16981      * - Building is not done on page load, but after an authentication process has occured.
16982      * - Interface elements are registered on page load
16983      * - Parent Interface elements may not be loaded before child, so this handles that..
16984      * 
16985      *
16986      * example:
16987      * 
16988      * MyApp.register({
16989           order : '000001',
16990           module : 'Pman.Tab.projectMgr',
16991           region : 'center',
16992           parent : 'Pman.layout',
16993           disabled : false,  // or use a function..
16994         })
16995      
16996      * * @param {Object} details about module
16997      */
16998     register : function(obj) {
16999                 
17000         Roo.XComponent.event.fireEvent('register', obj);
17001         switch(typeof(obj.disabled) ) {
17002                 
17003             case 'undefined':
17004                 break;
17005             
17006             case 'function':
17007                 if ( obj.disabled() ) {
17008                         return;
17009                 }
17010                 break;
17011             
17012             default:
17013                 if (obj.disabled || obj.region == '#disabled') {
17014                         return;
17015                 }
17016                 break;
17017         }
17018                 
17019         this.modules.push(obj);
17020          
17021     },
17022     /**
17023      * convert a string to an object..
17024      * eg. 'AAA.BBB' -> finds AAA.BBB
17025
17026      */
17027     
17028     toObject : function(str)
17029     {
17030         if (!str || typeof(str) == 'object') {
17031             return str;
17032         }
17033         if (str.substring(0,1) == '#') {
17034             return str;
17035         }
17036
17037         var ar = str.split('.');
17038         var rt, o;
17039         rt = ar.shift();
17040             /** eval:var:o */
17041         try {
17042             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17043         } catch (e) {
17044             throw "Module not found : " + str;
17045         }
17046         
17047         if (o === false) {
17048             throw "Module not found : " + str;
17049         }
17050         Roo.each(ar, function(e) {
17051             if (typeof(o[e]) == 'undefined') {
17052                 throw "Module not found : " + str;
17053             }
17054             o = o[e];
17055         });
17056         
17057         return o;
17058         
17059     },
17060     
17061     
17062     /**
17063      * move modules into their correct place in the tree..
17064      * 
17065      */
17066     preBuild : function ()
17067     {
17068         var _t = this;
17069         Roo.each(this.modules , function (obj)
17070         {
17071             Roo.XComponent.event.fireEvent('beforebuild', obj);
17072             
17073             var opar = obj.parent;
17074             try { 
17075                 obj.parent = this.toObject(opar);
17076             } catch(e) {
17077                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17078                 return;
17079             }
17080             
17081             if (!obj.parent) {
17082                 Roo.debug && Roo.log("GOT top level module");
17083                 Roo.debug && Roo.log(obj);
17084                 obj.modules = new Roo.util.MixedCollection(false, 
17085                     function(o) { return o.order + '' }
17086                 );
17087                 this.topModule = obj;
17088                 return;
17089             }
17090                         // parent is a string (usually a dom element name..)
17091             if (typeof(obj.parent) == 'string') {
17092                 this.elmodules.push(obj);
17093                 return;
17094             }
17095             if (obj.parent.constructor != Roo.XComponent) {
17096                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17097             }
17098             if (!obj.parent.modules) {
17099                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17100                     function(o) { return o.order + '' }
17101                 );
17102             }
17103             if (obj.parent.disabled) {
17104                 obj.disabled = true;
17105             }
17106             obj.parent.modules.add(obj);
17107         }, this);
17108     },
17109     
17110      /**
17111      * make a list of modules to build.
17112      * @return {Array} list of modules. 
17113      */ 
17114     
17115     buildOrder : function()
17116     {
17117         var _this = this;
17118         var cmp = function(a,b) {   
17119             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17120         };
17121         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17122             throw "No top level modules to build";
17123         }
17124         
17125         // make a flat list in order of modules to build.
17126         var mods = this.topModule ? [ this.topModule ] : [];
17127                 
17128         
17129         // elmodules (is a list of DOM based modules )
17130         Roo.each(this.elmodules, function(e) {
17131             mods.push(e);
17132             if (!this.topModule &&
17133                 typeof(e.parent) == 'string' &&
17134                 e.parent.substring(0,1) == '#' &&
17135                 Roo.get(e.parent.substr(1))
17136                ) {
17137                 
17138                 _this.topModule = e;
17139             }
17140             
17141         });
17142
17143         
17144         // add modules to their parents..
17145         var addMod = function(m) {
17146             Roo.debug && Roo.log("build Order: add: " + m.name);
17147                 
17148             mods.push(m);
17149             if (m.modules && !m.disabled) {
17150                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17151                 m.modules.keySort('ASC',  cmp );
17152                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17153     
17154                 m.modules.each(addMod);
17155             } else {
17156                 Roo.debug && Roo.log("build Order: no child modules");
17157             }
17158             // not sure if this is used any more..
17159             if (m.finalize) {
17160                 m.finalize.name = m.name + " (clean up) ";
17161                 mods.push(m.finalize);
17162             }
17163             
17164         }
17165         if (this.topModule && this.topModule.modules) { 
17166             this.topModule.modules.keySort('ASC',  cmp );
17167             this.topModule.modules.each(addMod);
17168         } 
17169         return mods;
17170     },
17171     
17172      /**
17173      * Build the registered modules.
17174      * @param {Object} parent element.
17175      * @param {Function} optional method to call after module has been added.
17176      * 
17177      */ 
17178    
17179     build : function(opts) 
17180     {
17181         
17182         if (typeof(opts) != 'undefined') {
17183             Roo.apply(this,opts);
17184         }
17185         
17186         this.preBuild();
17187         var mods = this.buildOrder();
17188       
17189         //this.allmods = mods;
17190         //Roo.debug && Roo.log(mods);
17191         //return;
17192         if (!mods.length) { // should not happen
17193             throw "NO modules!!!";
17194         }
17195         
17196         
17197         var msg = "Building Interface...";
17198         // flash it up as modal - so we store the mask!?
17199         if (!this.hideProgress && Roo.MessageBox) {
17200             Roo.MessageBox.show({ title: 'loading' });
17201             Roo.MessageBox.show({
17202                title: "Please wait...",
17203                msg: msg,
17204                width:450,
17205                progress:true,
17206                buttons : false,
17207                closable:false,
17208                modal: false
17209               
17210             });
17211         }
17212         var total = mods.length;
17213         
17214         var _this = this;
17215         var progressRun = function() {
17216             if (!mods.length) {
17217                 Roo.debug && Roo.log('hide?');
17218                 if (!this.hideProgress && Roo.MessageBox) {
17219                     Roo.MessageBox.hide();
17220                 }
17221                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17222                 
17223                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17224                 
17225                 // THE END...
17226                 return false;   
17227             }
17228             
17229             var m = mods.shift();
17230             
17231             
17232             Roo.debug && Roo.log(m);
17233             // not sure if this is supported any more.. - modules that are are just function
17234             if (typeof(m) == 'function') { 
17235                 m.call(this);
17236                 return progressRun.defer(10, _this);
17237             } 
17238             
17239             
17240             msg = "Building Interface " + (total  - mods.length) + 
17241                     " of " + total + 
17242                     (m.name ? (' - ' + m.name) : '');
17243                         Roo.debug && Roo.log(msg);
17244             if (!_this.hideProgress &&  Roo.MessageBox) { 
17245                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17246             }
17247             
17248          
17249             // is the module disabled?
17250             var disabled = (typeof(m.disabled) == 'function') ?
17251                 m.disabled.call(m.module.disabled) : m.disabled;    
17252             
17253             
17254             if (disabled) {
17255                 return progressRun(); // we do not update the display!
17256             }
17257             
17258             // now build 
17259             
17260                         
17261                         
17262             m.render();
17263             // it's 10 on top level, and 1 on others??? why...
17264             return progressRun.defer(10, _this);
17265              
17266         }
17267         progressRun.defer(1, _this);
17268      
17269         
17270         
17271     },
17272     /**
17273      * Overlay a set of modified strings onto a component
17274      * This is dependant on our builder exporting the strings and 'named strings' elements.
17275      * 
17276      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17277      * @param {Object} associative array of 'named' string and it's new value.
17278      * 
17279      */
17280         overlayStrings : function( component, strings )
17281     {
17282         if (typeof(component['_named_strings']) == 'undefined') {
17283             throw "ERROR: component does not have _named_strings";
17284         }
17285         for ( var k in strings ) {
17286             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17287             if (md !== false) {
17288                 component['_strings'][md] = strings[k];
17289             } else {
17290                 Roo.log('could not find named string: ' + k + ' in');
17291                 Roo.log(component);
17292             }
17293             
17294         }
17295         
17296     },
17297     
17298         
17299         /**
17300          * Event Object.
17301          *
17302          *
17303          */
17304         event: false, 
17305     /**
17306          * wrapper for event.on - aliased later..  
17307          * Typically use to register a event handler for register:
17308          *
17309          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17310          *
17311          */
17312     on : false
17313    
17314     
17315     
17316 });
17317
17318 Roo.XComponent.event = new Roo.util.Observable({
17319                 events : { 
17320                         /**
17321                          * @event register
17322                          * Fires when an Component is registered,
17323                          * set the disable property on the Component to stop registration.
17324                          * @param {Roo.XComponent} c the component being registerd.
17325                          * 
17326                          */
17327                         'register' : true,
17328             /**
17329                          * @event beforebuild
17330                          * Fires before each Component is built
17331                          * can be used to apply permissions.
17332                          * @param {Roo.XComponent} c the component being registerd.
17333                          * 
17334                          */
17335                         'beforebuild' : true,
17336                         /**
17337                          * @event buildcomplete
17338                          * Fires on the top level element when all elements have been built
17339                          * @param {Roo.XComponent} the top level component.
17340                          */
17341                         'buildcomplete' : true
17342                         
17343                 }
17344 });
17345
17346 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17347  //
17348  /**
17349  * marked - a markdown parser
17350  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17351  * https://github.com/chjj/marked
17352  */
17353
17354
17355 /**
17356  *
17357  * Roo.Markdown - is a very crude wrapper around marked..
17358  *
17359  * usage:
17360  * 
17361  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17362  * 
17363  * Note: move the sample code to the bottom of this
17364  * file before uncommenting it.
17365  *
17366  */
17367
17368 Roo.Markdown = {};
17369 Roo.Markdown.toHtml = function(text) {
17370     
17371     var c = new Roo.Markdown.marked.setOptions({
17372             renderer: new Roo.Markdown.marked.Renderer(),
17373             gfm: true,
17374             tables: true,
17375             breaks: false,
17376             pedantic: false,
17377             sanitize: false,
17378             smartLists: true,
17379             smartypants: false
17380           });
17381     // A FEW HACKS!!?
17382     
17383     text = text.replace(/\\\n/g,' ');
17384     return Roo.Markdown.marked(text);
17385 };
17386 //
17387 // converter
17388 //
17389 // Wraps all "globals" so that the only thing
17390 // exposed is makeHtml().
17391 //
17392 (function() {
17393     
17394      /**
17395          * eval:var:escape
17396          * eval:var:unescape
17397          * eval:var:replace
17398          */
17399       
17400     /**
17401      * Helpers
17402      */
17403     
17404     var escape = function (html, encode) {
17405       return html
17406         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17407         .replace(/</g, '&lt;')
17408         .replace(/>/g, '&gt;')
17409         .replace(/"/g, '&quot;')
17410         .replace(/'/g, '&#39;');
17411     }
17412     
17413     var unescape = function (html) {
17414         // explicitly match decimal, hex, and named HTML entities 
17415       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17416         n = n.toLowerCase();
17417         if (n === 'colon') { return ':'; }
17418         if (n.charAt(0) === '#') {
17419           return n.charAt(1) === 'x'
17420             ? String.fromCharCode(parseInt(n.substring(2), 16))
17421             : String.fromCharCode(+n.substring(1));
17422         }
17423         return '';
17424       });
17425     }
17426     
17427     var replace = function (regex, opt) {
17428       regex = regex.source;
17429       opt = opt || '';
17430       return function self(name, val) {
17431         if (!name) { return new RegExp(regex, opt); }
17432         val = val.source || val;
17433         val = val.replace(/(^|[^\[])\^/g, '$1');
17434         regex = regex.replace(name, val);
17435         return self;
17436       };
17437     }
17438
17439
17440          /**
17441          * eval:var:noop
17442     */
17443     var noop = function () {}
17444     noop.exec = noop;
17445     
17446          /**
17447          * eval:var:merge
17448     */
17449     var merge = function (obj) {
17450       var i = 1
17451         , target
17452         , key;
17453     
17454       for (; i < arguments.length; i++) {
17455         target = arguments[i];
17456         for (key in target) {
17457           if (Object.prototype.hasOwnProperty.call(target, key)) {
17458             obj[key] = target[key];
17459           }
17460         }
17461       }
17462     
17463       return obj;
17464     }
17465     
17466     
17467     /**
17468      * Block-Level Grammar
17469      */
17470     
17471     
17472     
17473     
17474     var block = {
17475       newline: /^\n+/,
17476       code: /^( {4}[^\n]+\n*)+/,
17477       fences: noop,
17478       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17479       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17480       nptable: noop,
17481       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17482       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17483       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17484       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17485       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17486       table: noop,
17487       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17488       text: /^[^\n]+/
17489     };
17490     
17491     block.bullet = /(?:[*+-]|\d+\.)/;
17492     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17493     block.item = replace(block.item, 'gm')
17494       (/bull/g, block.bullet)
17495       ();
17496     
17497     block.list = replace(block.list)
17498       (/bull/g, block.bullet)
17499       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17500       ('def', '\\n+(?=' + block.def.source + ')')
17501       ();
17502     
17503     block.blockquote = replace(block.blockquote)
17504       ('def', block.def)
17505       ();
17506     
17507     block._tag = '(?!(?:'
17508       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17509       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17510       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17511     
17512     block.html = replace(block.html)
17513       ('comment', /<!--[\s\S]*?-->/)
17514       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17515       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17516       (/tag/g, block._tag)
17517       ();
17518     
17519     block.paragraph = replace(block.paragraph)
17520       ('hr', block.hr)
17521       ('heading', block.heading)
17522       ('lheading', block.lheading)
17523       ('blockquote', block.blockquote)
17524       ('tag', '<' + block._tag)
17525       ('def', block.def)
17526       ();
17527     
17528     /**
17529      * Normal Block Grammar
17530      */
17531     
17532     block.normal = merge({}, block);
17533     
17534     /**
17535      * GFM Block Grammar
17536      */
17537     
17538     block.gfm = merge({}, block.normal, {
17539       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17540       paragraph: /^/,
17541       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17542     });
17543     
17544     block.gfm.paragraph = replace(block.paragraph)
17545       ('(?!', '(?!'
17546         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17547         + block.list.source.replace('\\1', '\\3') + '|')
17548       ();
17549     
17550     /**
17551      * GFM + Tables Block Grammar
17552      */
17553     
17554     block.tables = merge({}, block.gfm, {
17555       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17556       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17557     });
17558     
17559     /**
17560      * Block Lexer
17561      */
17562     
17563     var Lexer = function (options) {
17564       this.tokens = [];
17565       this.tokens.links = {};
17566       this.options = options || marked.defaults;
17567       this.rules = block.normal;
17568     
17569       if (this.options.gfm) {
17570         if (this.options.tables) {
17571           this.rules = block.tables;
17572         } else {
17573           this.rules = block.gfm;
17574         }
17575       }
17576     }
17577     
17578     /**
17579      * Expose Block Rules
17580      */
17581     
17582     Lexer.rules = block;
17583     
17584     /**
17585      * Static Lex Method
17586      */
17587     
17588     Lexer.lex = function(src, options) {
17589       var lexer = new Lexer(options);
17590       return lexer.lex(src);
17591     };
17592     
17593     /**
17594      * Preprocessing
17595      */
17596     
17597     Lexer.prototype.lex = function(src) {
17598       src = src
17599         .replace(/\r\n|\r/g, '\n')
17600         .replace(/\t/g, '    ')
17601         .replace(/\u00a0/g, ' ')
17602         .replace(/\u2424/g, '\n');
17603     
17604       return this.token(src, true);
17605     };
17606     
17607     /**
17608      * Lexing
17609      */
17610     
17611     Lexer.prototype.token = function(src, top, bq) {
17612       var src = src.replace(/^ +$/gm, '')
17613         , next
17614         , loose
17615         , cap
17616         , bull
17617         , b
17618         , item
17619         , space
17620         , i
17621         , l;
17622     
17623       while (src) {
17624         // newline
17625         if (cap = this.rules.newline.exec(src)) {
17626           src = src.substring(cap[0].length);
17627           if (cap[0].length > 1) {
17628             this.tokens.push({
17629               type: 'space'
17630             });
17631           }
17632         }
17633     
17634         // code
17635         if (cap = this.rules.code.exec(src)) {
17636           src = src.substring(cap[0].length);
17637           cap = cap[0].replace(/^ {4}/gm, '');
17638           this.tokens.push({
17639             type: 'code',
17640             text: !this.options.pedantic
17641               ? cap.replace(/\n+$/, '')
17642               : cap
17643           });
17644           continue;
17645         }
17646     
17647         // fences (gfm)
17648         if (cap = this.rules.fences.exec(src)) {
17649           src = src.substring(cap[0].length);
17650           this.tokens.push({
17651             type: 'code',
17652             lang: cap[2],
17653             text: cap[3] || ''
17654           });
17655           continue;
17656         }
17657     
17658         // heading
17659         if (cap = this.rules.heading.exec(src)) {
17660           src = src.substring(cap[0].length);
17661           this.tokens.push({
17662             type: 'heading',
17663             depth: cap[1].length,
17664             text: cap[2]
17665           });
17666           continue;
17667         }
17668     
17669         // table no leading pipe (gfm)
17670         if (top && (cap = this.rules.nptable.exec(src))) {
17671           src = src.substring(cap[0].length);
17672     
17673           item = {
17674             type: 'table',
17675             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17676             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17677             cells: cap[3].replace(/\n$/, '').split('\n')
17678           };
17679     
17680           for (i = 0; i < item.align.length; i++) {
17681             if (/^ *-+: *$/.test(item.align[i])) {
17682               item.align[i] = 'right';
17683             } else if (/^ *:-+: *$/.test(item.align[i])) {
17684               item.align[i] = 'center';
17685             } else if (/^ *:-+ *$/.test(item.align[i])) {
17686               item.align[i] = 'left';
17687             } else {
17688               item.align[i] = null;
17689             }
17690           }
17691     
17692           for (i = 0; i < item.cells.length; i++) {
17693             item.cells[i] = item.cells[i].split(/ *\| */);
17694           }
17695     
17696           this.tokens.push(item);
17697     
17698           continue;
17699         }
17700     
17701         // lheading
17702         if (cap = this.rules.lheading.exec(src)) {
17703           src = src.substring(cap[0].length);
17704           this.tokens.push({
17705             type: 'heading',
17706             depth: cap[2] === '=' ? 1 : 2,
17707             text: cap[1]
17708           });
17709           continue;
17710         }
17711     
17712         // hr
17713         if (cap = this.rules.hr.exec(src)) {
17714           src = src.substring(cap[0].length);
17715           this.tokens.push({
17716             type: 'hr'
17717           });
17718           continue;
17719         }
17720     
17721         // blockquote
17722         if (cap = this.rules.blockquote.exec(src)) {
17723           src = src.substring(cap[0].length);
17724     
17725           this.tokens.push({
17726             type: 'blockquote_start'
17727           });
17728     
17729           cap = cap[0].replace(/^ *> ?/gm, '');
17730     
17731           // Pass `top` to keep the current
17732           // "toplevel" state. This is exactly
17733           // how markdown.pl works.
17734           this.token(cap, top, true);
17735     
17736           this.tokens.push({
17737             type: 'blockquote_end'
17738           });
17739     
17740           continue;
17741         }
17742     
17743         // list
17744         if (cap = this.rules.list.exec(src)) {
17745           src = src.substring(cap[0].length);
17746           bull = cap[2];
17747     
17748           this.tokens.push({
17749             type: 'list_start',
17750             ordered: bull.length > 1
17751           });
17752     
17753           // Get each top-level item.
17754           cap = cap[0].match(this.rules.item);
17755     
17756           next = false;
17757           l = cap.length;
17758           i = 0;
17759     
17760           for (; i < l; i++) {
17761             item = cap[i];
17762     
17763             // Remove the list item's bullet
17764             // so it is seen as the next token.
17765             space = item.length;
17766             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17767     
17768             // Outdent whatever the
17769             // list item contains. Hacky.
17770             if (~item.indexOf('\n ')) {
17771               space -= item.length;
17772               item = !this.options.pedantic
17773                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17774                 : item.replace(/^ {1,4}/gm, '');
17775             }
17776     
17777             // Determine whether the next list item belongs here.
17778             // Backpedal if it does not belong in this list.
17779             if (this.options.smartLists && i !== l - 1) {
17780               b = block.bullet.exec(cap[i + 1])[0];
17781               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17782                 src = cap.slice(i + 1).join('\n') + src;
17783                 i = l - 1;
17784               }
17785             }
17786     
17787             // Determine whether item is loose or not.
17788             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17789             // for discount behavior.
17790             loose = next || /\n\n(?!\s*$)/.test(item);
17791             if (i !== l - 1) {
17792               next = item.charAt(item.length - 1) === '\n';
17793               if (!loose) { loose = next; }
17794             }
17795     
17796             this.tokens.push({
17797               type: loose
17798                 ? 'loose_item_start'
17799                 : 'list_item_start'
17800             });
17801     
17802             // Recurse.
17803             this.token(item, false, bq);
17804     
17805             this.tokens.push({
17806               type: 'list_item_end'
17807             });
17808           }
17809     
17810           this.tokens.push({
17811             type: 'list_end'
17812           });
17813     
17814           continue;
17815         }
17816     
17817         // html
17818         if (cap = this.rules.html.exec(src)) {
17819           src = src.substring(cap[0].length);
17820           this.tokens.push({
17821             type: this.options.sanitize
17822               ? 'paragraph'
17823               : 'html',
17824             pre: !this.options.sanitizer
17825               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17826             text: cap[0]
17827           });
17828           continue;
17829         }
17830     
17831         // def
17832         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17833           src = src.substring(cap[0].length);
17834           this.tokens.links[cap[1].toLowerCase()] = {
17835             href: cap[2],
17836             title: cap[3]
17837           };
17838           continue;
17839         }
17840     
17841         // table (gfm)
17842         if (top && (cap = this.rules.table.exec(src))) {
17843           src = src.substring(cap[0].length);
17844     
17845           item = {
17846             type: 'table',
17847             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17848             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17849             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17850           };
17851     
17852           for (i = 0; i < item.align.length; i++) {
17853             if (/^ *-+: *$/.test(item.align[i])) {
17854               item.align[i] = 'right';
17855             } else if (/^ *:-+: *$/.test(item.align[i])) {
17856               item.align[i] = 'center';
17857             } else if (/^ *:-+ *$/.test(item.align[i])) {
17858               item.align[i] = 'left';
17859             } else {
17860               item.align[i] = null;
17861             }
17862           }
17863     
17864           for (i = 0; i < item.cells.length; i++) {
17865             item.cells[i] = item.cells[i]
17866               .replace(/^ *\| *| *\| *$/g, '')
17867               .split(/ *\| */);
17868           }
17869     
17870           this.tokens.push(item);
17871     
17872           continue;
17873         }
17874     
17875         // top-level paragraph
17876         if (top && (cap = this.rules.paragraph.exec(src))) {
17877           src = src.substring(cap[0].length);
17878           this.tokens.push({
17879             type: 'paragraph',
17880             text: cap[1].charAt(cap[1].length - 1) === '\n'
17881               ? cap[1].slice(0, -1)
17882               : cap[1]
17883           });
17884           continue;
17885         }
17886     
17887         // text
17888         if (cap = this.rules.text.exec(src)) {
17889           // Top-level should never reach here.
17890           src = src.substring(cap[0].length);
17891           this.tokens.push({
17892             type: 'text',
17893             text: cap[0]
17894           });
17895           continue;
17896         }
17897     
17898         if (src) {
17899           throw new
17900             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17901         }
17902       }
17903     
17904       return this.tokens;
17905     };
17906     
17907     /**
17908      * Inline-Level Grammar
17909      */
17910     
17911     var inline = {
17912       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17913       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17914       url: noop,
17915       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17916       link: /^!?\[(inside)\]\(href\)/,
17917       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17918       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17919       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17920       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17921       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17922       br: /^ {2,}\n(?!\s*$)/,
17923       del: noop,
17924       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17925     };
17926     
17927     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17928     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17929     
17930     inline.link = replace(inline.link)
17931       ('inside', inline._inside)
17932       ('href', inline._href)
17933       ();
17934     
17935     inline.reflink = replace(inline.reflink)
17936       ('inside', inline._inside)
17937       ();
17938     
17939     /**
17940      * Normal Inline Grammar
17941      */
17942     
17943     inline.normal = merge({}, inline);
17944     
17945     /**
17946      * Pedantic Inline Grammar
17947      */
17948     
17949     inline.pedantic = merge({}, inline.normal, {
17950       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17951       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17952     });
17953     
17954     /**
17955      * GFM Inline Grammar
17956      */
17957     
17958     inline.gfm = merge({}, inline.normal, {
17959       escape: replace(inline.escape)('])', '~|])')(),
17960       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17961       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17962       text: replace(inline.text)
17963         (']|', '~]|')
17964         ('|', '|https?://|')
17965         ()
17966     });
17967     
17968     /**
17969      * GFM + Line Breaks Inline Grammar
17970      */
17971     
17972     inline.breaks = merge({}, inline.gfm, {
17973       br: replace(inline.br)('{2,}', '*')(),
17974       text: replace(inline.gfm.text)('{2,}', '*')()
17975     });
17976     
17977     /**
17978      * Inline Lexer & Compiler
17979      */
17980     
17981     var InlineLexer  = function (links, options) {
17982       this.options = options || marked.defaults;
17983       this.links = links;
17984       this.rules = inline.normal;
17985       this.renderer = this.options.renderer || new Renderer;
17986       this.renderer.options = this.options;
17987     
17988       if (!this.links) {
17989         throw new
17990           Error('Tokens array requires a `links` property.');
17991       }
17992     
17993       if (this.options.gfm) {
17994         if (this.options.breaks) {
17995           this.rules = inline.breaks;
17996         } else {
17997           this.rules = inline.gfm;
17998         }
17999       } else if (this.options.pedantic) {
18000         this.rules = inline.pedantic;
18001       }
18002     }
18003     
18004     /**
18005      * Expose Inline Rules
18006      */
18007     
18008     InlineLexer.rules = inline;
18009     
18010     /**
18011      * Static Lexing/Compiling Method
18012      */
18013     
18014     InlineLexer.output = function(src, links, options) {
18015       var inline = new InlineLexer(links, options);
18016       return inline.output(src);
18017     };
18018     
18019     /**
18020      * Lexing/Compiling
18021      */
18022     
18023     InlineLexer.prototype.output = function(src) {
18024       var out = ''
18025         , link
18026         , text
18027         , href
18028         , cap;
18029     
18030       while (src) {
18031         // escape
18032         if (cap = this.rules.escape.exec(src)) {
18033           src = src.substring(cap[0].length);
18034           out += cap[1];
18035           continue;
18036         }
18037     
18038         // autolink
18039         if (cap = this.rules.autolink.exec(src)) {
18040           src = src.substring(cap[0].length);
18041           if (cap[2] === '@') {
18042             text = cap[1].charAt(6) === ':'
18043               ? this.mangle(cap[1].substring(7))
18044               : this.mangle(cap[1]);
18045             href = this.mangle('mailto:') + text;
18046           } else {
18047             text = escape(cap[1]);
18048             href = text;
18049           }
18050           out += this.renderer.link(href, null, text);
18051           continue;
18052         }
18053     
18054         // url (gfm)
18055         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18056           src = src.substring(cap[0].length);
18057           text = escape(cap[1]);
18058           href = text;
18059           out += this.renderer.link(href, null, text);
18060           continue;
18061         }
18062     
18063         // tag
18064         if (cap = this.rules.tag.exec(src)) {
18065           if (!this.inLink && /^<a /i.test(cap[0])) {
18066             this.inLink = true;
18067           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18068             this.inLink = false;
18069           }
18070           src = src.substring(cap[0].length);
18071           out += this.options.sanitize
18072             ? this.options.sanitizer
18073               ? this.options.sanitizer(cap[0])
18074               : escape(cap[0])
18075             : cap[0];
18076           continue;
18077         }
18078     
18079         // link
18080         if (cap = this.rules.link.exec(src)) {
18081           src = src.substring(cap[0].length);
18082           this.inLink = true;
18083           out += this.outputLink(cap, {
18084             href: cap[2],
18085             title: cap[3]
18086           });
18087           this.inLink = false;
18088           continue;
18089         }
18090     
18091         // reflink, nolink
18092         if ((cap = this.rules.reflink.exec(src))
18093             || (cap = this.rules.nolink.exec(src))) {
18094           src = src.substring(cap[0].length);
18095           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18096           link = this.links[link.toLowerCase()];
18097           if (!link || !link.href) {
18098             out += cap[0].charAt(0);
18099             src = cap[0].substring(1) + src;
18100             continue;
18101           }
18102           this.inLink = true;
18103           out += this.outputLink(cap, link);
18104           this.inLink = false;
18105           continue;
18106         }
18107     
18108         // strong
18109         if (cap = this.rules.strong.exec(src)) {
18110           src = src.substring(cap[0].length);
18111           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18112           continue;
18113         }
18114     
18115         // em
18116         if (cap = this.rules.em.exec(src)) {
18117           src = src.substring(cap[0].length);
18118           out += this.renderer.em(this.output(cap[2] || cap[1]));
18119           continue;
18120         }
18121     
18122         // code
18123         if (cap = this.rules.code.exec(src)) {
18124           src = src.substring(cap[0].length);
18125           out += this.renderer.codespan(escape(cap[2], true));
18126           continue;
18127         }
18128     
18129         // br
18130         if (cap = this.rules.br.exec(src)) {
18131           src = src.substring(cap[0].length);
18132           out += this.renderer.br();
18133           continue;
18134         }
18135     
18136         // del (gfm)
18137         if (cap = this.rules.del.exec(src)) {
18138           src = src.substring(cap[0].length);
18139           out += this.renderer.del(this.output(cap[1]));
18140           continue;
18141         }
18142     
18143         // text
18144         if (cap = this.rules.text.exec(src)) {
18145           src = src.substring(cap[0].length);
18146           out += this.renderer.text(escape(this.smartypants(cap[0])));
18147           continue;
18148         }
18149     
18150         if (src) {
18151           throw new
18152             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18153         }
18154       }
18155     
18156       return out;
18157     };
18158     
18159     /**
18160      * Compile Link
18161      */
18162     
18163     InlineLexer.prototype.outputLink = function(cap, link) {
18164       var href = escape(link.href)
18165         , title = link.title ? escape(link.title) : null;
18166     
18167       return cap[0].charAt(0) !== '!'
18168         ? this.renderer.link(href, title, this.output(cap[1]))
18169         : this.renderer.image(href, title, escape(cap[1]));
18170     };
18171     
18172     /**
18173      * Smartypants Transformations
18174      */
18175     
18176     InlineLexer.prototype.smartypants = function(text) {
18177       if (!this.options.smartypants)  { return text; }
18178       return text
18179         // em-dashes
18180         .replace(/---/g, '\u2014')
18181         // en-dashes
18182         .replace(/--/g, '\u2013')
18183         // opening singles
18184         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18185         // closing singles & apostrophes
18186         .replace(/'/g, '\u2019')
18187         // opening doubles
18188         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18189         // closing doubles
18190         .replace(/"/g, '\u201d')
18191         // ellipses
18192         .replace(/\.{3}/g, '\u2026');
18193     };
18194     
18195     /**
18196      * Mangle Links
18197      */
18198     
18199     InlineLexer.prototype.mangle = function(text) {
18200       if (!this.options.mangle) { return text; }
18201       var out = ''
18202         , l = text.length
18203         , i = 0
18204         , ch;
18205     
18206       for (; i < l; i++) {
18207         ch = text.charCodeAt(i);
18208         if (Math.random() > 0.5) {
18209           ch = 'x' + ch.toString(16);
18210         }
18211         out += '&#' + ch + ';';
18212       }
18213     
18214       return out;
18215     };
18216     
18217     /**
18218      * Renderer
18219      */
18220     
18221      /**
18222          * eval:var:Renderer
18223     */
18224     
18225     var Renderer   = function (options) {
18226       this.options = options || {};
18227     }
18228     
18229     Renderer.prototype.code = function(code, lang, escaped) {
18230       if (this.options.highlight) {
18231         var out = this.options.highlight(code, lang);
18232         if (out != null && out !== code) {
18233           escaped = true;
18234           code = out;
18235         }
18236       } else {
18237             // hack!!! - it's already escapeD?
18238             escaped = true;
18239       }
18240     
18241       if (!lang) {
18242         return '<pre><code>'
18243           + (escaped ? code : escape(code, true))
18244           + '\n</code></pre>';
18245       }
18246     
18247       return '<pre><code class="'
18248         + this.options.langPrefix
18249         + escape(lang, true)
18250         + '">'
18251         + (escaped ? code : escape(code, true))
18252         + '\n</code></pre>\n';
18253     };
18254     
18255     Renderer.prototype.blockquote = function(quote) {
18256       return '<blockquote>\n' + quote + '</blockquote>\n';
18257     };
18258     
18259     Renderer.prototype.html = function(html) {
18260       return html;
18261     };
18262     
18263     Renderer.prototype.heading = function(text, level, raw) {
18264       return '<h'
18265         + level
18266         + ' id="'
18267         + this.options.headerPrefix
18268         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18269         + '">'
18270         + text
18271         + '</h'
18272         + level
18273         + '>\n';
18274     };
18275     
18276     Renderer.prototype.hr = function() {
18277       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18278     };
18279     
18280     Renderer.prototype.list = function(body, ordered) {
18281       var type = ordered ? 'ol' : 'ul';
18282       return '<' + type + '>\n' + body + '</' + type + '>\n';
18283     };
18284     
18285     Renderer.prototype.listitem = function(text) {
18286       return '<li>' + text + '</li>\n';
18287     };
18288     
18289     Renderer.prototype.paragraph = function(text) {
18290       return '<p>' + text + '</p>\n';
18291     };
18292     
18293     Renderer.prototype.table = function(header, body) {
18294       return '<table class="table table-striped">\n'
18295         + '<thead>\n'
18296         + header
18297         + '</thead>\n'
18298         + '<tbody>\n'
18299         + body
18300         + '</tbody>\n'
18301         + '</table>\n';
18302     };
18303     
18304     Renderer.prototype.tablerow = function(content) {
18305       return '<tr>\n' + content + '</tr>\n';
18306     };
18307     
18308     Renderer.prototype.tablecell = function(content, flags) {
18309       var type = flags.header ? 'th' : 'td';
18310       var tag = flags.align
18311         ? '<' + type + ' style="text-align:' + flags.align + '">'
18312         : '<' + type + '>';
18313       return tag + content + '</' + type + '>\n';
18314     };
18315     
18316     // span level renderer
18317     Renderer.prototype.strong = function(text) {
18318       return '<strong>' + text + '</strong>';
18319     };
18320     
18321     Renderer.prototype.em = function(text) {
18322       return '<em>' + text + '</em>';
18323     };
18324     
18325     Renderer.prototype.codespan = function(text) {
18326       return '<code>' + text + '</code>';
18327     };
18328     
18329     Renderer.prototype.br = function() {
18330       return this.options.xhtml ? '<br/>' : '<br>';
18331     };
18332     
18333     Renderer.prototype.del = function(text) {
18334       return '<del>' + text + '</del>';
18335     };
18336     
18337     Renderer.prototype.link = function(href, title, text) {
18338       if (this.options.sanitize) {
18339         try {
18340           var prot = decodeURIComponent(unescape(href))
18341             .replace(/[^\w:]/g, '')
18342             .toLowerCase();
18343         } catch (e) {
18344           return '';
18345         }
18346         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18347           return '';
18348         }
18349       }
18350       var out = '<a href="' + href + '"';
18351       if (title) {
18352         out += ' title="' + title + '"';
18353       }
18354       out += '>' + text + '</a>';
18355       return out;
18356     };
18357     
18358     Renderer.prototype.image = function(href, title, text) {
18359       var out = '<img src="' + href + '" alt="' + text + '"';
18360       if (title) {
18361         out += ' title="' + title + '"';
18362       }
18363       out += this.options.xhtml ? '/>' : '>';
18364       return out;
18365     };
18366     
18367     Renderer.prototype.text = function(text) {
18368       return text;
18369     };
18370     
18371     /**
18372      * Parsing & Compiling
18373      */
18374          /**
18375          * eval:var:Parser
18376     */
18377     
18378     var Parser= function (options) {
18379       this.tokens = [];
18380       this.token = null;
18381       this.options = options || marked.defaults;
18382       this.options.renderer = this.options.renderer || new Renderer;
18383       this.renderer = this.options.renderer;
18384       this.renderer.options = this.options;
18385     }
18386     
18387     /**
18388      * Static Parse Method
18389      */
18390     
18391     Parser.parse = function(src, options, renderer) {
18392       var parser = new Parser(options, renderer);
18393       return parser.parse(src);
18394     };
18395     
18396     /**
18397      * Parse Loop
18398      */
18399     
18400     Parser.prototype.parse = function(src) {
18401       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18402       this.tokens = src.reverse();
18403     
18404       var out = '';
18405       while (this.next()) {
18406         out += this.tok();
18407       }
18408     
18409       return out;
18410     };
18411     
18412     /**
18413      * Next Token
18414      */
18415     
18416     Parser.prototype.next = function() {
18417       return this.token = this.tokens.pop();
18418     };
18419     
18420     /**
18421      * Preview Next Token
18422      */
18423     
18424     Parser.prototype.peek = function() {
18425       return this.tokens[this.tokens.length - 1] || 0;
18426     };
18427     
18428     /**
18429      * Parse Text Tokens
18430      */
18431     
18432     Parser.prototype.parseText = function() {
18433       var body = this.token.text;
18434     
18435       while (this.peek().type === 'text') {
18436         body += '\n' + this.next().text;
18437       }
18438     
18439       return this.inline.output(body);
18440     };
18441     
18442     /**
18443      * Parse Current Token
18444      */
18445     
18446     Parser.prototype.tok = function() {
18447       switch (this.token.type) {
18448         case 'space': {
18449           return '';
18450         }
18451         case 'hr': {
18452           return this.renderer.hr();
18453         }
18454         case 'heading': {
18455           return this.renderer.heading(
18456             this.inline.output(this.token.text),
18457             this.token.depth,
18458             this.token.text);
18459         }
18460         case 'code': {
18461           return this.renderer.code(this.token.text,
18462             this.token.lang,
18463             this.token.escaped);
18464         }
18465         case 'table': {
18466           var header = ''
18467             , body = ''
18468             , i
18469             , row
18470             , cell
18471             , flags
18472             , j;
18473     
18474           // header
18475           cell = '';
18476           for (i = 0; i < this.token.header.length; i++) {
18477             flags = { header: true, align: this.token.align[i] };
18478             cell += this.renderer.tablecell(
18479               this.inline.output(this.token.header[i]),
18480               { header: true, align: this.token.align[i] }
18481             );
18482           }
18483           header += this.renderer.tablerow(cell);
18484     
18485           for (i = 0; i < this.token.cells.length; i++) {
18486             row = this.token.cells[i];
18487     
18488             cell = '';
18489             for (j = 0; j < row.length; j++) {
18490               cell += this.renderer.tablecell(
18491                 this.inline.output(row[j]),
18492                 { header: false, align: this.token.align[j] }
18493               );
18494             }
18495     
18496             body += this.renderer.tablerow(cell);
18497           }
18498           return this.renderer.table(header, body);
18499         }
18500         case 'blockquote_start': {
18501           var body = '';
18502     
18503           while (this.next().type !== 'blockquote_end') {
18504             body += this.tok();
18505           }
18506     
18507           return this.renderer.blockquote(body);
18508         }
18509         case 'list_start': {
18510           var body = ''
18511             , ordered = this.token.ordered;
18512     
18513           while (this.next().type !== 'list_end') {
18514             body += this.tok();
18515           }
18516     
18517           return this.renderer.list(body, ordered);
18518         }
18519         case 'list_item_start': {
18520           var body = '';
18521     
18522           while (this.next().type !== 'list_item_end') {
18523             body += this.token.type === 'text'
18524               ? this.parseText()
18525               : this.tok();
18526           }
18527     
18528           return this.renderer.listitem(body);
18529         }
18530         case 'loose_item_start': {
18531           var body = '';
18532     
18533           while (this.next().type !== 'list_item_end') {
18534             body += this.tok();
18535           }
18536     
18537           return this.renderer.listitem(body);
18538         }
18539         case 'html': {
18540           var html = !this.token.pre && !this.options.pedantic
18541             ? this.inline.output(this.token.text)
18542             : this.token.text;
18543           return this.renderer.html(html);
18544         }
18545         case 'paragraph': {
18546           return this.renderer.paragraph(this.inline.output(this.token.text));
18547         }
18548         case 'text': {
18549           return this.renderer.paragraph(this.parseText());
18550         }
18551       }
18552     };
18553   
18554     
18555     /**
18556      * Marked
18557      */
18558          /**
18559          * eval:var:marked
18560     */
18561     var marked = function (src, opt, callback) {
18562       if (callback || typeof opt === 'function') {
18563         if (!callback) {
18564           callback = opt;
18565           opt = null;
18566         }
18567     
18568         opt = merge({}, marked.defaults, opt || {});
18569     
18570         var highlight = opt.highlight
18571           , tokens
18572           , pending
18573           , i = 0;
18574     
18575         try {
18576           tokens = Lexer.lex(src, opt)
18577         } catch (e) {
18578           return callback(e);
18579         }
18580     
18581         pending = tokens.length;
18582          /**
18583          * eval:var:done
18584     */
18585         var done = function(err) {
18586           if (err) {
18587             opt.highlight = highlight;
18588             return callback(err);
18589           }
18590     
18591           var out;
18592     
18593           try {
18594             out = Parser.parse(tokens, opt);
18595           } catch (e) {
18596             err = e;
18597           }
18598     
18599           opt.highlight = highlight;
18600     
18601           return err
18602             ? callback(err)
18603             : callback(null, out);
18604         };
18605     
18606         if (!highlight || highlight.length < 3) {
18607           return done();
18608         }
18609     
18610         delete opt.highlight;
18611     
18612         if (!pending) { return done(); }
18613     
18614         for (; i < tokens.length; i++) {
18615           (function(token) {
18616             if (token.type !== 'code') {
18617               return --pending || done();
18618             }
18619             return highlight(token.text, token.lang, function(err, code) {
18620               if (err) { return done(err); }
18621               if (code == null || code === token.text) {
18622                 return --pending || done();
18623               }
18624               token.text = code;
18625               token.escaped = true;
18626               --pending || done();
18627             });
18628           })(tokens[i]);
18629         }
18630     
18631         return;
18632       }
18633       try {
18634         if (opt) { opt = merge({}, marked.defaults, opt); }
18635         return Parser.parse(Lexer.lex(src, opt), opt);
18636       } catch (e) {
18637         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18638         if ((opt || marked.defaults).silent) {
18639           return '<p>An error occured:</p><pre>'
18640             + escape(e.message + '', true)
18641             + '</pre>';
18642         }
18643         throw e;
18644       }
18645     }
18646     
18647     /**
18648      * Options
18649      */
18650     
18651     marked.options =
18652     marked.setOptions = function(opt) {
18653       merge(marked.defaults, opt);
18654       return marked;
18655     };
18656     
18657     marked.defaults = {
18658       gfm: true,
18659       tables: true,
18660       breaks: false,
18661       pedantic: false,
18662       sanitize: false,
18663       sanitizer: null,
18664       mangle: true,
18665       smartLists: false,
18666       silent: false,
18667       highlight: null,
18668       langPrefix: 'lang-',
18669       smartypants: false,
18670       headerPrefix: '',
18671       renderer: new Renderer,
18672       xhtml: false
18673     };
18674     
18675     /**
18676      * Expose
18677      */
18678     
18679     marked.Parser = Parser;
18680     marked.parser = Parser.parse;
18681     
18682     marked.Renderer = Renderer;
18683     
18684     marked.Lexer = Lexer;
18685     marked.lexer = Lexer.lex;
18686     
18687     marked.InlineLexer = InlineLexer;
18688     marked.inlineLexer = InlineLexer.output;
18689     
18690     marked.parse = marked;
18691     
18692     Roo.Markdown.marked = marked;
18693
18694 })();/*
18695  * Based on:
18696  * Ext JS Library 1.1.1
18697  * Copyright(c) 2006-2007, Ext JS, LLC.
18698  *
18699  * Originally Released Under LGPL - original licence link has changed is not relivant.
18700  *
18701  * Fork - LGPL
18702  * <script type="text/javascript">
18703  */
18704
18705
18706
18707 /*
18708  * These classes are derivatives of the similarly named classes in the YUI Library.
18709  * The original license:
18710  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18711  * Code licensed under the BSD License:
18712  * http://developer.yahoo.net/yui/license.txt
18713  */
18714
18715 (function() {
18716
18717 var Event=Roo.EventManager;
18718 var Dom=Roo.lib.Dom;
18719
18720 /**
18721  * @class Roo.dd.DragDrop
18722  * @extends Roo.util.Observable
18723  * Defines the interface and base operation of items that that can be
18724  * dragged or can be drop targets.  It was designed to be extended, overriding
18725  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18726  * Up to three html elements can be associated with a DragDrop instance:
18727  * <ul>
18728  * <li>linked element: the element that is passed into the constructor.
18729  * This is the element which defines the boundaries for interaction with
18730  * other DragDrop objects.</li>
18731  * <li>handle element(s): The drag operation only occurs if the element that
18732  * was clicked matches a handle element.  By default this is the linked
18733  * element, but there are times that you will want only a portion of the
18734  * linked element to initiate the drag operation, and the setHandleElId()
18735  * method provides a way to define this.</li>
18736  * <li>drag element: this represents the element that would be moved along
18737  * with the cursor during a drag operation.  By default, this is the linked
18738  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18739  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18740  * </li>
18741  * </ul>
18742  * This class should not be instantiated until the onload event to ensure that
18743  * the associated elements are available.
18744  * The following would define a DragDrop obj that would interact with any
18745  * other DragDrop obj in the "group1" group:
18746  * <pre>
18747  *  dd = new Roo.dd.DragDrop("div1", "group1");
18748  * </pre>
18749  * Since none of the event handlers have been implemented, nothing would
18750  * actually happen if you were to run the code above.  Normally you would
18751  * override this class or one of the default implementations, but you can
18752  * also override the methods you want on an instance of the class...
18753  * <pre>
18754  *  dd.onDragDrop = function(e, id) {
18755  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18756  *  }
18757  * </pre>
18758  * @constructor
18759  * @param {String} id of the element that is linked to this instance
18760  * @param {String} sGroup the group of related DragDrop objects
18761  * @param {object} config an object containing configurable attributes
18762  *                Valid properties for DragDrop:
18763  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18764  */
18765 Roo.dd.DragDrop = function(id, sGroup, config) {
18766     if (id) {
18767         this.init(id, sGroup, config);
18768     }
18769     
18770 };
18771
18772 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18773
18774     /**
18775      * The id of the element associated with this object.  This is what we
18776      * refer to as the "linked element" because the size and position of
18777      * this element is used to determine when the drag and drop objects have
18778      * interacted.
18779      * @property id
18780      * @type String
18781      */
18782     id: null,
18783
18784     /**
18785      * Configuration attributes passed into the constructor
18786      * @property config
18787      * @type object
18788      */
18789     config: null,
18790
18791     /**
18792      * The id of the element that will be dragged.  By default this is same
18793      * as the linked element , but could be changed to another element. Ex:
18794      * Roo.dd.DDProxy
18795      * @property dragElId
18796      * @type String
18797      * @private
18798      */
18799     dragElId: null,
18800
18801     /**
18802      * the id of the element that initiates the drag operation.  By default
18803      * this is the linked element, but could be changed to be a child of this
18804      * element.  This lets us do things like only starting the drag when the
18805      * header element within the linked html element is clicked.
18806      * @property handleElId
18807      * @type String
18808      * @private
18809      */
18810     handleElId: null,
18811
18812     /**
18813      * An associative array of HTML tags that will be ignored if clicked.
18814      * @property invalidHandleTypes
18815      * @type {string: string}
18816      */
18817     invalidHandleTypes: null,
18818
18819     /**
18820      * An associative array of ids for elements that will be ignored if clicked
18821      * @property invalidHandleIds
18822      * @type {string: string}
18823      */
18824     invalidHandleIds: null,
18825
18826     /**
18827      * An indexted array of css class names for elements that will be ignored
18828      * if clicked.
18829      * @property invalidHandleClasses
18830      * @type string[]
18831      */
18832     invalidHandleClasses: null,
18833
18834     /**
18835      * The linked element's absolute X position at the time the drag was
18836      * started
18837      * @property startPageX
18838      * @type int
18839      * @private
18840      */
18841     startPageX: 0,
18842
18843     /**
18844      * The linked element's absolute X position at the time the drag was
18845      * started
18846      * @property startPageY
18847      * @type int
18848      * @private
18849      */
18850     startPageY: 0,
18851
18852     /**
18853      * The group defines a logical collection of DragDrop objects that are
18854      * related.  Instances only get events when interacting with other
18855      * DragDrop object in the same group.  This lets us define multiple
18856      * groups using a single DragDrop subclass if we want.
18857      * @property groups
18858      * @type {string: string}
18859      */
18860     groups: null,
18861
18862     /**
18863      * Individual drag/drop instances can be locked.  This will prevent
18864      * onmousedown start drag.
18865      * @property locked
18866      * @type boolean
18867      * @private
18868      */
18869     locked: false,
18870
18871     /**
18872      * Lock this instance
18873      * @method lock
18874      */
18875     lock: function() { this.locked = true; },
18876
18877     /**
18878      * Unlock this instace
18879      * @method unlock
18880      */
18881     unlock: function() { this.locked = false; },
18882
18883     /**
18884      * By default, all insances can be a drop target.  This can be disabled by
18885      * setting isTarget to false.
18886      * @method isTarget
18887      * @type boolean
18888      */
18889     isTarget: true,
18890
18891     /**
18892      * The padding configured for this drag and drop object for calculating
18893      * the drop zone intersection with this object.
18894      * @method padding
18895      * @type int[]
18896      */
18897     padding: null,
18898
18899     /**
18900      * Cached reference to the linked element
18901      * @property _domRef
18902      * @private
18903      */
18904     _domRef: null,
18905
18906     /**
18907      * Internal typeof flag
18908      * @property __ygDragDrop
18909      * @private
18910      */
18911     __ygDragDrop: true,
18912
18913     /**
18914      * Set to true when horizontal contraints are applied
18915      * @property constrainX
18916      * @type boolean
18917      * @private
18918      */
18919     constrainX: false,
18920
18921     /**
18922      * Set to true when vertical contraints are applied
18923      * @property constrainY
18924      * @type boolean
18925      * @private
18926      */
18927     constrainY: false,
18928
18929     /**
18930      * The left constraint
18931      * @property minX
18932      * @type int
18933      * @private
18934      */
18935     minX: 0,
18936
18937     /**
18938      * The right constraint
18939      * @property maxX
18940      * @type int
18941      * @private
18942      */
18943     maxX: 0,
18944
18945     /**
18946      * The up constraint
18947      * @property minY
18948      * @type int
18949      * @type int
18950      * @private
18951      */
18952     minY: 0,
18953
18954     /**
18955      * The down constraint
18956      * @property maxY
18957      * @type int
18958      * @private
18959      */
18960     maxY: 0,
18961
18962     /**
18963      * Maintain offsets when we resetconstraints.  Set to true when you want
18964      * the position of the element relative to its parent to stay the same
18965      * when the page changes
18966      *
18967      * @property maintainOffset
18968      * @type boolean
18969      */
18970     maintainOffset: false,
18971
18972     /**
18973      * Array of pixel locations the element will snap to if we specified a
18974      * horizontal graduation/interval.  This array is generated automatically
18975      * when you define a tick interval.
18976      * @property xTicks
18977      * @type int[]
18978      */
18979     xTicks: null,
18980
18981     /**
18982      * Array of pixel locations the element will snap to if we specified a
18983      * vertical graduation/interval.  This array is generated automatically
18984      * when you define a tick interval.
18985      * @property yTicks
18986      * @type int[]
18987      */
18988     yTicks: null,
18989
18990     /**
18991      * By default the drag and drop instance will only respond to the primary
18992      * button click (left button for a right-handed mouse).  Set to true to
18993      * allow drag and drop to start with any mouse click that is propogated
18994      * by the browser
18995      * @property primaryButtonOnly
18996      * @type boolean
18997      */
18998     primaryButtonOnly: true,
18999
19000     /**
19001      * The availabe property is false until the linked dom element is accessible.
19002      * @property available
19003      * @type boolean
19004      */
19005     available: false,
19006
19007     /**
19008      * By default, drags can only be initiated if the mousedown occurs in the
19009      * region the linked element is.  This is done in part to work around a
19010      * bug in some browsers that mis-report the mousedown if the previous
19011      * mouseup happened outside of the window.  This property is set to true
19012      * if outer handles are defined.
19013      *
19014      * @property hasOuterHandles
19015      * @type boolean
19016      * @default false
19017      */
19018     hasOuterHandles: false,
19019
19020     /**
19021      * Code that executes immediately before the startDrag event
19022      * @method b4StartDrag
19023      * @private
19024      */
19025     b4StartDrag: function(x, y) { },
19026
19027     /**
19028      * Abstract method called after a drag/drop object is clicked
19029      * and the drag or mousedown time thresholds have beeen met.
19030      * @method startDrag
19031      * @param {int} X click location
19032      * @param {int} Y click location
19033      */
19034     startDrag: function(x, y) { /* override this */ },
19035
19036     /**
19037      * Code that executes immediately before the onDrag event
19038      * @method b4Drag
19039      * @private
19040      */
19041     b4Drag: function(e) { },
19042
19043     /**
19044      * Abstract method called during the onMouseMove event while dragging an
19045      * object.
19046      * @method onDrag
19047      * @param {Event} e the mousemove event
19048      */
19049     onDrag: function(e) { /* override this */ },
19050
19051     /**
19052      * Abstract method called when this element fist begins hovering over
19053      * another DragDrop obj
19054      * @method onDragEnter
19055      * @param {Event} e the mousemove event
19056      * @param {String|DragDrop[]} id In POINT mode, the element
19057      * id this is hovering over.  In INTERSECT mode, an array of one or more
19058      * dragdrop items being hovered over.
19059      */
19060     onDragEnter: function(e, id) { /* override this */ },
19061
19062     /**
19063      * Code that executes immediately before the onDragOver event
19064      * @method b4DragOver
19065      * @private
19066      */
19067     b4DragOver: function(e) { },
19068
19069     /**
19070      * Abstract method called when this element is hovering over another
19071      * DragDrop obj
19072      * @method onDragOver
19073      * @param {Event} e the mousemove event
19074      * @param {String|DragDrop[]} id In POINT mode, the element
19075      * id this is hovering over.  In INTERSECT mode, an array of dd items
19076      * being hovered over.
19077      */
19078     onDragOver: function(e, id) { /* override this */ },
19079
19080     /**
19081      * Code that executes immediately before the onDragOut event
19082      * @method b4DragOut
19083      * @private
19084      */
19085     b4DragOut: function(e) { },
19086
19087     /**
19088      * Abstract method called when we are no longer hovering over an element
19089      * @method onDragOut
19090      * @param {Event} e the mousemove event
19091      * @param {String|DragDrop[]} id In POINT mode, the element
19092      * id this was hovering over.  In INTERSECT mode, an array of dd items
19093      * that the mouse is no longer over.
19094      */
19095     onDragOut: function(e, id) { /* override this */ },
19096
19097     /**
19098      * Code that executes immediately before the onDragDrop event
19099      * @method b4DragDrop
19100      * @private
19101      */
19102     b4DragDrop: function(e) { },
19103
19104     /**
19105      * Abstract method called when this item is dropped on another DragDrop
19106      * obj
19107      * @method onDragDrop
19108      * @param {Event} e the mouseup event
19109      * @param {String|DragDrop[]} id In POINT mode, the element
19110      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19111      * was dropped on.
19112      */
19113     onDragDrop: function(e, id) { /* override this */ },
19114
19115     /**
19116      * Abstract method called when this item is dropped on an area with no
19117      * drop target
19118      * @method onInvalidDrop
19119      * @param {Event} e the mouseup event
19120      */
19121     onInvalidDrop: function(e) { /* override this */ },
19122
19123     /**
19124      * Code that executes immediately before the endDrag event
19125      * @method b4EndDrag
19126      * @private
19127      */
19128     b4EndDrag: function(e) { },
19129
19130     /**
19131      * Fired when we are done dragging the object
19132      * @method endDrag
19133      * @param {Event} e the mouseup event
19134      */
19135     endDrag: function(e) { /* override this */ },
19136
19137     /**
19138      * Code executed immediately before the onMouseDown event
19139      * @method b4MouseDown
19140      * @param {Event} e the mousedown event
19141      * @private
19142      */
19143     b4MouseDown: function(e) {  },
19144
19145     /**
19146      * Event handler that fires when a drag/drop obj gets a mousedown
19147      * @method onMouseDown
19148      * @param {Event} e the mousedown event
19149      */
19150     onMouseDown: function(e) { /* override this */ },
19151
19152     /**
19153      * Event handler that fires when a drag/drop obj gets a mouseup
19154      * @method onMouseUp
19155      * @param {Event} e the mouseup event
19156      */
19157     onMouseUp: function(e) { /* override this */ },
19158
19159     /**
19160      * Override the onAvailable method to do what is needed after the initial
19161      * position was determined.
19162      * @method onAvailable
19163      */
19164     onAvailable: function () {
19165     },
19166
19167     /*
19168      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19169      * @type Object
19170      */
19171     defaultPadding : {left:0, right:0, top:0, bottom:0},
19172
19173     /*
19174      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19175  *
19176  * Usage:
19177  <pre><code>
19178  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19179                 { dragElId: "existingProxyDiv" });
19180  dd.startDrag = function(){
19181      this.constrainTo("parent-id");
19182  };
19183  </code></pre>
19184  * Or you can initalize it using the {@link Roo.Element} object:
19185  <pre><code>
19186  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19187      startDrag : function(){
19188          this.constrainTo("parent-id");
19189      }
19190  });
19191  </code></pre>
19192      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19193      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19194      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19195      * an object containing the sides to pad. For example: {right:10, bottom:10}
19196      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19197      */
19198     constrainTo : function(constrainTo, pad, inContent){
19199         if(typeof pad == "number"){
19200             pad = {left: pad, right:pad, top:pad, bottom:pad};
19201         }
19202         pad = pad || this.defaultPadding;
19203         var b = Roo.get(this.getEl()).getBox();
19204         var ce = Roo.get(constrainTo);
19205         var s = ce.getScroll();
19206         var c, cd = ce.dom;
19207         if(cd == document.body){
19208             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19209         }else{
19210             xy = ce.getXY();
19211             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19212         }
19213
19214
19215         var topSpace = b.y - c.y;
19216         var leftSpace = b.x - c.x;
19217
19218         this.resetConstraints();
19219         this.setXConstraint(leftSpace - (pad.left||0), // left
19220                 c.width - leftSpace - b.width - (pad.right||0) //right
19221         );
19222         this.setYConstraint(topSpace - (pad.top||0), //top
19223                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19224         );
19225     },
19226
19227     /**
19228      * Returns a reference to the linked element
19229      * @method getEl
19230      * @return {HTMLElement} the html element
19231      */
19232     getEl: function() {
19233         if (!this._domRef) {
19234             this._domRef = Roo.getDom(this.id);
19235         }
19236
19237         return this._domRef;
19238     },
19239
19240     /**
19241      * Returns a reference to the actual element to drag.  By default this is
19242      * the same as the html element, but it can be assigned to another
19243      * element. An example of this can be found in Roo.dd.DDProxy
19244      * @method getDragEl
19245      * @return {HTMLElement} the html element
19246      */
19247     getDragEl: function() {
19248         return Roo.getDom(this.dragElId);
19249     },
19250
19251     /**
19252      * Sets up the DragDrop object.  Must be called in the constructor of any
19253      * Roo.dd.DragDrop subclass
19254      * @method init
19255      * @param id the id of the linked element
19256      * @param {String} sGroup the group of related items
19257      * @param {object} config configuration attributes
19258      */
19259     init: function(id, sGroup, config) {
19260         this.initTarget(id, sGroup, config);
19261         if (!Roo.isTouch) {
19262             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19263         }
19264         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19265         // Event.on(this.id, "selectstart", Event.preventDefault);
19266     },
19267
19268     /**
19269      * Initializes Targeting functionality only... the object does not
19270      * get a mousedown handler.
19271      * @method initTarget
19272      * @param id the id of the linked element
19273      * @param {String} sGroup the group of related items
19274      * @param {object} config configuration attributes
19275      */
19276     initTarget: function(id, sGroup, config) {
19277
19278         // configuration attributes
19279         this.config = config || {};
19280
19281         // create a local reference to the drag and drop manager
19282         this.DDM = Roo.dd.DDM;
19283         // initialize the groups array
19284         this.groups = {};
19285
19286         // assume that we have an element reference instead of an id if the
19287         // parameter is not a string
19288         if (typeof id !== "string") {
19289             id = Roo.id(id);
19290         }
19291
19292         // set the id
19293         this.id = id;
19294
19295         // add to an interaction group
19296         this.addToGroup((sGroup) ? sGroup : "default");
19297
19298         // We don't want to register this as the handle with the manager
19299         // so we just set the id rather than calling the setter.
19300         this.handleElId = id;
19301
19302         // the linked element is the element that gets dragged by default
19303         this.setDragElId(id);
19304
19305         // by default, clicked anchors will not start drag operations.
19306         this.invalidHandleTypes = { A: "A" };
19307         this.invalidHandleIds = {};
19308         this.invalidHandleClasses = [];
19309
19310         this.applyConfig();
19311
19312         this.handleOnAvailable();
19313     },
19314
19315     /**
19316      * Applies the configuration parameters that were passed into the constructor.
19317      * This is supposed to happen at each level through the inheritance chain.  So
19318      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19319      * DragDrop in order to get all of the parameters that are available in
19320      * each object.
19321      * @method applyConfig
19322      */
19323     applyConfig: function() {
19324
19325         // configurable properties:
19326         //    padding, isTarget, maintainOffset, primaryButtonOnly
19327         this.padding           = this.config.padding || [0, 0, 0, 0];
19328         this.isTarget          = (this.config.isTarget !== false);
19329         this.maintainOffset    = (this.config.maintainOffset);
19330         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19331
19332     },
19333
19334     /**
19335      * Executed when the linked element is available
19336      * @method handleOnAvailable
19337      * @private
19338      */
19339     handleOnAvailable: function() {
19340         this.available = true;
19341         this.resetConstraints();
19342         this.onAvailable();
19343     },
19344
19345      /**
19346      * Configures the padding for the target zone in px.  Effectively expands
19347      * (or reduces) the virtual object size for targeting calculations.
19348      * Supports css-style shorthand; if only one parameter is passed, all sides
19349      * will have that padding, and if only two are passed, the top and bottom
19350      * will have the first param, the left and right the second.
19351      * @method setPadding
19352      * @param {int} iTop    Top pad
19353      * @param {int} iRight  Right pad
19354      * @param {int} iBot    Bot pad
19355      * @param {int} iLeft   Left pad
19356      */
19357     setPadding: function(iTop, iRight, iBot, iLeft) {
19358         // this.padding = [iLeft, iRight, iTop, iBot];
19359         if (!iRight && 0 !== iRight) {
19360             this.padding = [iTop, iTop, iTop, iTop];
19361         } else if (!iBot && 0 !== iBot) {
19362             this.padding = [iTop, iRight, iTop, iRight];
19363         } else {
19364             this.padding = [iTop, iRight, iBot, iLeft];
19365         }
19366     },
19367
19368     /**
19369      * Stores the initial placement of the linked element.
19370      * @method setInitialPosition
19371      * @param {int} diffX   the X offset, default 0
19372      * @param {int} diffY   the Y offset, default 0
19373      */
19374     setInitPosition: function(diffX, diffY) {
19375         var el = this.getEl();
19376
19377         if (!this.DDM.verifyEl(el)) {
19378             return;
19379         }
19380
19381         var dx = diffX || 0;
19382         var dy = diffY || 0;
19383
19384         var p = Dom.getXY( el );
19385
19386         this.initPageX = p[0] - dx;
19387         this.initPageY = p[1] - dy;
19388
19389         this.lastPageX = p[0];
19390         this.lastPageY = p[1];
19391
19392
19393         this.setStartPosition(p);
19394     },
19395
19396     /**
19397      * Sets the start position of the element.  This is set when the obj
19398      * is initialized, the reset when a drag is started.
19399      * @method setStartPosition
19400      * @param pos current position (from previous lookup)
19401      * @private
19402      */
19403     setStartPosition: function(pos) {
19404         var p = pos || Dom.getXY( this.getEl() );
19405         this.deltaSetXY = null;
19406
19407         this.startPageX = p[0];
19408         this.startPageY = p[1];
19409     },
19410
19411     /**
19412      * Add this instance to a group of related drag/drop objects.  All
19413      * instances belong to at least one group, and can belong to as many
19414      * groups as needed.
19415      * @method addToGroup
19416      * @param sGroup {string} the name of the group
19417      */
19418     addToGroup: function(sGroup) {
19419         this.groups[sGroup] = true;
19420         this.DDM.regDragDrop(this, sGroup);
19421     },
19422
19423     /**
19424      * Remove's this instance from the supplied interaction group
19425      * @method removeFromGroup
19426      * @param {string}  sGroup  The group to drop
19427      */
19428     removeFromGroup: function(sGroup) {
19429         if (this.groups[sGroup]) {
19430             delete this.groups[sGroup];
19431         }
19432
19433         this.DDM.removeDDFromGroup(this, sGroup);
19434     },
19435
19436     /**
19437      * Allows you to specify that an element other than the linked element
19438      * will be moved with the cursor during a drag
19439      * @method setDragElId
19440      * @param id {string} the id of the element that will be used to initiate the drag
19441      */
19442     setDragElId: function(id) {
19443         this.dragElId = id;
19444     },
19445
19446     /**
19447      * Allows you to specify a child of the linked element that should be
19448      * used to initiate the drag operation.  An example of this would be if
19449      * you have a content div with text and links.  Clicking anywhere in the
19450      * content area would normally start the drag operation.  Use this method
19451      * to specify that an element inside of the content div is the element
19452      * that starts the drag operation.
19453      * @method setHandleElId
19454      * @param id {string} the id of the element that will be used to
19455      * initiate the drag.
19456      */
19457     setHandleElId: function(id) {
19458         if (typeof id !== "string") {
19459             id = Roo.id(id);
19460         }
19461         this.handleElId = id;
19462         this.DDM.regHandle(this.id, id);
19463     },
19464
19465     /**
19466      * Allows you to set an element outside of the linked element as a drag
19467      * handle
19468      * @method setOuterHandleElId
19469      * @param id the id of the element that will be used to initiate the drag
19470      */
19471     setOuterHandleElId: function(id) {
19472         if (typeof id !== "string") {
19473             id = Roo.id(id);
19474         }
19475         Event.on(id, "mousedown",
19476                 this.handleMouseDown, this);
19477         this.setHandleElId(id);
19478
19479         this.hasOuterHandles = true;
19480     },
19481
19482     /**
19483      * Remove all drag and drop hooks for this element
19484      * @method unreg
19485      */
19486     unreg: function() {
19487         Event.un(this.id, "mousedown",
19488                 this.handleMouseDown);
19489         Event.un(this.id, "touchstart",
19490                 this.handleMouseDown);
19491         this._domRef = null;
19492         this.DDM._remove(this);
19493     },
19494
19495     destroy : function(){
19496         this.unreg();
19497     },
19498
19499     /**
19500      * Returns true if this instance is locked, or the drag drop mgr is locked
19501      * (meaning that all drag/drop is disabled on the page.)
19502      * @method isLocked
19503      * @return {boolean} true if this obj or all drag/drop is locked, else
19504      * false
19505      */
19506     isLocked: function() {
19507         return (this.DDM.isLocked() || this.locked);
19508     },
19509
19510     /**
19511      * Fired when this object is clicked
19512      * @method handleMouseDown
19513      * @param {Event} e
19514      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19515      * @private
19516      */
19517     handleMouseDown: function(e, oDD){
19518      
19519         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19520             //Roo.log('not touch/ button !=0');
19521             return;
19522         }
19523         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19524             return; // double touch..
19525         }
19526         
19527
19528         if (this.isLocked()) {
19529             //Roo.log('locked');
19530             return;
19531         }
19532
19533         this.DDM.refreshCache(this.groups);
19534 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19535         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19536         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19537             //Roo.log('no outer handes or not over target');
19538                 // do nothing.
19539         } else {
19540 //            Roo.log('check validator');
19541             if (this.clickValidator(e)) {
19542 //                Roo.log('validate success');
19543                 // set the initial element position
19544                 this.setStartPosition();
19545
19546
19547                 this.b4MouseDown(e);
19548                 this.onMouseDown(e);
19549
19550                 this.DDM.handleMouseDown(e, this);
19551
19552                 this.DDM.stopEvent(e);
19553             } else {
19554
19555
19556             }
19557         }
19558     },
19559
19560     clickValidator: function(e) {
19561         var target = e.getTarget();
19562         return ( this.isValidHandleChild(target) &&
19563                     (this.id == this.handleElId ||
19564                         this.DDM.handleWasClicked(target, this.id)) );
19565     },
19566
19567     /**
19568      * Allows you to specify a tag name that should not start a drag operation
19569      * when clicked.  This is designed to facilitate embedding links within a
19570      * drag handle that do something other than start the drag.
19571      * @method addInvalidHandleType
19572      * @param {string} tagName the type of element to exclude
19573      */
19574     addInvalidHandleType: function(tagName) {
19575         var type = tagName.toUpperCase();
19576         this.invalidHandleTypes[type] = type;
19577     },
19578
19579     /**
19580      * Lets you to specify an element id for a child of a drag handle
19581      * that should not initiate a drag
19582      * @method addInvalidHandleId
19583      * @param {string} id the element id of the element you wish to ignore
19584      */
19585     addInvalidHandleId: function(id) {
19586         if (typeof id !== "string") {
19587             id = Roo.id(id);
19588         }
19589         this.invalidHandleIds[id] = id;
19590     },
19591
19592     /**
19593      * Lets you specify a css class of elements that will not initiate a drag
19594      * @method addInvalidHandleClass
19595      * @param {string} cssClass the class of the elements you wish to ignore
19596      */
19597     addInvalidHandleClass: function(cssClass) {
19598         this.invalidHandleClasses.push(cssClass);
19599     },
19600
19601     /**
19602      * Unsets an excluded tag name set by addInvalidHandleType
19603      * @method removeInvalidHandleType
19604      * @param {string} tagName the type of element to unexclude
19605      */
19606     removeInvalidHandleType: function(tagName) {
19607         var type = tagName.toUpperCase();
19608         // this.invalidHandleTypes[type] = null;
19609         delete this.invalidHandleTypes[type];
19610     },
19611
19612     /**
19613      * Unsets an invalid handle id
19614      * @method removeInvalidHandleId
19615      * @param {string} id the id of the element to re-enable
19616      */
19617     removeInvalidHandleId: function(id) {
19618         if (typeof id !== "string") {
19619             id = Roo.id(id);
19620         }
19621         delete this.invalidHandleIds[id];
19622     },
19623
19624     /**
19625      * Unsets an invalid css class
19626      * @method removeInvalidHandleClass
19627      * @param {string} cssClass the class of the element(s) you wish to
19628      * re-enable
19629      */
19630     removeInvalidHandleClass: function(cssClass) {
19631         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19632             if (this.invalidHandleClasses[i] == cssClass) {
19633                 delete this.invalidHandleClasses[i];
19634             }
19635         }
19636     },
19637
19638     /**
19639      * Checks the tag exclusion list to see if this click should be ignored
19640      * @method isValidHandleChild
19641      * @param {HTMLElement} node the HTMLElement to evaluate
19642      * @return {boolean} true if this is a valid tag type, false if not
19643      */
19644     isValidHandleChild: function(node) {
19645
19646         var valid = true;
19647         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19648         var nodeName;
19649         try {
19650             nodeName = node.nodeName.toUpperCase();
19651         } catch(e) {
19652             nodeName = node.nodeName;
19653         }
19654         valid = valid && !this.invalidHandleTypes[nodeName];
19655         valid = valid && !this.invalidHandleIds[node.id];
19656
19657         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19658             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19659         }
19660
19661
19662         return valid;
19663
19664     },
19665
19666     /**
19667      * Create the array of horizontal tick marks if an interval was specified
19668      * in setXConstraint().
19669      * @method setXTicks
19670      * @private
19671      */
19672     setXTicks: function(iStartX, iTickSize) {
19673         this.xTicks = [];
19674         this.xTickSize = iTickSize;
19675
19676         var tickMap = {};
19677
19678         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19679             if (!tickMap[i]) {
19680                 this.xTicks[this.xTicks.length] = i;
19681                 tickMap[i] = true;
19682             }
19683         }
19684
19685         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19686             if (!tickMap[i]) {
19687                 this.xTicks[this.xTicks.length] = i;
19688                 tickMap[i] = true;
19689             }
19690         }
19691
19692         this.xTicks.sort(this.DDM.numericSort) ;
19693     },
19694
19695     /**
19696      * Create the array of vertical tick marks if an interval was specified in
19697      * setYConstraint().
19698      * @method setYTicks
19699      * @private
19700      */
19701     setYTicks: function(iStartY, iTickSize) {
19702         this.yTicks = [];
19703         this.yTickSize = iTickSize;
19704
19705         var tickMap = {};
19706
19707         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19708             if (!tickMap[i]) {
19709                 this.yTicks[this.yTicks.length] = i;
19710                 tickMap[i] = true;
19711             }
19712         }
19713
19714         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19715             if (!tickMap[i]) {
19716                 this.yTicks[this.yTicks.length] = i;
19717                 tickMap[i] = true;
19718             }
19719         }
19720
19721         this.yTicks.sort(this.DDM.numericSort) ;
19722     },
19723
19724     /**
19725      * By default, the element can be dragged any place on the screen.  Use
19726      * this method to limit the horizontal travel of the element.  Pass in
19727      * 0,0 for the parameters if you want to lock the drag to the y axis.
19728      * @method setXConstraint
19729      * @param {int} iLeft the number of pixels the element can move to the left
19730      * @param {int} iRight the number of pixels the element can move to the
19731      * right
19732      * @param {int} iTickSize optional parameter for specifying that the
19733      * element
19734      * should move iTickSize pixels at a time.
19735      */
19736     setXConstraint: function(iLeft, iRight, iTickSize) {
19737         this.leftConstraint = iLeft;
19738         this.rightConstraint = iRight;
19739
19740         this.minX = this.initPageX - iLeft;
19741         this.maxX = this.initPageX + iRight;
19742         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19743
19744         this.constrainX = true;
19745     },
19746
19747     /**
19748      * Clears any constraints applied to this instance.  Also clears ticks
19749      * since they can't exist independent of a constraint at this time.
19750      * @method clearConstraints
19751      */
19752     clearConstraints: function() {
19753         this.constrainX = false;
19754         this.constrainY = false;
19755         this.clearTicks();
19756     },
19757
19758     /**
19759      * Clears any tick interval defined for this instance
19760      * @method clearTicks
19761      */
19762     clearTicks: function() {
19763         this.xTicks = null;
19764         this.yTicks = null;
19765         this.xTickSize = 0;
19766         this.yTickSize = 0;
19767     },
19768
19769     /**
19770      * By default, the element can be dragged any place on the screen.  Set
19771      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19772      * parameters if you want to lock the drag to the x axis.
19773      * @method setYConstraint
19774      * @param {int} iUp the number of pixels the element can move up
19775      * @param {int} iDown the number of pixels the element can move down
19776      * @param {int} iTickSize optional parameter for specifying that the
19777      * element should move iTickSize pixels at a time.
19778      */
19779     setYConstraint: function(iUp, iDown, iTickSize) {
19780         this.topConstraint = iUp;
19781         this.bottomConstraint = iDown;
19782
19783         this.minY = this.initPageY - iUp;
19784         this.maxY = this.initPageY + iDown;
19785         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19786
19787         this.constrainY = true;
19788
19789     },
19790
19791     /**
19792      * resetConstraints must be called if you manually reposition a dd element.
19793      * @method resetConstraints
19794      * @param {boolean} maintainOffset
19795      */
19796     resetConstraints: function() {
19797
19798
19799         // Maintain offsets if necessary
19800         if (this.initPageX || this.initPageX === 0) {
19801             // figure out how much this thing has moved
19802             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19803             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19804
19805             this.setInitPosition(dx, dy);
19806
19807         // This is the first time we have detected the element's position
19808         } else {
19809             this.setInitPosition();
19810         }
19811
19812         if (this.constrainX) {
19813             this.setXConstraint( this.leftConstraint,
19814                                  this.rightConstraint,
19815                                  this.xTickSize        );
19816         }
19817
19818         if (this.constrainY) {
19819             this.setYConstraint( this.topConstraint,
19820                                  this.bottomConstraint,
19821                                  this.yTickSize         );
19822         }
19823     },
19824
19825     /**
19826      * Normally the drag element is moved pixel by pixel, but we can specify
19827      * that it move a number of pixels at a time.  This method resolves the
19828      * location when we have it set up like this.
19829      * @method getTick
19830      * @param {int} val where we want to place the object
19831      * @param {int[]} tickArray sorted array of valid points
19832      * @return {int} the closest tick
19833      * @private
19834      */
19835     getTick: function(val, tickArray) {
19836
19837         if (!tickArray) {
19838             // If tick interval is not defined, it is effectively 1 pixel,
19839             // so we return the value passed to us.
19840             return val;
19841         } else if (tickArray[0] >= val) {
19842             // The value is lower than the first tick, so we return the first
19843             // tick.
19844             return tickArray[0];
19845         } else {
19846             for (var i=0, len=tickArray.length; i<len; ++i) {
19847                 var next = i + 1;
19848                 if (tickArray[next] && tickArray[next] >= val) {
19849                     var diff1 = val - tickArray[i];
19850                     var diff2 = tickArray[next] - val;
19851                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19852                 }
19853             }
19854
19855             // The value is larger than the last tick, so we return the last
19856             // tick.
19857             return tickArray[tickArray.length - 1];
19858         }
19859     },
19860
19861     /**
19862      * toString method
19863      * @method toString
19864      * @return {string} string representation of the dd obj
19865      */
19866     toString: function() {
19867         return ("DragDrop " + this.id);
19868     }
19869
19870 });
19871
19872 })();
19873 /*
19874  * Based on:
19875  * Ext JS Library 1.1.1
19876  * Copyright(c) 2006-2007, Ext JS, LLC.
19877  *
19878  * Originally Released Under LGPL - original licence link has changed is not relivant.
19879  *
19880  * Fork - LGPL
19881  * <script type="text/javascript">
19882  */
19883
19884
19885 /**
19886  * The drag and drop utility provides a framework for building drag and drop
19887  * applications.  In addition to enabling drag and drop for specific elements,
19888  * the drag and drop elements are tracked by the manager class, and the
19889  * interactions between the various elements are tracked during the drag and
19890  * the implementing code is notified about these important moments.
19891  */
19892
19893 // Only load the library once.  Rewriting the manager class would orphan
19894 // existing drag and drop instances.
19895 if (!Roo.dd.DragDropMgr) {
19896
19897 /**
19898  * @class Roo.dd.DragDropMgr
19899  * DragDropMgr is a singleton that tracks the element interaction for
19900  * all DragDrop items in the window.  Generally, you will not call
19901  * this class directly, but it does have helper methods that could
19902  * be useful in your DragDrop implementations.
19903  * @singleton
19904  */
19905 Roo.dd.DragDropMgr = function() {
19906
19907     var Event = Roo.EventManager;
19908
19909     return {
19910
19911         /**
19912          * Two dimensional Array of registered DragDrop objects.  The first
19913          * dimension is the DragDrop item group, the second the DragDrop
19914          * object.
19915          * @property ids
19916          * @type {string: string}
19917          * @private
19918          * @static
19919          */
19920         ids: {},
19921
19922         /**
19923          * Array of element ids defined as drag handles.  Used to determine
19924          * if the element that generated the mousedown event is actually the
19925          * handle and not the html element itself.
19926          * @property handleIds
19927          * @type {string: string}
19928          * @private
19929          * @static
19930          */
19931         handleIds: {},
19932
19933         /**
19934          * the DragDrop object that is currently being dragged
19935          * @property dragCurrent
19936          * @type DragDrop
19937          * @private
19938          * @static
19939          **/
19940         dragCurrent: null,
19941
19942         /**
19943          * the DragDrop object(s) that are being hovered over
19944          * @property dragOvers
19945          * @type Array
19946          * @private
19947          * @static
19948          */
19949         dragOvers: {},
19950
19951         /**
19952          * the X distance between the cursor and the object being dragged
19953          * @property deltaX
19954          * @type int
19955          * @private
19956          * @static
19957          */
19958         deltaX: 0,
19959
19960         /**
19961          * the Y distance between the cursor and the object being dragged
19962          * @property deltaY
19963          * @type int
19964          * @private
19965          * @static
19966          */
19967         deltaY: 0,
19968
19969         /**
19970          * Flag to determine if we should prevent the default behavior of the
19971          * events we define. By default this is true, but this can be set to
19972          * false if you need the default behavior (not recommended)
19973          * @property preventDefault
19974          * @type boolean
19975          * @static
19976          */
19977         preventDefault: true,
19978
19979         /**
19980          * Flag to determine if we should stop the propagation of the events
19981          * we generate. This is true by default but you may want to set it to
19982          * false if the html element contains other features that require the
19983          * mouse click.
19984          * @property stopPropagation
19985          * @type boolean
19986          * @static
19987          */
19988         stopPropagation: true,
19989
19990         /**
19991          * Internal flag that is set to true when drag and drop has been
19992          * intialized
19993          * @property initialized
19994          * @private
19995          * @static
19996          */
19997         initalized: false,
19998
19999         /**
20000          * All drag and drop can be disabled.
20001          * @property locked
20002          * @private
20003          * @static
20004          */
20005         locked: false,
20006
20007         /**
20008          * Called the first time an element is registered.
20009          * @method init
20010          * @private
20011          * @static
20012          */
20013         init: function() {
20014             this.initialized = true;
20015         },
20016
20017         /**
20018          * In point mode, drag and drop interaction is defined by the
20019          * location of the cursor during the drag/drop
20020          * @property POINT
20021          * @type int
20022          * @static
20023          */
20024         POINT: 0,
20025
20026         /**
20027          * In intersect mode, drag and drop interactio nis defined by the
20028          * overlap of two or more drag and drop objects.
20029          * @property INTERSECT
20030          * @type int
20031          * @static
20032          */
20033         INTERSECT: 1,
20034
20035         /**
20036          * The current drag and drop mode.  Default: POINT
20037          * @property mode
20038          * @type int
20039          * @static
20040          */
20041         mode: 0,
20042
20043         /**
20044          * Runs method on all drag and drop objects
20045          * @method _execOnAll
20046          * @private
20047          * @static
20048          */
20049         _execOnAll: function(sMethod, args) {
20050             for (var i in this.ids) {
20051                 for (var j in this.ids[i]) {
20052                     var oDD = this.ids[i][j];
20053                     if (! this.isTypeOfDD(oDD)) {
20054                         continue;
20055                     }
20056                     oDD[sMethod].apply(oDD, args);
20057                 }
20058             }
20059         },
20060
20061         /**
20062          * Drag and drop initialization.  Sets up the global event handlers
20063          * @method _onLoad
20064          * @private
20065          * @static
20066          */
20067         _onLoad: function() {
20068
20069             this.init();
20070
20071             if (!Roo.isTouch) {
20072                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20073                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20074             }
20075             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20076             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20077             
20078             Event.on(window,   "unload",    this._onUnload, this, true);
20079             Event.on(window,   "resize",    this._onResize, this, true);
20080             // Event.on(window,   "mouseout",    this._test);
20081
20082         },
20083
20084         /**
20085          * Reset constraints on all drag and drop objs
20086          * @method _onResize
20087          * @private
20088          * @static
20089          */
20090         _onResize: function(e) {
20091             this._execOnAll("resetConstraints", []);
20092         },
20093
20094         /**
20095          * Lock all drag and drop functionality
20096          * @method lock
20097          * @static
20098          */
20099         lock: function() { this.locked = true; },
20100
20101         /**
20102          * Unlock all drag and drop functionality
20103          * @method unlock
20104          * @static
20105          */
20106         unlock: function() { this.locked = false; },
20107
20108         /**
20109          * Is drag and drop locked?
20110          * @method isLocked
20111          * @return {boolean} True if drag and drop is locked, false otherwise.
20112          * @static
20113          */
20114         isLocked: function() { return this.locked; },
20115
20116         /**
20117          * Location cache that is set for all drag drop objects when a drag is
20118          * initiated, cleared when the drag is finished.
20119          * @property locationCache
20120          * @private
20121          * @static
20122          */
20123         locationCache: {},
20124
20125         /**
20126          * Set useCache to false if you want to force object the lookup of each
20127          * drag and drop linked element constantly during a drag.
20128          * @property useCache
20129          * @type boolean
20130          * @static
20131          */
20132         useCache: true,
20133
20134         /**
20135          * The number of pixels that the mouse needs to move after the
20136          * mousedown before the drag is initiated.  Default=3;
20137          * @property clickPixelThresh
20138          * @type int
20139          * @static
20140          */
20141         clickPixelThresh: 3,
20142
20143         /**
20144          * The number of milliseconds after the mousedown event to initiate the
20145          * drag if we don't get a mouseup event. Default=1000
20146          * @property clickTimeThresh
20147          * @type int
20148          * @static
20149          */
20150         clickTimeThresh: 350,
20151
20152         /**
20153          * Flag that indicates that either the drag pixel threshold or the
20154          * mousdown time threshold has been met
20155          * @property dragThreshMet
20156          * @type boolean
20157          * @private
20158          * @static
20159          */
20160         dragThreshMet: false,
20161
20162         /**
20163          * Timeout used for the click time threshold
20164          * @property clickTimeout
20165          * @type Object
20166          * @private
20167          * @static
20168          */
20169         clickTimeout: null,
20170
20171         /**
20172          * The X position of the mousedown event stored for later use when a
20173          * drag threshold is met.
20174          * @property startX
20175          * @type int
20176          * @private
20177          * @static
20178          */
20179         startX: 0,
20180
20181         /**
20182          * The Y position of the mousedown event stored for later use when a
20183          * drag threshold is met.
20184          * @property startY
20185          * @type int
20186          * @private
20187          * @static
20188          */
20189         startY: 0,
20190
20191         /**
20192          * Each DragDrop instance must be registered with the DragDropMgr.
20193          * This is executed in DragDrop.init()
20194          * @method regDragDrop
20195          * @param {DragDrop} oDD the DragDrop object to register
20196          * @param {String} sGroup the name of the group this element belongs to
20197          * @static
20198          */
20199         regDragDrop: function(oDD, sGroup) {
20200             if (!this.initialized) { this.init(); }
20201
20202             if (!this.ids[sGroup]) {
20203                 this.ids[sGroup] = {};
20204             }
20205             this.ids[sGroup][oDD.id] = oDD;
20206         },
20207
20208         /**
20209          * Removes the supplied dd instance from the supplied group. Executed
20210          * by DragDrop.removeFromGroup, so don't call this function directly.
20211          * @method removeDDFromGroup
20212          * @private
20213          * @static
20214          */
20215         removeDDFromGroup: function(oDD, sGroup) {
20216             if (!this.ids[sGroup]) {
20217                 this.ids[sGroup] = {};
20218             }
20219
20220             var obj = this.ids[sGroup];
20221             if (obj && obj[oDD.id]) {
20222                 delete obj[oDD.id];
20223             }
20224         },
20225
20226         /**
20227          * Unregisters a drag and drop item.  This is executed in
20228          * DragDrop.unreg, use that method instead of calling this directly.
20229          * @method _remove
20230          * @private
20231          * @static
20232          */
20233         _remove: function(oDD) {
20234             for (var g in oDD.groups) {
20235                 if (g && this.ids[g][oDD.id]) {
20236                     delete this.ids[g][oDD.id];
20237                 }
20238             }
20239             delete this.handleIds[oDD.id];
20240         },
20241
20242         /**
20243          * Each DragDrop handle element must be registered.  This is done
20244          * automatically when executing DragDrop.setHandleElId()
20245          * @method regHandle
20246          * @param {String} sDDId the DragDrop id this element is a handle for
20247          * @param {String} sHandleId the id of the element that is the drag
20248          * handle
20249          * @static
20250          */
20251         regHandle: function(sDDId, sHandleId) {
20252             if (!this.handleIds[sDDId]) {
20253                 this.handleIds[sDDId] = {};
20254             }
20255             this.handleIds[sDDId][sHandleId] = sHandleId;
20256         },
20257
20258         /**
20259          * Utility function to determine if a given element has been
20260          * registered as a drag drop item.
20261          * @method isDragDrop
20262          * @param {String} id the element id to check
20263          * @return {boolean} true if this element is a DragDrop item,
20264          * false otherwise
20265          * @static
20266          */
20267         isDragDrop: function(id) {
20268             return ( this.getDDById(id) ) ? true : false;
20269         },
20270
20271         /**
20272          * Returns the drag and drop instances that are in all groups the
20273          * passed in instance belongs to.
20274          * @method getRelated
20275          * @param {DragDrop} p_oDD the obj to get related data for
20276          * @param {boolean} bTargetsOnly if true, only return targetable objs
20277          * @return {DragDrop[]} the related instances
20278          * @static
20279          */
20280         getRelated: function(p_oDD, bTargetsOnly) {
20281             var oDDs = [];
20282             for (var i in p_oDD.groups) {
20283                 for (j in this.ids[i]) {
20284                     var dd = this.ids[i][j];
20285                     if (! this.isTypeOfDD(dd)) {
20286                         continue;
20287                     }
20288                     if (!bTargetsOnly || dd.isTarget) {
20289                         oDDs[oDDs.length] = dd;
20290                     }
20291                 }
20292             }
20293
20294             return oDDs;
20295         },
20296
20297         /**
20298          * Returns true if the specified dd target is a legal target for
20299          * the specifice drag obj
20300          * @method isLegalTarget
20301          * @param {DragDrop} the drag obj
20302          * @param {DragDrop} the target
20303          * @return {boolean} true if the target is a legal target for the
20304          * dd obj
20305          * @static
20306          */
20307         isLegalTarget: function (oDD, oTargetDD) {
20308             var targets = this.getRelated(oDD, true);
20309             for (var i=0, len=targets.length;i<len;++i) {
20310                 if (targets[i].id == oTargetDD.id) {
20311                     return true;
20312                 }
20313             }
20314
20315             return false;
20316         },
20317
20318         /**
20319          * My goal is to be able to transparently determine if an object is
20320          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20321          * returns "object", oDD.constructor.toString() always returns
20322          * "DragDrop" and not the name of the subclass.  So for now it just
20323          * evaluates a well-known variable in DragDrop.
20324          * @method isTypeOfDD
20325          * @param {Object} the object to evaluate
20326          * @return {boolean} true if typeof oDD = DragDrop
20327          * @static
20328          */
20329         isTypeOfDD: function (oDD) {
20330             return (oDD && oDD.__ygDragDrop);
20331         },
20332
20333         /**
20334          * Utility function to determine if a given element has been
20335          * registered as a drag drop handle for the given Drag Drop object.
20336          * @method isHandle
20337          * @param {String} id the element id to check
20338          * @return {boolean} true if this element is a DragDrop handle, false
20339          * otherwise
20340          * @static
20341          */
20342         isHandle: function(sDDId, sHandleId) {
20343             return ( this.handleIds[sDDId] &&
20344                             this.handleIds[sDDId][sHandleId] );
20345         },
20346
20347         /**
20348          * Returns the DragDrop instance for a given id
20349          * @method getDDById
20350          * @param {String} id the id of the DragDrop object
20351          * @return {DragDrop} the drag drop object, null if it is not found
20352          * @static
20353          */
20354         getDDById: function(id) {
20355             for (var i in this.ids) {
20356                 if (this.ids[i][id]) {
20357                     return this.ids[i][id];
20358                 }
20359             }
20360             return null;
20361         },
20362
20363         /**
20364          * Fired after a registered DragDrop object gets the mousedown event.
20365          * Sets up the events required to track the object being dragged
20366          * @method handleMouseDown
20367          * @param {Event} e the event
20368          * @param oDD the DragDrop object being dragged
20369          * @private
20370          * @static
20371          */
20372         handleMouseDown: function(e, oDD) {
20373             if(Roo.QuickTips){
20374                 Roo.QuickTips.disable();
20375             }
20376             this.currentTarget = e.getTarget();
20377
20378             this.dragCurrent = oDD;
20379
20380             var el = oDD.getEl();
20381
20382             // track start position
20383             this.startX = e.getPageX();
20384             this.startY = e.getPageY();
20385
20386             this.deltaX = this.startX - el.offsetLeft;
20387             this.deltaY = this.startY - el.offsetTop;
20388
20389             this.dragThreshMet = false;
20390
20391             this.clickTimeout = setTimeout(
20392                     function() {
20393                         var DDM = Roo.dd.DDM;
20394                         DDM.startDrag(DDM.startX, DDM.startY);
20395                     },
20396                     this.clickTimeThresh );
20397         },
20398
20399         /**
20400          * Fired when either the drag pixel threshol or the mousedown hold
20401          * time threshold has been met.
20402          * @method startDrag
20403          * @param x {int} the X position of the original mousedown
20404          * @param y {int} the Y position of the original mousedown
20405          * @static
20406          */
20407         startDrag: function(x, y) {
20408             clearTimeout(this.clickTimeout);
20409             if (this.dragCurrent) {
20410                 this.dragCurrent.b4StartDrag(x, y);
20411                 this.dragCurrent.startDrag(x, y);
20412             }
20413             this.dragThreshMet = true;
20414         },
20415
20416         /**
20417          * Internal function to handle the mouseup event.  Will be invoked
20418          * from the context of the document.
20419          * @method handleMouseUp
20420          * @param {Event} e the event
20421          * @private
20422          * @static
20423          */
20424         handleMouseUp: function(e) {
20425
20426             if(Roo.QuickTips){
20427                 Roo.QuickTips.enable();
20428             }
20429             if (! this.dragCurrent) {
20430                 return;
20431             }
20432
20433             clearTimeout(this.clickTimeout);
20434
20435             if (this.dragThreshMet) {
20436                 this.fireEvents(e, true);
20437             } else {
20438             }
20439
20440             this.stopDrag(e);
20441
20442             this.stopEvent(e);
20443         },
20444
20445         /**
20446          * Utility to stop event propagation and event default, if these
20447          * features are turned on.
20448          * @method stopEvent
20449          * @param {Event} e the event as returned by this.getEvent()
20450          * @static
20451          */
20452         stopEvent: function(e){
20453             if(this.stopPropagation) {
20454                 e.stopPropagation();
20455             }
20456
20457             if (this.preventDefault) {
20458                 e.preventDefault();
20459             }
20460         },
20461
20462         /**
20463          * Internal function to clean up event handlers after the drag
20464          * operation is complete
20465          * @method stopDrag
20466          * @param {Event} e the event
20467          * @private
20468          * @static
20469          */
20470         stopDrag: function(e) {
20471             // Fire the drag end event for the item that was dragged
20472             if (this.dragCurrent) {
20473                 if (this.dragThreshMet) {
20474                     this.dragCurrent.b4EndDrag(e);
20475                     this.dragCurrent.endDrag(e);
20476                 }
20477
20478                 this.dragCurrent.onMouseUp(e);
20479             }
20480
20481             this.dragCurrent = null;
20482             this.dragOvers = {};
20483         },
20484
20485         /**
20486          * Internal function to handle the mousemove event.  Will be invoked
20487          * from the context of the html element.
20488          *
20489          * @TODO figure out what we can do about mouse events lost when the
20490          * user drags objects beyond the window boundary.  Currently we can
20491          * detect this in internet explorer by verifying that the mouse is
20492          * down during the mousemove event.  Firefox doesn't give us the
20493          * button state on the mousemove event.
20494          * @method handleMouseMove
20495          * @param {Event} e the event
20496          * @private
20497          * @static
20498          */
20499         handleMouseMove: function(e) {
20500             if (! this.dragCurrent) {
20501                 return true;
20502             }
20503
20504             // var button = e.which || e.button;
20505
20506             // check for IE mouseup outside of page boundary
20507             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20508                 this.stopEvent(e);
20509                 return this.handleMouseUp(e);
20510             }
20511
20512             if (!this.dragThreshMet) {
20513                 var diffX = Math.abs(this.startX - e.getPageX());
20514                 var diffY = Math.abs(this.startY - e.getPageY());
20515                 if (diffX > this.clickPixelThresh ||
20516                             diffY > this.clickPixelThresh) {
20517                     this.startDrag(this.startX, this.startY);
20518                 }
20519             }
20520
20521             if (this.dragThreshMet) {
20522                 this.dragCurrent.b4Drag(e);
20523                 this.dragCurrent.onDrag(e);
20524                 if(!this.dragCurrent.moveOnly){
20525                     this.fireEvents(e, false);
20526                 }
20527             }
20528
20529             this.stopEvent(e);
20530
20531             return true;
20532         },
20533
20534         /**
20535          * Iterates over all of the DragDrop elements to find ones we are
20536          * hovering over or dropping on
20537          * @method fireEvents
20538          * @param {Event} e the event
20539          * @param {boolean} isDrop is this a drop op or a mouseover op?
20540          * @private
20541          * @static
20542          */
20543         fireEvents: function(e, isDrop) {
20544             var dc = this.dragCurrent;
20545
20546             // If the user did the mouse up outside of the window, we could
20547             // get here even though we have ended the drag.
20548             if (!dc || dc.isLocked()) {
20549                 return;
20550             }
20551
20552             var pt = e.getPoint();
20553
20554             // cache the previous dragOver array
20555             var oldOvers = [];
20556
20557             var outEvts   = [];
20558             var overEvts  = [];
20559             var dropEvts  = [];
20560             var enterEvts = [];
20561
20562             // Check to see if the object(s) we were hovering over is no longer
20563             // being hovered over so we can fire the onDragOut event
20564             for (var i in this.dragOvers) {
20565
20566                 var ddo = this.dragOvers[i];
20567
20568                 if (! this.isTypeOfDD(ddo)) {
20569                     continue;
20570                 }
20571
20572                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20573                     outEvts.push( ddo );
20574                 }
20575
20576                 oldOvers[i] = true;
20577                 delete this.dragOvers[i];
20578             }
20579
20580             for (var sGroup in dc.groups) {
20581
20582                 if ("string" != typeof sGroup) {
20583                     continue;
20584                 }
20585
20586                 for (i in this.ids[sGroup]) {
20587                     var oDD = this.ids[sGroup][i];
20588                     if (! this.isTypeOfDD(oDD)) {
20589                         continue;
20590                     }
20591
20592                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20593                         if (this.isOverTarget(pt, oDD, this.mode)) {
20594                             // look for drop interactions
20595                             if (isDrop) {
20596                                 dropEvts.push( oDD );
20597                             // look for drag enter and drag over interactions
20598                             } else {
20599
20600                                 // initial drag over: dragEnter fires
20601                                 if (!oldOvers[oDD.id]) {
20602                                     enterEvts.push( oDD );
20603                                 // subsequent drag overs: dragOver fires
20604                                 } else {
20605                                     overEvts.push( oDD );
20606                                 }
20607
20608                                 this.dragOvers[oDD.id] = oDD;
20609                             }
20610                         }
20611                     }
20612                 }
20613             }
20614
20615             if (this.mode) {
20616                 if (outEvts.length) {
20617                     dc.b4DragOut(e, outEvts);
20618                     dc.onDragOut(e, outEvts);
20619                 }
20620
20621                 if (enterEvts.length) {
20622                     dc.onDragEnter(e, enterEvts);
20623                 }
20624
20625                 if (overEvts.length) {
20626                     dc.b4DragOver(e, overEvts);
20627                     dc.onDragOver(e, overEvts);
20628                 }
20629
20630                 if (dropEvts.length) {
20631                     dc.b4DragDrop(e, dropEvts);
20632                     dc.onDragDrop(e, dropEvts);
20633                 }
20634
20635             } else {
20636                 // fire dragout events
20637                 var len = 0;
20638                 for (i=0, len=outEvts.length; i<len; ++i) {
20639                     dc.b4DragOut(e, outEvts[i].id);
20640                     dc.onDragOut(e, outEvts[i].id);
20641                 }
20642
20643                 // fire enter events
20644                 for (i=0,len=enterEvts.length; i<len; ++i) {
20645                     // dc.b4DragEnter(e, oDD.id);
20646                     dc.onDragEnter(e, enterEvts[i].id);
20647                 }
20648
20649                 // fire over events
20650                 for (i=0,len=overEvts.length; i<len; ++i) {
20651                     dc.b4DragOver(e, overEvts[i].id);
20652                     dc.onDragOver(e, overEvts[i].id);
20653                 }
20654
20655                 // fire drop events
20656                 for (i=0, len=dropEvts.length; i<len; ++i) {
20657                     dc.b4DragDrop(e, dropEvts[i].id);
20658                     dc.onDragDrop(e, dropEvts[i].id);
20659                 }
20660
20661             }
20662
20663             // notify about a drop that did not find a target
20664             if (isDrop && !dropEvts.length) {
20665                 dc.onInvalidDrop(e);
20666             }
20667
20668         },
20669
20670         /**
20671          * Helper function for getting the best match from the list of drag
20672          * and drop objects returned by the drag and drop events when we are
20673          * in INTERSECT mode.  It returns either the first object that the
20674          * cursor is over, or the object that has the greatest overlap with
20675          * the dragged element.
20676          * @method getBestMatch
20677          * @param  {DragDrop[]} dds The array of drag and drop objects
20678          * targeted
20679          * @return {DragDrop}       The best single match
20680          * @static
20681          */
20682         getBestMatch: function(dds) {
20683             var winner = null;
20684             // Return null if the input is not what we expect
20685             //if (!dds || !dds.length || dds.length == 0) {
20686                // winner = null;
20687             // If there is only one item, it wins
20688             //} else if (dds.length == 1) {
20689
20690             var len = dds.length;
20691
20692             if (len == 1) {
20693                 winner = dds[0];
20694             } else {
20695                 // Loop through the targeted items
20696                 for (var i=0; i<len; ++i) {
20697                     var dd = dds[i];
20698                     // If the cursor is over the object, it wins.  If the
20699                     // cursor is over multiple matches, the first one we come
20700                     // to wins.
20701                     if (dd.cursorIsOver) {
20702                         winner = dd;
20703                         break;
20704                     // Otherwise the object with the most overlap wins
20705                     } else {
20706                         if (!winner ||
20707                             winner.overlap.getArea() < dd.overlap.getArea()) {
20708                             winner = dd;
20709                         }
20710                     }
20711                 }
20712             }
20713
20714             return winner;
20715         },
20716
20717         /**
20718          * Refreshes the cache of the top-left and bottom-right points of the
20719          * drag and drop objects in the specified group(s).  This is in the
20720          * format that is stored in the drag and drop instance, so typical
20721          * usage is:
20722          * <code>
20723          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20724          * </code>
20725          * Alternatively:
20726          * <code>
20727          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20728          * </code>
20729          * @TODO this really should be an indexed array.  Alternatively this
20730          * method could accept both.
20731          * @method refreshCache
20732          * @param {Object} groups an associative array of groups to refresh
20733          * @static
20734          */
20735         refreshCache: function(groups) {
20736             for (var sGroup in groups) {
20737                 if ("string" != typeof sGroup) {
20738                     continue;
20739                 }
20740                 for (var i in this.ids[sGroup]) {
20741                     var oDD = this.ids[sGroup][i];
20742
20743                     if (this.isTypeOfDD(oDD)) {
20744                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20745                         var loc = this.getLocation(oDD);
20746                         if (loc) {
20747                             this.locationCache[oDD.id] = loc;
20748                         } else {
20749                             delete this.locationCache[oDD.id];
20750                             // this will unregister the drag and drop object if
20751                             // the element is not in a usable state
20752                             // oDD.unreg();
20753                         }
20754                     }
20755                 }
20756             }
20757         },
20758
20759         /**
20760          * This checks to make sure an element exists and is in the DOM.  The
20761          * main purpose is to handle cases where innerHTML is used to remove
20762          * drag and drop objects from the DOM.  IE provides an 'unspecified
20763          * error' when trying to access the offsetParent of such an element
20764          * @method verifyEl
20765          * @param {HTMLElement} el the element to check
20766          * @return {boolean} true if the element looks usable
20767          * @static
20768          */
20769         verifyEl: function(el) {
20770             if (el) {
20771                 var parent;
20772                 if(Roo.isIE){
20773                     try{
20774                         parent = el.offsetParent;
20775                     }catch(e){}
20776                 }else{
20777                     parent = el.offsetParent;
20778                 }
20779                 if (parent) {
20780                     return true;
20781                 }
20782             }
20783
20784             return false;
20785         },
20786
20787         /**
20788          * Returns a Region object containing the drag and drop element's position
20789          * and size, including the padding configured for it
20790          * @method getLocation
20791          * @param {DragDrop} oDD the drag and drop object to get the
20792          *                       location for
20793          * @return {Roo.lib.Region} a Region object representing the total area
20794          *                             the element occupies, including any padding
20795          *                             the instance is configured for.
20796          * @static
20797          */
20798         getLocation: function(oDD) {
20799             if (! this.isTypeOfDD(oDD)) {
20800                 return null;
20801             }
20802
20803             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20804
20805             try {
20806                 pos= Roo.lib.Dom.getXY(el);
20807             } catch (e) { }
20808
20809             if (!pos) {
20810                 return null;
20811             }
20812
20813             x1 = pos[0];
20814             x2 = x1 + el.offsetWidth;
20815             y1 = pos[1];
20816             y2 = y1 + el.offsetHeight;
20817
20818             t = y1 - oDD.padding[0];
20819             r = x2 + oDD.padding[1];
20820             b = y2 + oDD.padding[2];
20821             l = x1 - oDD.padding[3];
20822
20823             return new Roo.lib.Region( t, r, b, l );
20824         },
20825
20826         /**
20827          * Checks the cursor location to see if it over the target
20828          * @method isOverTarget
20829          * @param {Roo.lib.Point} pt The point to evaluate
20830          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20831          * @return {boolean} true if the mouse is over the target
20832          * @private
20833          * @static
20834          */
20835         isOverTarget: function(pt, oTarget, intersect) {
20836             // use cache if available
20837             var loc = this.locationCache[oTarget.id];
20838             if (!loc || !this.useCache) {
20839                 loc = this.getLocation(oTarget);
20840                 this.locationCache[oTarget.id] = loc;
20841
20842             }
20843
20844             if (!loc) {
20845                 return false;
20846             }
20847
20848             oTarget.cursorIsOver = loc.contains( pt );
20849
20850             // DragDrop is using this as a sanity check for the initial mousedown
20851             // in this case we are done.  In POINT mode, if the drag obj has no
20852             // contraints, we are also done. Otherwise we need to evaluate the
20853             // location of the target as related to the actual location of the
20854             // dragged element.
20855             var dc = this.dragCurrent;
20856             if (!dc || !dc.getTargetCoord ||
20857                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20858                 return oTarget.cursorIsOver;
20859             }
20860
20861             oTarget.overlap = null;
20862
20863             // Get the current location of the drag element, this is the
20864             // location of the mouse event less the delta that represents
20865             // where the original mousedown happened on the element.  We
20866             // need to consider constraints and ticks as well.
20867             var pos = dc.getTargetCoord(pt.x, pt.y);
20868
20869             var el = dc.getDragEl();
20870             var curRegion = new Roo.lib.Region( pos.y,
20871                                                    pos.x + el.offsetWidth,
20872                                                    pos.y + el.offsetHeight,
20873                                                    pos.x );
20874
20875             var overlap = curRegion.intersect(loc);
20876
20877             if (overlap) {
20878                 oTarget.overlap = overlap;
20879                 return (intersect) ? true : oTarget.cursorIsOver;
20880             } else {
20881                 return false;
20882             }
20883         },
20884
20885         /**
20886          * unload event handler
20887          * @method _onUnload
20888          * @private
20889          * @static
20890          */
20891         _onUnload: function(e, me) {
20892             Roo.dd.DragDropMgr.unregAll();
20893         },
20894
20895         /**
20896          * Cleans up the drag and drop events and objects.
20897          * @method unregAll
20898          * @private
20899          * @static
20900          */
20901         unregAll: function() {
20902
20903             if (this.dragCurrent) {
20904                 this.stopDrag();
20905                 this.dragCurrent = null;
20906             }
20907
20908             this._execOnAll("unreg", []);
20909
20910             for (i in this.elementCache) {
20911                 delete this.elementCache[i];
20912             }
20913
20914             this.elementCache = {};
20915             this.ids = {};
20916         },
20917
20918         /**
20919          * A cache of DOM elements
20920          * @property elementCache
20921          * @private
20922          * @static
20923          */
20924         elementCache: {},
20925
20926         /**
20927          * Get the wrapper for the DOM element specified
20928          * @method getElWrapper
20929          * @param {String} id the id of the element to get
20930          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20931          * @private
20932          * @deprecated This wrapper isn't that useful
20933          * @static
20934          */
20935         getElWrapper: function(id) {
20936             var oWrapper = this.elementCache[id];
20937             if (!oWrapper || !oWrapper.el) {
20938                 oWrapper = this.elementCache[id] =
20939                     new this.ElementWrapper(Roo.getDom(id));
20940             }
20941             return oWrapper;
20942         },
20943
20944         /**
20945          * Returns the actual DOM element
20946          * @method getElement
20947          * @param {String} id the id of the elment to get
20948          * @return {Object} The element
20949          * @deprecated use Roo.getDom instead
20950          * @static
20951          */
20952         getElement: function(id) {
20953             return Roo.getDom(id);
20954         },
20955
20956         /**
20957          * Returns the style property for the DOM element (i.e.,
20958          * document.getElById(id).style)
20959          * @method getCss
20960          * @param {String} id the id of the elment to get
20961          * @return {Object} The style property of the element
20962          * @deprecated use Roo.getDom instead
20963          * @static
20964          */
20965         getCss: function(id) {
20966             var el = Roo.getDom(id);
20967             return (el) ? el.style : null;
20968         },
20969
20970         /**
20971          * Inner class for cached elements
20972          * @class DragDropMgr.ElementWrapper
20973          * @for DragDropMgr
20974          * @private
20975          * @deprecated
20976          */
20977         ElementWrapper: function(el) {
20978                 /**
20979                  * The element
20980                  * @property el
20981                  */
20982                 this.el = el || null;
20983                 /**
20984                  * The element id
20985                  * @property id
20986                  */
20987                 this.id = this.el && el.id;
20988                 /**
20989                  * A reference to the style property
20990                  * @property css
20991                  */
20992                 this.css = this.el && el.style;
20993             },
20994
20995         /**
20996          * Returns the X position of an html element
20997          * @method getPosX
20998          * @param el the element for which to get the position
20999          * @return {int} the X coordinate
21000          * @for DragDropMgr
21001          * @deprecated use Roo.lib.Dom.getX instead
21002          * @static
21003          */
21004         getPosX: function(el) {
21005             return Roo.lib.Dom.getX(el);
21006         },
21007
21008         /**
21009          * Returns the Y position of an html element
21010          * @method getPosY
21011          * @param el the element for which to get the position
21012          * @return {int} the Y coordinate
21013          * @deprecated use Roo.lib.Dom.getY instead
21014          * @static
21015          */
21016         getPosY: function(el) {
21017             return Roo.lib.Dom.getY(el);
21018         },
21019
21020         /**
21021          * Swap two nodes.  In IE, we use the native method, for others we
21022          * emulate the IE behavior
21023          * @method swapNode
21024          * @param n1 the first node to swap
21025          * @param n2 the other node to swap
21026          * @static
21027          */
21028         swapNode: function(n1, n2) {
21029             if (n1.swapNode) {
21030                 n1.swapNode(n2);
21031             } else {
21032                 var p = n2.parentNode;
21033                 var s = n2.nextSibling;
21034
21035                 if (s == n1) {
21036                     p.insertBefore(n1, n2);
21037                 } else if (n2 == n1.nextSibling) {
21038                     p.insertBefore(n2, n1);
21039                 } else {
21040                     n1.parentNode.replaceChild(n2, n1);
21041                     p.insertBefore(n1, s);
21042                 }
21043             }
21044         },
21045
21046         /**
21047          * Returns the current scroll position
21048          * @method getScroll
21049          * @private
21050          * @static
21051          */
21052         getScroll: function () {
21053             var t, l, dde=document.documentElement, db=document.body;
21054             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21055                 t = dde.scrollTop;
21056                 l = dde.scrollLeft;
21057             } else if (db) {
21058                 t = db.scrollTop;
21059                 l = db.scrollLeft;
21060             } else {
21061
21062             }
21063             return { top: t, left: l };
21064         },
21065
21066         /**
21067          * Returns the specified element style property
21068          * @method getStyle
21069          * @param {HTMLElement} el          the element
21070          * @param {string}      styleProp   the style property
21071          * @return {string} The value of the style property
21072          * @deprecated use Roo.lib.Dom.getStyle
21073          * @static
21074          */
21075         getStyle: function(el, styleProp) {
21076             return Roo.fly(el).getStyle(styleProp);
21077         },
21078
21079         /**
21080          * Gets the scrollTop
21081          * @method getScrollTop
21082          * @return {int} the document's scrollTop
21083          * @static
21084          */
21085         getScrollTop: function () { return this.getScroll().top; },
21086
21087         /**
21088          * Gets the scrollLeft
21089          * @method getScrollLeft
21090          * @return {int} the document's scrollTop
21091          * @static
21092          */
21093         getScrollLeft: function () { return this.getScroll().left; },
21094
21095         /**
21096          * Sets the x/y position of an element to the location of the
21097          * target element.
21098          * @method moveToEl
21099          * @param {HTMLElement} moveEl      The element to move
21100          * @param {HTMLElement} targetEl    The position reference element
21101          * @static
21102          */
21103         moveToEl: function (moveEl, targetEl) {
21104             var aCoord = Roo.lib.Dom.getXY(targetEl);
21105             Roo.lib.Dom.setXY(moveEl, aCoord);
21106         },
21107
21108         /**
21109          * Numeric array sort function
21110          * @method numericSort
21111          * @static
21112          */
21113         numericSort: function(a, b) { return (a - b); },
21114
21115         /**
21116          * Internal counter
21117          * @property _timeoutCount
21118          * @private
21119          * @static
21120          */
21121         _timeoutCount: 0,
21122
21123         /**
21124          * Trying to make the load order less important.  Without this we get
21125          * an error if this file is loaded before the Event Utility.
21126          * @method _addListeners
21127          * @private
21128          * @static
21129          */
21130         _addListeners: function() {
21131             var DDM = Roo.dd.DDM;
21132             if ( Roo.lib.Event && document ) {
21133                 DDM._onLoad();
21134             } else {
21135                 if (DDM._timeoutCount > 2000) {
21136                 } else {
21137                     setTimeout(DDM._addListeners, 10);
21138                     if (document && document.body) {
21139                         DDM._timeoutCount += 1;
21140                     }
21141                 }
21142             }
21143         },
21144
21145         /**
21146          * Recursively searches the immediate parent and all child nodes for
21147          * the handle element in order to determine wheter or not it was
21148          * clicked.
21149          * @method handleWasClicked
21150          * @param node the html element to inspect
21151          * @static
21152          */
21153         handleWasClicked: function(node, id) {
21154             if (this.isHandle(id, node.id)) {
21155                 return true;
21156             } else {
21157                 // check to see if this is a text node child of the one we want
21158                 var p = node.parentNode;
21159
21160                 while (p) {
21161                     if (this.isHandle(id, p.id)) {
21162                         return true;
21163                     } else {
21164                         p = p.parentNode;
21165                     }
21166                 }
21167             }
21168
21169             return false;
21170         }
21171
21172     };
21173
21174 }();
21175
21176 // shorter alias, save a few bytes
21177 Roo.dd.DDM = Roo.dd.DragDropMgr;
21178 Roo.dd.DDM._addListeners();
21179
21180 }/*
21181  * Based on:
21182  * Ext JS Library 1.1.1
21183  * Copyright(c) 2006-2007, Ext JS, LLC.
21184  *
21185  * Originally Released Under LGPL - original licence link has changed is not relivant.
21186  *
21187  * Fork - LGPL
21188  * <script type="text/javascript">
21189  */
21190
21191 /**
21192  * @class Roo.dd.DD
21193  * A DragDrop implementation where the linked element follows the
21194  * mouse cursor during a drag.
21195  * @extends Roo.dd.DragDrop
21196  * @constructor
21197  * @param {String} id the id of the linked element
21198  * @param {String} sGroup the group of related DragDrop items
21199  * @param {object} config an object containing configurable attributes
21200  *                Valid properties for DD:
21201  *                    scroll
21202  */
21203 Roo.dd.DD = function(id, sGroup, config) {
21204     if (id) {
21205         this.init(id, sGroup, config);
21206     }
21207 };
21208
21209 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21210
21211     /**
21212      * When set to true, the utility automatically tries to scroll the browser
21213      * window wehn a drag and drop element is dragged near the viewport boundary.
21214      * Defaults to true.
21215      * @property scroll
21216      * @type boolean
21217      */
21218     scroll: true,
21219
21220     /**
21221      * Sets the pointer offset to the distance between the linked element's top
21222      * left corner and the location the element was clicked
21223      * @method autoOffset
21224      * @param {int} iPageX the X coordinate of the click
21225      * @param {int} iPageY the Y coordinate of the click
21226      */
21227     autoOffset: function(iPageX, iPageY) {
21228         var x = iPageX - this.startPageX;
21229         var y = iPageY - this.startPageY;
21230         this.setDelta(x, y);
21231     },
21232
21233     /**
21234      * Sets the pointer offset.  You can call this directly to force the
21235      * offset to be in a particular location (e.g., pass in 0,0 to set it
21236      * to the center of the object)
21237      * @method setDelta
21238      * @param {int} iDeltaX the distance from the left
21239      * @param {int} iDeltaY the distance from the top
21240      */
21241     setDelta: function(iDeltaX, iDeltaY) {
21242         this.deltaX = iDeltaX;
21243         this.deltaY = iDeltaY;
21244     },
21245
21246     /**
21247      * Sets the drag element to the location of the mousedown or click event,
21248      * maintaining the cursor location relative to the location on the element
21249      * that was clicked.  Override this if you want to place the element in a
21250      * location other than where the cursor is.
21251      * @method setDragElPos
21252      * @param {int} iPageX the X coordinate of the mousedown or drag event
21253      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21254      */
21255     setDragElPos: function(iPageX, iPageY) {
21256         // the first time we do this, we are going to check to make sure
21257         // the element has css positioning
21258
21259         var el = this.getDragEl();
21260         this.alignElWithMouse(el, iPageX, iPageY);
21261     },
21262
21263     /**
21264      * Sets the element to the location of the mousedown or click event,
21265      * maintaining the cursor location relative to the location on the element
21266      * that was clicked.  Override this if you want to place the element in a
21267      * location other than where the cursor is.
21268      * @method alignElWithMouse
21269      * @param {HTMLElement} el the element to move
21270      * @param {int} iPageX the X coordinate of the mousedown or drag event
21271      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21272      */
21273     alignElWithMouse: function(el, iPageX, iPageY) {
21274         var oCoord = this.getTargetCoord(iPageX, iPageY);
21275         var fly = el.dom ? el : Roo.fly(el);
21276         if (!this.deltaSetXY) {
21277             var aCoord = [oCoord.x, oCoord.y];
21278             fly.setXY(aCoord);
21279             var newLeft = fly.getLeft(true);
21280             var newTop  = fly.getTop(true);
21281             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21282         } else {
21283             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21284         }
21285
21286         this.cachePosition(oCoord.x, oCoord.y);
21287         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21288         return oCoord;
21289     },
21290
21291     /**
21292      * Saves the most recent position so that we can reset the constraints and
21293      * tick marks on-demand.  We need to know this so that we can calculate the
21294      * number of pixels the element is offset from its original position.
21295      * @method cachePosition
21296      * @param iPageX the current x position (optional, this just makes it so we
21297      * don't have to look it up again)
21298      * @param iPageY the current y position (optional, this just makes it so we
21299      * don't have to look it up again)
21300      */
21301     cachePosition: function(iPageX, iPageY) {
21302         if (iPageX) {
21303             this.lastPageX = iPageX;
21304             this.lastPageY = iPageY;
21305         } else {
21306             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21307             this.lastPageX = aCoord[0];
21308             this.lastPageY = aCoord[1];
21309         }
21310     },
21311
21312     /**
21313      * Auto-scroll the window if the dragged object has been moved beyond the
21314      * visible window boundary.
21315      * @method autoScroll
21316      * @param {int} x the drag element's x position
21317      * @param {int} y the drag element's y position
21318      * @param {int} h the height of the drag element
21319      * @param {int} w the width of the drag element
21320      * @private
21321      */
21322     autoScroll: function(x, y, h, w) {
21323
21324         if (this.scroll) {
21325             // The client height
21326             var clientH = Roo.lib.Dom.getViewWidth();
21327
21328             // The client width
21329             var clientW = Roo.lib.Dom.getViewHeight();
21330
21331             // The amt scrolled down
21332             var st = this.DDM.getScrollTop();
21333
21334             // The amt scrolled right
21335             var sl = this.DDM.getScrollLeft();
21336
21337             // Location of the bottom of the element
21338             var bot = h + y;
21339
21340             // Location of the right of the element
21341             var right = w + x;
21342
21343             // The distance from the cursor to the bottom of the visible area,
21344             // adjusted so that we don't scroll if the cursor is beyond the
21345             // element drag constraints
21346             var toBot = (clientH + st - y - this.deltaY);
21347
21348             // The distance from the cursor to the right of the visible area
21349             var toRight = (clientW + sl - x - this.deltaX);
21350
21351
21352             // How close to the edge the cursor must be before we scroll
21353             // var thresh = (document.all) ? 100 : 40;
21354             var thresh = 40;
21355
21356             // How many pixels to scroll per autoscroll op.  This helps to reduce
21357             // clunky scrolling. IE is more sensitive about this ... it needs this
21358             // value to be higher.
21359             var scrAmt = (document.all) ? 80 : 30;
21360
21361             // Scroll down if we are near the bottom of the visible page and the
21362             // obj extends below the crease
21363             if ( bot > clientH && toBot < thresh ) {
21364                 window.scrollTo(sl, st + scrAmt);
21365             }
21366
21367             // Scroll up if the window is scrolled down and the top of the object
21368             // goes above the top border
21369             if ( y < st && st > 0 && y - st < thresh ) {
21370                 window.scrollTo(sl, st - scrAmt);
21371             }
21372
21373             // Scroll right if the obj is beyond the right border and the cursor is
21374             // near the border.
21375             if ( right > clientW && toRight < thresh ) {
21376                 window.scrollTo(sl + scrAmt, st);
21377             }
21378
21379             // Scroll left if the window has been scrolled to the right and the obj
21380             // extends past the left border
21381             if ( x < sl && sl > 0 && x - sl < thresh ) {
21382                 window.scrollTo(sl - scrAmt, st);
21383             }
21384         }
21385     },
21386
21387     /**
21388      * Finds the location the element should be placed if we want to move
21389      * it to where the mouse location less the click offset would place us.
21390      * @method getTargetCoord
21391      * @param {int} iPageX the X coordinate of the click
21392      * @param {int} iPageY the Y coordinate of the click
21393      * @return an object that contains the coordinates (Object.x and Object.y)
21394      * @private
21395      */
21396     getTargetCoord: function(iPageX, iPageY) {
21397
21398
21399         var x = iPageX - this.deltaX;
21400         var y = iPageY - this.deltaY;
21401
21402         if (this.constrainX) {
21403             if (x < this.minX) { x = this.minX; }
21404             if (x > this.maxX) { x = this.maxX; }
21405         }
21406
21407         if (this.constrainY) {
21408             if (y < this.minY) { y = this.minY; }
21409             if (y > this.maxY) { y = this.maxY; }
21410         }
21411
21412         x = this.getTick(x, this.xTicks);
21413         y = this.getTick(y, this.yTicks);
21414
21415
21416         return {x:x, y:y};
21417     },
21418
21419     /*
21420      * Sets up config options specific to this class. Overrides
21421      * Roo.dd.DragDrop, but all versions of this method through the
21422      * inheritance chain are called
21423      */
21424     applyConfig: function() {
21425         Roo.dd.DD.superclass.applyConfig.call(this);
21426         this.scroll = (this.config.scroll !== false);
21427     },
21428
21429     /*
21430      * Event that fires prior to the onMouseDown event.  Overrides
21431      * Roo.dd.DragDrop.
21432      */
21433     b4MouseDown: function(e) {
21434         // this.resetConstraints();
21435         this.autoOffset(e.getPageX(),
21436                             e.getPageY());
21437     },
21438
21439     /*
21440      * Event that fires prior to the onDrag event.  Overrides
21441      * Roo.dd.DragDrop.
21442      */
21443     b4Drag: function(e) {
21444         this.setDragElPos(e.getPageX(),
21445                             e.getPageY());
21446     },
21447
21448     toString: function() {
21449         return ("DD " + this.id);
21450     }
21451
21452     //////////////////////////////////////////////////////////////////////////
21453     // Debugging ygDragDrop events that can be overridden
21454     //////////////////////////////////////////////////////////////////////////
21455     /*
21456     startDrag: function(x, y) {
21457     },
21458
21459     onDrag: function(e) {
21460     },
21461
21462     onDragEnter: function(e, id) {
21463     },
21464
21465     onDragOver: function(e, id) {
21466     },
21467
21468     onDragOut: function(e, id) {
21469     },
21470
21471     onDragDrop: function(e, id) {
21472     },
21473
21474     endDrag: function(e) {
21475     }
21476
21477     */
21478
21479 });/*
21480  * Based on:
21481  * Ext JS Library 1.1.1
21482  * Copyright(c) 2006-2007, Ext JS, LLC.
21483  *
21484  * Originally Released Under LGPL - original licence link has changed is not relivant.
21485  *
21486  * Fork - LGPL
21487  * <script type="text/javascript">
21488  */
21489
21490 /**
21491  * @class Roo.dd.DDProxy
21492  * A DragDrop implementation that inserts an empty, bordered div into
21493  * the document that follows the cursor during drag operations.  At the time of
21494  * the click, the frame div is resized to the dimensions of the linked html
21495  * element, and moved to the exact location of the linked element.
21496  *
21497  * References to the "frame" element refer to the single proxy element that
21498  * was created to be dragged in place of all DDProxy elements on the
21499  * page.
21500  *
21501  * @extends Roo.dd.DD
21502  * @constructor
21503  * @param {String} id the id of the linked html element
21504  * @param {String} sGroup the group of related DragDrop objects
21505  * @param {object} config an object containing configurable attributes
21506  *                Valid properties for DDProxy in addition to those in DragDrop:
21507  *                   resizeFrame, centerFrame, dragElId
21508  */
21509 Roo.dd.DDProxy = function(id, sGroup, config) {
21510     if (id) {
21511         this.init(id, sGroup, config);
21512         this.initFrame();
21513     }
21514 };
21515
21516 /**
21517  * The default drag frame div id
21518  * @property Roo.dd.DDProxy.dragElId
21519  * @type String
21520  * @static
21521  */
21522 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21523
21524 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21525
21526     /**
21527      * By default we resize the drag frame to be the same size as the element
21528      * we want to drag (this is to get the frame effect).  We can turn it off
21529      * if we want a different behavior.
21530      * @property resizeFrame
21531      * @type boolean
21532      */
21533     resizeFrame: true,
21534
21535     /**
21536      * By default the frame is positioned exactly where the drag element is, so
21537      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21538      * you do not have constraints on the obj is to have the drag frame centered
21539      * around the cursor.  Set centerFrame to true for this effect.
21540      * @property centerFrame
21541      * @type boolean
21542      */
21543     centerFrame: false,
21544
21545     /**
21546      * Creates the proxy element if it does not yet exist
21547      * @method createFrame
21548      */
21549     createFrame: function() {
21550         var self = this;
21551         var body = document.body;
21552
21553         if (!body || !body.firstChild) {
21554             setTimeout( function() { self.createFrame(); }, 50 );
21555             return;
21556         }
21557
21558         var div = this.getDragEl();
21559
21560         if (!div) {
21561             div    = document.createElement("div");
21562             div.id = this.dragElId;
21563             var s  = div.style;
21564
21565             s.position   = "absolute";
21566             s.visibility = "hidden";
21567             s.cursor     = "move";
21568             s.border     = "2px solid #aaa";
21569             s.zIndex     = 999;
21570
21571             // appendChild can blow up IE if invoked prior to the window load event
21572             // while rendering a table.  It is possible there are other scenarios
21573             // that would cause this to happen as well.
21574             body.insertBefore(div, body.firstChild);
21575         }
21576     },
21577
21578     /**
21579      * Initialization for the drag frame element.  Must be called in the
21580      * constructor of all subclasses
21581      * @method initFrame
21582      */
21583     initFrame: function() {
21584         this.createFrame();
21585     },
21586
21587     applyConfig: function() {
21588         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21589
21590         this.resizeFrame = (this.config.resizeFrame !== false);
21591         this.centerFrame = (this.config.centerFrame);
21592         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21593     },
21594
21595     /**
21596      * Resizes the drag frame to the dimensions of the clicked object, positions
21597      * it over the object, and finally displays it
21598      * @method showFrame
21599      * @param {int} iPageX X click position
21600      * @param {int} iPageY Y click position
21601      * @private
21602      */
21603     showFrame: function(iPageX, iPageY) {
21604         var el = this.getEl();
21605         var dragEl = this.getDragEl();
21606         var s = dragEl.style;
21607
21608         this._resizeProxy();
21609
21610         if (this.centerFrame) {
21611             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21612                            Math.round(parseInt(s.height, 10)/2) );
21613         }
21614
21615         this.setDragElPos(iPageX, iPageY);
21616
21617         Roo.fly(dragEl).show();
21618     },
21619
21620     /**
21621      * The proxy is automatically resized to the dimensions of the linked
21622      * element when a drag is initiated, unless resizeFrame is set to false
21623      * @method _resizeProxy
21624      * @private
21625      */
21626     _resizeProxy: function() {
21627         if (this.resizeFrame) {
21628             var el = this.getEl();
21629             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21630         }
21631     },
21632
21633     // overrides Roo.dd.DragDrop
21634     b4MouseDown: function(e) {
21635         var x = e.getPageX();
21636         var y = e.getPageY();
21637         this.autoOffset(x, y);
21638         this.setDragElPos(x, y);
21639     },
21640
21641     // overrides Roo.dd.DragDrop
21642     b4StartDrag: function(x, y) {
21643         // show the drag frame
21644         this.showFrame(x, y);
21645     },
21646
21647     // overrides Roo.dd.DragDrop
21648     b4EndDrag: function(e) {
21649         Roo.fly(this.getDragEl()).hide();
21650     },
21651
21652     // overrides Roo.dd.DragDrop
21653     // By default we try to move the element to the last location of the frame.
21654     // This is so that the default behavior mirrors that of Roo.dd.DD.
21655     endDrag: function(e) {
21656
21657         var lel = this.getEl();
21658         var del = this.getDragEl();
21659
21660         // Show the drag frame briefly so we can get its position
21661         del.style.visibility = "";
21662
21663         this.beforeMove();
21664         // Hide the linked element before the move to get around a Safari
21665         // rendering bug.
21666         lel.style.visibility = "hidden";
21667         Roo.dd.DDM.moveToEl(lel, del);
21668         del.style.visibility = "hidden";
21669         lel.style.visibility = "";
21670
21671         this.afterDrag();
21672     },
21673
21674     beforeMove : function(){
21675
21676     },
21677
21678     afterDrag : function(){
21679
21680     },
21681
21682     toString: function() {
21683         return ("DDProxy " + this.id);
21684     }
21685
21686 });
21687 /*
21688  * Based on:
21689  * Ext JS Library 1.1.1
21690  * Copyright(c) 2006-2007, Ext JS, LLC.
21691  *
21692  * Originally Released Under LGPL - original licence link has changed is not relivant.
21693  *
21694  * Fork - LGPL
21695  * <script type="text/javascript">
21696  */
21697
21698  /**
21699  * @class Roo.dd.DDTarget
21700  * A DragDrop implementation that does not move, but can be a drop
21701  * target.  You would get the same result by simply omitting implementation
21702  * for the event callbacks, but this way we reduce the processing cost of the
21703  * event listener and the callbacks.
21704  * @extends Roo.dd.DragDrop
21705  * @constructor
21706  * @param {String} id the id of the element that is a drop target
21707  * @param {String} sGroup the group of related DragDrop objects
21708  * @param {object} config an object containing configurable attributes
21709  *                 Valid properties for DDTarget in addition to those in
21710  *                 DragDrop:
21711  *                    none
21712  */
21713 Roo.dd.DDTarget = function(id, sGroup, config) {
21714     if (id) {
21715         this.initTarget(id, sGroup, config);
21716     }
21717     if (config && (config.listeners || config.events)) { 
21718         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21719             listeners : config.listeners || {}, 
21720             events : config.events || {} 
21721         });    
21722     }
21723 };
21724
21725 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21726 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21727     toString: function() {
21728         return ("DDTarget " + this.id);
21729     }
21730 });
21731 /*
21732  * Based on:
21733  * Ext JS Library 1.1.1
21734  * Copyright(c) 2006-2007, Ext JS, LLC.
21735  *
21736  * Originally Released Under LGPL - original licence link has changed is not relivant.
21737  *
21738  * Fork - LGPL
21739  * <script type="text/javascript">
21740  */
21741  
21742
21743 /**
21744  * @class Roo.dd.ScrollManager
21745  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21746  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21747  * @singleton
21748  */
21749 Roo.dd.ScrollManager = function(){
21750     var ddm = Roo.dd.DragDropMgr;
21751     var els = {};
21752     var dragEl = null;
21753     var proc = {};
21754     
21755     
21756     
21757     var onStop = function(e){
21758         dragEl = null;
21759         clearProc();
21760     };
21761     
21762     var triggerRefresh = function(){
21763         if(ddm.dragCurrent){
21764              ddm.refreshCache(ddm.dragCurrent.groups);
21765         }
21766     };
21767     
21768     var doScroll = function(){
21769         if(ddm.dragCurrent){
21770             var dds = Roo.dd.ScrollManager;
21771             if(!dds.animate){
21772                 if(proc.el.scroll(proc.dir, dds.increment)){
21773                     triggerRefresh();
21774                 }
21775             }else{
21776                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21777             }
21778         }
21779     };
21780     
21781     var clearProc = function(){
21782         if(proc.id){
21783             clearInterval(proc.id);
21784         }
21785         proc.id = 0;
21786         proc.el = null;
21787         proc.dir = "";
21788     };
21789     
21790     var startProc = function(el, dir){
21791          Roo.log('scroll startproc');
21792         clearProc();
21793         proc.el = el;
21794         proc.dir = dir;
21795         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21796     };
21797     
21798     var onFire = function(e, isDrop){
21799        
21800         if(isDrop || !ddm.dragCurrent){ return; }
21801         var dds = Roo.dd.ScrollManager;
21802         if(!dragEl || dragEl != ddm.dragCurrent){
21803             dragEl = ddm.dragCurrent;
21804             // refresh regions on drag start
21805             dds.refreshCache();
21806         }
21807         
21808         var xy = Roo.lib.Event.getXY(e);
21809         var pt = new Roo.lib.Point(xy[0], xy[1]);
21810         for(var id in els){
21811             var el = els[id], r = el._region;
21812             if(r && r.contains(pt) && el.isScrollable()){
21813                 if(r.bottom - pt.y <= dds.thresh){
21814                     if(proc.el != el){
21815                         startProc(el, "down");
21816                     }
21817                     return;
21818                 }else if(r.right - pt.x <= dds.thresh){
21819                     if(proc.el != el){
21820                         startProc(el, "left");
21821                     }
21822                     return;
21823                 }else if(pt.y - r.top <= dds.thresh){
21824                     if(proc.el != el){
21825                         startProc(el, "up");
21826                     }
21827                     return;
21828                 }else if(pt.x - r.left <= dds.thresh){
21829                     if(proc.el != el){
21830                         startProc(el, "right");
21831                     }
21832                     return;
21833                 }
21834             }
21835         }
21836         clearProc();
21837     };
21838     
21839     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21840     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21841     
21842     return {
21843         /**
21844          * Registers new overflow element(s) to auto scroll
21845          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21846          */
21847         register : function(el){
21848             if(el instanceof Array){
21849                 for(var i = 0, len = el.length; i < len; i++) {
21850                         this.register(el[i]);
21851                 }
21852             }else{
21853                 el = Roo.get(el);
21854                 els[el.id] = el;
21855             }
21856             Roo.dd.ScrollManager.els = els;
21857         },
21858         
21859         /**
21860          * Unregisters overflow element(s) so they are no longer scrolled
21861          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21862          */
21863         unregister : function(el){
21864             if(el instanceof Array){
21865                 for(var i = 0, len = el.length; i < len; i++) {
21866                         this.unregister(el[i]);
21867                 }
21868             }else{
21869                 el = Roo.get(el);
21870                 delete els[el.id];
21871             }
21872         },
21873         
21874         /**
21875          * The number of pixels from the edge of a container the pointer needs to be to 
21876          * trigger scrolling (defaults to 25)
21877          * @type Number
21878          */
21879         thresh : 25,
21880         
21881         /**
21882          * The number of pixels to scroll in each scroll increment (defaults to 50)
21883          * @type Number
21884          */
21885         increment : 100,
21886         
21887         /**
21888          * The frequency of scrolls in milliseconds (defaults to 500)
21889          * @type Number
21890          */
21891         frequency : 500,
21892         
21893         /**
21894          * True to animate the scroll (defaults to true)
21895          * @type Boolean
21896          */
21897         animate: true,
21898         
21899         /**
21900          * The animation duration in seconds - 
21901          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21902          * @type Number
21903          */
21904         animDuration: .4,
21905         
21906         /**
21907          * Manually trigger a cache refresh.
21908          */
21909         refreshCache : function(){
21910             for(var id in els){
21911                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21912                     els[id]._region = els[id].getRegion();
21913                 }
21914             }
21915         }
21916     };
21917 }();/*
21918  * Based on:
21919  * Ext JS Library 1.1.1
21920  * Copyright(c) 2006-2007, Ext JS, LLC.
21921  *
21922  * Originally Released Under LGPL - original licence link has changed is not relivant.
21923  *
21924  * Fork - LGPL
21925  * <script type="text/javascript">
21926  */
21927  
21928
21929 /**
21930  * @class Roo.dd.Registry
21931  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21932  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21933  * @singleton
21934  */
21935 Roo.dd.Registry = function(){
21936     var elements = {}; 
21937     var handles = {}; 
21938     var autoIdSeed = 0;
21939
21940     var getId = function(el, autogen){
21941         if(typeof el == "string"){
21942             return el;
21943         }
21944         var id = el.id;
21945         if(!id && autogen !== false){
21946             id = "roodd-" + (++autoIdSeed);
21947             el.id = id;
21948         }
21949         return id;
21950     };
21951     
21952     return {
21953     /**
21954      * Register a drag drop element
21955      * @param {String|HTMLElement} element The id or DOM node to register
21956      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21957      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21958      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21959      * populated in the data object (if applicable):
21960      * <pre>
21961 Value      Description<br />
21962 ---------  ------------------------------------------<br />
21963 handles    Array of DOM nodes that trigger dragging<br />
21964            for the element being registered<br />
21965 isHandle   True if the element passed in triggers<br />
21966            dragging itself, else false
21967 </pre>
21968      */
21969         register : function(el, data){
21970             data = data || {};
21971             if(typeof el == "string"){
21972                 el = document.getElementById(el);
21973             }
21974             data.ddel = el;
21975             elements[getId(el)] = data;
21976             if(data.isHandle !== false){
21977                 handles[data.ddel.id] = data;
21978             }
21979             if(data.handles){
21980                 var hs = data.handles;
21981                 for(var i = 0, len = hs.length; i < len; i++){
21982                         handles[getId(hs[i])] = data;
21983                 }
21984             }
21985         },
21986
21987     /**
21988      * Unregister a drag drop element
21989      * @param {String|HTMLElement}  element The id or DOM node to unregister
21990      */
21991         unregister : function(el){
21992             var id = getId(el, false);
21993             var data = elements[id];
21994             if(data){
21995                 delete elements[id];
21996                 if(data.handles){
21997                     var hs = data.handles;
21998                     for(var i = 0, len = hs.length; i < len; i++){
21999                         delete handles[getId(hs[i], false)];
22000                     }
22001                 }
22002             }
22003         },
22004
22005     /**
22006      * Returns the handle registered for a DOM Node by id
22007      * @param {String|HTMLElement} id The DOM node or id to look up
22008      * @return {Object} handle The custom handle data
22009      */
22010         getHandle : function(id){
22011             if(typeof id != "string"){ // must be element?
22012                 id = id.id;
22013             }
22014             return handles[id];
22015         },
22016
22017     /**
22018      * Returns the handle that is registered for the DOM node that is the target of the event
22019      * @param {Event} e The event
22020      * @return {Object} handle The custom handle data
22021      */
22022         getHandleFromEvent : function(e){
22023             var t = Roo.lib.Event.getTarget(e);
22024             return t ? handles[t.id] : null;
22025         },
22026
22027     /**
22028      * Returns a custom data object that is registered for a DOM node by id
22029      * @param {String|HTMLElement} id The DOM node or id to look up
22030      * @return {Object} data The custom data
22031      */
22032         getTarget : function(id){
22033             if(typeof id != "string"){ // must be element?
22034                 id = id.id;
22035             }
22036             return elements[id];
22037         },
22038
22039     /**
22040      * Returns a custom data object that is registered for the DOM node that is the target of the event
22041      * @param {Event} e The event
22042      * @return {Object} data The custom data
22043      */
22044         getTargetFromEvent : function(e){
22045             var t = Roo.lib.Event.getTarget(e);
22046             return t ? elements[t.id] || handles[t.id] : null;
22047         }
22048     };
22049 }();/*
22050  * Based on:
22051  * Ext JS Library 1.1.1
22052  * Copyright(c) 2006-2007, Ext JS, LLC.
22053  *
22054  * Originally Released Under LGPL - original licence link has changed is not relivant.
22055  *
22056  * Fork - LGPL
22057  * <script type="text/javascript">
22058  */
22059  
22060
22061 /**
22062  * @class Roo.dd.StatusProxy
22063  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22064  * default drag proxy used by all Roo.dd components.
22065  * @constructor
22066  * @param {Object} config
22067  */
22068 Roo.dd.StatusProxy = function(config){
22069     Roo.apply(this, config);
22070     this.id = this.id || Roo.id();
22071     this.el = new Roo.Layer({
22072         dh: {
22073             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22074                 {tag: "div", cls: "x-dd-drop-icon"},
22075                 {tag: "div", cls: "x-dd-drag-ghost"}
22076             ]
22077         }, 
22078         shadow: !config || config.shadow !== false
22079     });
22080     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22081     this.dropStatus = this.dropNotAllowed;
22082 };
22083
22084 Roo.dd.StatusProxy.prototype = {
22085     /**
22086      * @cfg {String} dropAllowed
22087      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22088      */
22089     dropAllowed : "x-dd-drop-ok",
22090     /**
22091      * @cfg {String} dropNotAllowed
22092      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22093      */
22094     dropNotAllowed : "x-dd-drop-nodrop",
22095
22096     /**
22097      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22098      * over the current target element.
22099      * @param {String} cssClass The css class for the new drop status indicator image
22100      */
22101     setStatus : function(cssClass){
22102         cssClass = cssClass || this.dropNotAllowed;
22103         if(this.dropStatus != cssClass){
22104             this.el.replaceClass(this.dropStatus, cssClass);
22105             this.dropStatus = cssClass;
22106         }
22107     },
22108
22109     /**
22110      * Resets the status indicator to the default dropNotAllowed value
22111      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22112      */
22113     reset : function(clearGhost){
22114         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22115         this.dropStatus = this.dropNotAllowed;
22116         if(clearGhost){
22117             this.ghost.update("");
22118         }
22119     },
22120
22121     /**
22122      * Updates the contents of the ghost element
22123      * @param {String} html The html that will replace the current innerHTML of the ghost element
22124      */
22125     update : function(html){
22126         if(typeof html == "string"){
22127             this.ghost.update(html);
22128         }else{
22129             this.ghost.update("");
22130             html.style.margin = "0";
22131             this.ghost.dom.appendChild(html);
22132         }
22133         // ensure float = none set?? cant remember why though.
22134         var el = this.ghost.dom.firstChild;
22135                 if(el){
22136                         Roo.fly(el).setStyle('float', 'none');
22137                 }
22138     },
22139     
22140     /**
22141      * Returns the underlying proxy {@link Roo.Layer}
22142      * @return {Roo.Layer} el
22143     */
22144     getEl : function(){
22145         return this.el;
22146     },
22147
22148     /**
22149      * Returns the ghost element
22150      * @return {Roo.Element} el
22151      */
22152     getGhost : function(){
22153         return this.ghost;
22154     },
22155
22156     /**
22157      * Hides the proxy
22158      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22159      */
22160     hide : function(clear){
22161         this.el.hide();
22162         if(clear){
22163             this.reset(true);
22164         }
22165     },
22166
22167     /**
22168      * Stops the repair animation if it's currently running
22169      */
22170     stop : function(){
22171         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22172             this.anim.stop();
22173         }
22174     },
22175
22176     /**
22177      * Displays this proxy
22178      */
22179     show : function(){
22180         this.el.show();
22181     },
22182
22183     /**
22184      * Force the Layer to sync its shadow and shim positions to the element
22185      */
22186     sync : function(){
22187         this.el.sync();
22188     },
22189
22190     /**
22191      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22192      * invalid drop operation by the item being dragged.
22193      * @param {Array} xy The XY position of the element ([x, y])
22194      * @param {Function} callback The function to call after the repair is complete
22195      * @param {Object} scope The scope in which to execute the callback
22196      */
22197     repair : function(xy, callback, scope){
22198         this.callback = callback;
22199         this.scope = scope;
22200         if(xy && this.animRepair !== false){
22201             this.el.addClass("x-dd-drag-repair");
22202             this.el.hideUnders(true);
22203             this.anim = this.el.shift({
22204                 duration: this.repairDuration || .5,
22205                 easing: 'easeOut',
22206                 xy: xy,
22207                 stopFx: true,
22208                 callback: this.afterRepair,
22209                 scope: this
22210             });
22211         }else{
22212             this.afterRepair();
22213         }
22214     },
22215
22216     // private
22217     afterRepair : function(){
22218         this.hide(true);
22219         if(typeof this.callback == "function"){
22220             this.callback.call(this.scope || this);
22221         }
22222         this.callback = null;
22223         this.scope = null;
22224     }
22225 };/*
22226  * Based on:
22227  * Ext JS Library 1.1.1
22228  * Copyright(c) 2006-2007, Ext JS, LLC.
22229  *
22230  * Originally Released Under LGPL - original licence link has changed is not relivant.
22231  *
22232  * Fork - LGPL
22233  * <script type="text/javascript">
22234  */
22235
22236 /**
22237  * @class Roo.dd.DragSource
22238  * @extends Roo.dd.DDProxy
22239  * A simple class that provides the basic implementation needed to make any element draggable.
22240  * @constructor
22241  * @param {String/HTMLElement/Element} el The container element
22242  * @param {Object} config
22243  */
22244 Roo.dd.DragSource = function(el, config){
22245     this.el = Roo.get(el);
22246     this.dragData = {};
22247     
22248     Roo.apply(this, config);
22249     
22250     if(!this.proxy){
22251         this.proxy = new Roo.dd.StatusProxy();
22252     }
22253
22254     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22255           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22256     
22257     this.dragging = false;
22258 };
22259
22260 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22261     /**
22262      * @cfg {String} dropAllowed
22263      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22264      */
22265     dropAllowed : "x-dd-drop-ok",
22266     /**
22267      * @cfg {String} dropNotAllowed
22268      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22269      */
22270     dropNotAllowed : "x-dd-drop-nodrop",
22271
22272     /**
22273      * Returns the data object associated with this drag source
22274      * @return {Object} data An object containing arbitrary data
22275      */
22276     getDragData : function(e){
22277         return this.dragData;
22278     },
22279
22280     // private
22281     onDragEnter : function(e, id){
22282         var target = Roo.dd.DragDropMgr.getDDById(id);
22283         this.cachedTarget = target;
22284         if(this.beforeDragEnter(target, e, id) !== false){
22285             if(target.isNotifyTarget){
22286                 var status = target.notifyEnter(this, e, this.dragData);
22287                 this.proxy.setStatus(status);
22288             }else{
22289                 this.proxy.setStatus(this.dropAllowed);
22290             }
22291             
22292             if(this.afterDragEnter){
22293                 /**
22294                  * An empty function by default, but provided so that you can perform a custom action
22295                  * when the dragged item enters the drop target by providing an implementation.
22296                  * @param {Roo.dd.DragDrop} target The drop target
22297                  * @param {Event} e The event object
22298                  * @param {String} id The id of the dragged element
22299                  * @method afterDragEnter
22300                  */
22301                 this.afterDragEnter(target, e, id);
22302             }
22303         }
22304     },
22305
22306     /**
22307      * An empty function by default, but provided so that you can perform a custom action
22308      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22309      * @param {Roo.dd.DragDrop} target The drop target
22310      * @param {Event} e The event object
22311      * @param {String} id The id of the dragged element
22312      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22313      */
22314     beforeDragEnter : function(target, e, id){
22315         return true;
22316     },
22317
22318     // private
22319     alignElWithMouse: function() {
22320         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22321         this.proxy.sync();
22322     },
22323
22324     // private
22325     onDragOver : function(e, id){
22326         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22327         if(this.beforeDragOver(target, e, id) !== false){
22328             if(target.isNotifyTarget){
22329                 var status = target.notifyOver(this, e, this.dragData);
22330                 this.proxy.setStatus(status);
22331             }
22332
22333             if(this.afterDragOver){
22334                 /**
22335                  * An empty function by default, but provided so that you can perform a custom action
22336                  * while the dragged item is over the drop target by providing an implementation.
22337                  * @param {Roo.dd.DragDrop} target The drop target
22338                  * @param {Event} e The event object
22339                  * @param {String} id The id of the dragged element
22340                  * @method afterDragOver
22341                  */
22342                 this.afterDragOver(target, e, id);
22343             }
22344         }
22345     },
22346
22347     /**
22348      * An empty function by default, but provided so that you can perform a custom action
22349      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22350      * @param {Roo.dd.DragDrop} target The drop target
22351      * @param {Event} e The event object
22352      * @param {String} id The id of the dragged element
22353      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22354      */
22355     beforeDragOver : function(target, e, id){
22356         return true;
22357     },
22358
22359     // private
22360     onDragOut : function(e, id){
22361         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22362         if(this.beforeDragOut(target, e, id) !== false){
22363             if(target.isNotifyTarget){
22364                 target.notifyOut(this, e, this.dragData);
22365             }
22366             this.proxy.reset();
22367             if(this.afterDragOut){
22368                 /**
22369                  * An empty function by default, but provided so that you can perform a custom action
22370                  * after the dragged item is dragged out of the target without dropping.
22371                  * @param {Roo.dd.DragDrop} target The drop target
22372                  * @param {Event} e The event object
22373                  * @param {String} id The id of the dragged element
22374                  * @method afterDragOut
22375                  */
22376                 this.afterDragOut(target, e, id);
22377             }
22378         }
22379         this.cachedTarget = null;
22380     },
22381
22382     /**
22383      * An empty function by default, but provided so that you can perform a custom action before the dragged
22384      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22385      * @param {Roo.dd.DragDrop} target The drop target
22386      * @param {Event} e The event object
22387      * @param {String} id The id of the dragged element
22388      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22389      */
22390     beforeDragOut : function(target, e, id){
22391         return true;
22392     },
22393     
22394     // private
22395     onDragDrop : function(e, id){
22396         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22397         if(this.beforeDragDrop(target, e, id) !== false){
22398             if(target.isNotifyTarget){
22399                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22400                     this.onValidDrop(target, e, id);
22401                 }else{
22402                     this.onInvalidDrop(target, e, id);
22403                 }
22404             }else{
22405                 this.onValidDrop(target, e, id);
22406             }
22407             
22408             if(this.afterDragDrop){
22409                 /**
22410                  * An empty function by default, but provided so that you can perform a custom action
22411                  * after a valid drag drop has occurred by providing an implementation.
22412                  * @param {Roo.dd.DragDrop} target The drop target
22413                  * @param {Event} e The event object
22414                  * @param {String} id The id of the dropped element
22415                  * @method afterDragDrop
22416                  */
22417                 this.afterDragDrop(target, e, id);
22418             }
22419         }
22420         delete this.cachedTarget;
22421     },
22422
22423     /**
22424      * An empty function by default, but provided so that you can perform a custom action before the dragged
22425      * item is dropped onto the target and optionally cancel the onDragDrop.
22426      * @param {Roo.dd.DragDrop} target The drop target
22427      * @param {Event} e The event object
22428      * @param {String} id The id of the dragged element
22429      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22430      */
22431     beforeDragDrop : function(target, e, id){
22432         return true;
22433     },
22434
22435     // private
22436     onValidDrop : function(target, e, id){
22437         this.hideProxy();
22438         if(this.afterValidDrop){
22439             /**
22440              * An empty function by default, but provided so that you can perform a custom action
22441              * after a valid drop has occurred by providing an implementation.
22442              * @param {Object} target The target DD 
22443              * @param {Event} e The event object
22444              * @param {String} id The id of the dropped element
22445              * @method afterInvalidDrop
22446              */
22447             this.afterValidDrop(target, e, id);
22448         }
22449     },
22450
22451     // private
22452     getRepairXY : function(e, data){
22453         return this.el.getXY();  
22454     },
22455
22456     // private
22457     onInvalidDrop : function(target, e, id){
22458         this.beforeInvalidDrop(target, e, id);
22459         if(this.cachedTarget){
22460             if(this.cachedTarget.isNotifyTarget){
22461                 this.cachedTarget.notifyOut(this, e, this.dragData);
22462             }
22463             this.cacheTarget = null;
22464         }
22465         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22466
22467         if(this.afterInvalidDrop){
22468             /**
22469              * An empty function by default, but provided so that you can perform a custom action
22470              * after an invalid drop has occurred by providing an implementation.
22471              * @param {Event} e The event object
22472              * @param {String} id The id of the dropped element
22473              * @method afterInvalidDrop
22474              */
22475             this.afterInvalidDrop(e, id);
22476         }
22477     },
22478
22479     // private
22480     afterRepair : function(){
22481         if(Roo.enableFx){
22482             this.el.highlight(this.hlColor || "c3daf9");
22483         }
22484         this.dragging = false;
22485     },
22486
22487     /**
22488      * An empty function by default, but provided so that you can perform a custom action after an invalid
22489      * drop has occurred.
22490      * @param {Roo.dd.DragDrop} target The drop target
22491      * @param {Event} e The event object
22492      * @param {String} id The id of the dragged element
22493      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22494      */
22495     beforeInvalidDrop : function(target, e, id){
22496         return true;
22497     },
22498
22499     // private
22500     handleMouseDown : function(e){
22501         if(this.dragging) {
22502             return;
22503         }
22504         var data = this.getDragData(e);
22505         if(data && this.onBeforeDrag(data, e) !== false){
22506             this.dragData = data;
22507             this.proxy.stop();
22508             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22509         } 
22510     },
22511
22512     /**
22513      * An empty function by default, but provided so that you can perform a custom action before the initial
22514      * drag event begins and optionally cancel it.
22515      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22516      * @param {Event} e The event object
22517      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22518      */
22519     onBeforeDrag : function(data, e){
22520         return true;
22521     },
22522
22523     /**
22524      * An empty function by default, but provided so that you can perform a custom action once the initial
22525      * drag event has begun.  The drag cannot be canceled from this function.
22526      * @param {Number} x The x position of the click on the dragged object
22527      * @param {Number} y The y position of the click on the dragged object
22528      */
22529     onStartDrag : Roo.emptyFn,
22530
22531     // private - YUI override
22532     startDrag : function(x, y){
22533         this.proxy.reset();
22534         this.dragging = true;
22535         this.proxy.update("");
22536         this.onInitDrag(x, y);
22537         this.proxy.show();
22538     },
22539
22540     // private
22541     onInitDrag : function(x, y){
22542         var clone = this.el.dom.cloneNode(true);
22543         clone.id = Roo.id(); // prevent duplicate ids
22544         this.proxy.update(clone);
22545         this.onStartDrag(x, y);
22546         return true;
22547     },
22548
22549     /**
22550      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22551      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22552      */
22553     getProxy : function(){
22554         return this.proxy;  
22555     },
22556
22557     /**
22558      * Hides the drag source's {@link Roo.dd.StatusProxy}
22559      */
22560     hideProxy : function(){
22561         this.proxy.hide();  
22562         this.proxy.reset(true);
22563         this.dragging = false;
22564     },
22565
22566     // private
22567     triggerCacheRefresh : function(){
22568         Roo.dd.DDM.refreshCache(this.groups);
22569     },
22570
22571     // private - override to prevent hiding
22572     b4EndDrag: function(e) {
22573     },
22574
22575     // private - override to prevent moving
22576     endDrag : function(e){
22577         this.onEndDrag(this.dragData, e);
22578     },
22579
22580     // private
22581     onEndDrag : function(data, e){
22582     },
22583     
22584     // private - pin to cursor
22585     autoOffset : function(x, y) {
22586         this.setDelta(-12, -20);
22587     }    
22588 });/*
22589  * Based on:
22590  * Ext JS Library 1.1.1
22591  * Copyright(c) 2006-2007, Ext JS, LLC.
22592  *
22593  * Originally Released Under LGPL - original licence link has changed is not relivant.
22594  *
22595  * Fork - LGPL
22596  * <script type="text/javascript">
22597  */
22598
22599
22600 /**
22601  * @class Roo.dd.DropTarget
22602  * @extends Roo.dd.DDTarget
22603  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22604  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22605  * @constructor
22606  * @param {String/HTMLElement/Element} el The container element
22607  * @param {Object} config
22608  */
22609 Roo.dd.DropTarget = function(el, config){
22610     this.el = Roo.get(el);
22611     
22612     var listeners = false; ;
22613     if (config && config.listeners) {
22614         listeners= config.listeners;
22615         delete config.listeners;
22616     }
22617     Roo.apply(this, config);
22618     
22619     if(this.containerScroll){
22620         Roo.dd.ScrollManager.register(this.el);
22621     }
22622     this.addEvents( {
22623          /**
22624          * @scope Roo.dd.DropTarget
22625          */
22626          
22627          /**
22628          * @event enter
22629          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22630          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22631          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22632          * 
22633          * IMPORTANT : it should set  this.valid to true|false
22634          * 
22635          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22636          * @param {Event} e The event
22637          * @param {Object} data An object containing arbitrary data supplied by the drag source
22638          */
22639         "enter" : true,
22640         
22641          /**
22642          * @event over
22643          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22644          * This method will be called on every mouse movement while the drag source is over the drop target.
22645          * This default implementation simply returns the dropAllowed config value.
22646          * 
22647          * IMPORTANT : it should set  this.valid to true|false
22648          * 
22649          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22650          * @param {Event} e The event
22651          * @param {Object} data An object containing arbitrary data supplied by the drag source
22652          
22653          */
22654         "over" : true,
22655         /**
22656          * @event out
22657          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22658          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22659          * overClass (if any) from the drop element.
22660          * 
22661          * 
22662          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22663          * @param {Event} e The event
22664          * @param {Object} data An object containing arbitrary data supplied by the drag source
22665          */
22666          "out" : true,
22667          
22668         /**
22669          * @event drop
22670          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22671          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22672          * implementation that does something to process the drop event and returns true so that the drag source's
22673          * repair action does not run.
22674          * 
22675          * IMPORTANT : it should set this.success
22676          * 
22677          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22678          * @param {Event} e The event
22679          * @param {Object} data An object containing arbitrary data supplied by the drag source
22680         */
22681          "drop" : true
22682     });
22683             
22684      
22685     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22686         this.el.dom, 
22687         this.ddGroup || this.group,
22688         {
22689             isTarget: true,
22690             listeners : listeners || {} 
22691            
22692         
22693         }
22694     );
22695
22696 };
22697
22698 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22699     /**
22700      * @cfg {String} overClass
22701      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22702      */
22703      /**
22704      * @cfg {String} ddGroup
22705      * The drag drop group to handle drop events for
22706      */
22707      
22708     /**
22709      * @cfg {String} dropAllowed
22710      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22711      */
22712     dropAllowed : "x-dd-drop-ok",
22713     /**
22714      * @cfg {String} dropNotAllowed
22715      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22716      */
22717     dropNotAllowed : "x-dd-drop-nodrop",
22718     /**
22719      * @cfg {boolean} success
22720      * set this after drop listener.. 
22721      */
22722     success : false,
22723     /**
22724      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22725      * if the drop point is valid for over/enter..
22726      */
22727     valid : false,
22728     // private
22729     isTarget : true,
22730
22731     // private
22732     isNotifyTarget : true,
22733     
22734     /**
22735      * @hide
22736      */
22737     notifyEnter : function(dd, e, data)
22738     {
22739         this.valid = true;
22740         this.fireEvent('enter', dd, e, data);
22741         if(this.overClass){
22742             this.el.addClass(this.overClass);
22743         }
22744         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22745             this.valid ? this.dropAllowed : this.dropNotAllowed
22746         );
22747     },
22748
22749     /**
22750      * @hide
22751      */
22752     notifyOver : function(dd, e, data)
22753     {
22754         this.valid = true;
22755         this.fireEvent('over', dd, e, data);
22756         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22757             this.valid ? this.dropAllowed : this.dropNotAllowed
22758         );
22759     },
22760
22761     /**
22762      * @hide
22763      */
22764     notifyOut : function(dd, e, data)
22765     {
22766         this.fireEvent('out', dd, e, data);
22767         if(this.overClass){
22768             this.el.removeClass(this.overClass);
22769         }
22770     },
22771
22772     /**
22773      * @hide
22774      */
22775     notifyDrop : function(dd, e, data)
22776     {
22777         this.success = false;
22778         this.fireEvent('drop', dd, e, data);
22779         return this.success;
22780     }
22781 });/*
22782  * Based on:
22783  * Ext JS Library 1.1.1
22784  * Copyright(c) 2006-2007, Ext JS, LLC.
22785  *
22786  * Originally Released Under LGPL - original licence link has changed is not relivant.
22787  *
22788  * Fork - LGPL
22789  * <script type="text/javascript">
22790  */
22791
22792
22793 /**
22794  * @class Roo.dd.DragZone
22795  * @extends Roo.dd.DragSource
22796  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22797  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22798  * @constructor
22799  * @param {String/HTMLElement/Element} el The container element
22800  * @param {Object} config
22801  */
22802 Roo.dd.DragZone = function(el, config){
22803     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22804     if(this.containerScroll){
22805         Roo.dd.ScrollManager.register(this.el);
22806     }
22807 };
22808
22809 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22810     /**
22811      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22812      * for auto scrolling during drag operations.
22813      */
22814     /**
22815      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22816      * method after a failed drop (defaults to "c3daf9" - light blue)
22817      */
22818
22819     /**
22820      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22821      * for a valid target to drag based on the mouse down. Override this method
22822      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22823      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22824      * @param {EventObject} e The mouse down event
22825      * @return {Object} The dragData
22826      */
22827     getDragData : function(e){
22828         return Roo.dd.Registry.getHandleFromEvent(e);
22829     },
22830     
22831     /**
22832      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22833      * this.dragData.ddel
22834      * @param {Number} x The x position of the click on the dragged object
22835      * @param {Number} y The y position of the click on the dragged object
22836      * @return {Boolean} true to continue the drag, false to cancel
22837      */
22838     onInitDrag : function(x, y){
22839         this.proxy.update(this.dragData.ddel.cloneNode(true));
22840         this.onStartDrag(x, y);
22841         return true;
22842     },
22843     
22844     /**
22845      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22846      */
22847     afterRepair : function(){
22848         if(Roo.enableFx){
22849             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22850         }
22851         this.dragging = false;
22852     },
22853
22854     /**
22855      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22856      * the XY of this.dragData.ddel
22857      * @param {EventObject} e The mouse up event
22858      * @return {Array} The xy location (e.g. [100, 200])
22859      */
22860     getRepairXY : function(e){
22861         return Roo.Element.fly(this.dragData.ddel).getXY();  
22862     }
22863 });/*
22864  * Based on:
22865  * Ext JS Library 1.1.1
22866  * Copyright(c) 2006-2007, Ext JS, LLC.
22867  *
22868  * Originally Released Under LGPL - original licence link has changed is not relivant.
22869  *
22870  * Fork - LGPL
22871  * <script type="text/javascript">
22872  */
22873 /**
22874  * @class Roo.dd.DropZone
22875  * @extends Roo.dd.DropTarget
22876  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22877  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22878  * @constructor
22879  * @param {String/HTMLElement/Element} el The container element
22880  * @param {Object} config
22881  */
22882 Roo.dd.DropZone = function(el, config){
22883     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22884 };
22885
22886 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22887     /**
22888      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22889      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22890      * provide your own custom lookup.
22891      * @param {Event} e The event
22892      * @return {Object} data The custom data
22893      */
22894     getTargetFromEvent : function(e){
22895         return Roo.dd.Registry.getTargetFromEvent(e);
22896     },
22897
22898     /**
22899      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22900      * that it has registered.  This method has no default implementation and should be overridden to provide
22901      * node-specific processing if necessary.
22902      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22903      * {@link #getTargetFromEvent} for this node)
22904      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22905      * @param {Event} e The event
22906      * @param {Object} data An object containing arbitrary data supplied by the drag source
22907      */
22908     onNodeEnter : function(n, dd, e, data){
22909         
22910     },
22911
22912     /**
22913      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22914      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22915      * overridden to provide the proper feedback.
22916      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22917      * {@link #getTargetFromEvent} for this node)
22918      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22919      * @param {Event} e The event
22920      * @param {Object} data An object containing arbitrary data supplied by the drag source
22921      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22922      * underlying {@link Roo.dd.StatusProxy} can be updated
22923      */
22924     onNodeOver : function(n, dd, e, data){
22925         return this.dropAllowed;
22926     },
22927
22928     /**
22929      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22930      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22931      * node-specific processing if necessary.
22932      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22933      * {@link #getTargetFromEvent} for this node)
22934      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22935      * @param {Event} e The event
22936      * @param {Object} data An object containing arbitrary data supplied by the drag source
22937      */
22938     onNodeOut : function(n, dd, e, data){
22939         
22940     },
22941
22942     /**
22943      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22944      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22945      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22946      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22947      * {@link #getTargetFromEvent} for this node)
22948      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22949      * @param {Event} e The event
22950      * @param {Object} data An object containing arbitrary data supplied by the drag source
22951      * @return {Boolean} True if the drop was valid, else false
22952      */
22953     onNodeDrop : function(n, dd, e, data){
22954         return false;
22955     },
22956
22957     /**
22958      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22959      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22960      * it should be overridden to provide the proper feedback if necessary.
22961      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22962      * @param {Event} e The event
22963      * @param {Object} data An object containing arbitrary data supplied by the drag source
22964      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22965      * underlying {@link Roo.dd.StatusProxy} can be updated
22966      */
22967     onContainerOver : function(dd, e, data){
22968         return this.dropNotAllowed;
22969     },
22970
22971     /**
22972      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22973      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22974      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22975      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22976      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22977      * @param {Event} e The event
22978      * @param {Object} data An object containing arbitrary data supplied by the drag source
22979      * @return {Boolean} True if the drop was valid, else false
22980      */
22981     onContainerDrop : function(dd, e, data){
22982         return false;
22983     },
22984
22985     /**
22986      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22987      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22988      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22989      * you should override this method and provide a custom implementation.
22990      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22991      * @param {Event} e The event
22992      * @param {Object} data An object containing arbitrary data supplied by the drag source
22993      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22994      * underlying {@link Roo.dd.StatusProxy} can be updated
22995      */
22996     notifyEnter : function(dd, e, data){
22997         return this.dropNotAllowed;
22998     },
22999
23000     /**
23001      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23002      * This method will be called on every mouse movement while the drag source is over the drop zone.
23003      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23004      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23005      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23006      * registered node, it will call {@link #onContainerOver}.
23007      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23008      * @param {Event} e The event
23009      * @param {Object} data An object containing arbitrary data supplied by the drag source
23010      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23011      * underlying {@link Roo.dd.StatusProxy} can be updated
23012      */
23013     notifyOver : function(dd, e, data){
23014         var n = this.getTargetFromEvent(e);
23015         if(!n){ // not over valid drop target
23016             if(this.lastOverNode){
23017                 this.onNodeOut(this.lastOverNode, dd, e, data);
23018                 this.lastOverNode = null;
23019             }
23020             return this.onContainerOver(dd, e, data);
23021         }
23022         if(this.lastOverNode != n){
23023             if(this.lastOverNode){
23024                 this.onNodeOut(this.lastOverNode, dd, e, data);
23025             }
23026             this.onNodeEnter(n, dd, e, data);
23027             this.lastOverNode = n;
23028         }
23029         return this.onNodeOver(n, dd, e, data);
23030     },
23031
23032     /**
23033      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23034      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23035      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23036      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23037      * @param {Event} e The event
23038      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23039      */
23040     notifyOut : function(dd, e, data){
23041         if(this.lastOverNode){
23042             this.onNodeOut(this.lastOverNode, dd, e, data);
23043             this.lastOverNode = null;
23044         }
23045     },
23046
23047     /**
23048      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23049      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23050      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23051      * otherwise it will call {@link #onContainerDrop}.
23052      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23053      * @param {Event} e The event
23054      * @param {Object} data An object containing arbitrary data supplied by the drag source
23055      * @return {Boolean} True if the drop was valid, else false
23056      */
23057     notifyDrop : function(dd, e, data){
23058         if(this.lastOverNode){
23059             this.onNodeOut(this.lastOverNode, dd, e, data);
23060             this.lastOverNode = null;
23061         }
23062         var n = this.getTargetFromEvent(e);
23063         return n ?
23064             this.onNodeDrop(n, dd, e, data) :
23065             this.onContainerDrop(dd, e, data);
23066     },
23067
23068     // private
23069     triggerCacheRefresh : function(){
23070         Roo.dd.DDM.refreshCache(this.groups);
23071     }  
23072 });/*
23073  * Based on:
23074  * Ext JS Library 1.1.1
23075  * Copyright(c) 2006-2007, Ext JS, LLC.
23076  *
23077  * Originally Released Under LGPL - original licence link has changed is not relivant.
23078  *
23079  * Fork - LGPL
23080  * <script type="text/javascript">
23081  */
23082
23083
23084 /**
23085  * @class Roo.data.SortTypes
23086  * @singleton
23087  * Defines the default sorting (casting?) comparison functions used when sorting data.
23088  */
23089 Roo.data.SortTypes = {
23090     /**
23091      * Default sort that does nothing
23092      * @param {Mixed} s The value being converted
23093      * @return {Mixed} The comparison value
23094      */
23095     none : function(s){
23096         return s;
23097     },
23098     
23099     /**
23100      * The regular expression used to strip tags
23101      * @type {RegExp}
23102      * @property
23103      */
23104     stripTagsRE : /<\/?[^>]+>/gi,
23105     
23106     /**
23107      * Strips all HTML tags to sort on text only
23108      * @param {Mixed} s The value being converted
23109      * @return {String} The comparison value
23110      */
23111     asText : function(s){
23112         return String(s).replace(this.stripTagsRE, "");
23113     },
23114     
23115     /**
23116      * Strips all HTML tags to sort on text only - Case insensitive
23117      * @param {Mixed} s The value being converted
23118      * @return {String} The comparison value
23119      */
23120     asUCText : function(s){
23121         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23122     },
23123     
23124     /**
23125      * Case insensitive string
23126      * @param {Mixed} s The value being converted
23127      * @return {String} The comparison value
23128      */
23129     asUCString : function(s) {
23130         return String(s).toUpperCase();
23131     },
23132     
23133     /**
23134      * Date sorting
23135      * @param {Mixed} s The value being converted
23136      * @return {Number} The comparison value
23137      */
23138     asDate : function(s) {
23139         if(!s){
23140             return 0;
23141         }
23142         if(s instanceof Date){
23143             return s.getTime();
23144         }
23145         return Date.parse(String(s));
23146     },
23147     
23148     /**
23149      * Float sorting
23150      * @param {Mixed} s The value being converted
23151      * @return {Float} The comparison value
23152      */
23153     asFloat : function(s) {
23154         var val = parseFloat(String(s).replace(/,/g, ""));
23155         if(isNaN(val)) {
23156             val = 0;
23157         }
23158         return val;
23159     },
23160     
23161     /**
23162      * Integer sorting
23163      * @param {Mixed} s The value being converted
23164      * @return {Number} The comparison value
23165      */
23166     asInt : function(s) {
23167         var val = parseInt(String(s).replace(/,/g, ""));
23168         if(isNaN(val)) {
23169             val = 0;
23170         }
23171         return val;
23172     }
23173 };/*
23174  * Based on:
23175  * Ext JS Library 1.1.1
23176  * Copyright(c) 2006-2007, Ext JS, LLC.
23177  *
23178  * Originally Released Under LGPL - original licence link has changed is not relivant.
23179  *
23180  * Fork - LGPL
23181  * <script type="text/javascript">
23182  */
23183
23184 /**
23185 * @class Roo.data.Record
23186  * Instances of this class encapsulate both record <em>definition</em> information, and record
23187  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23188  * to access Records cached in an {@link Roo.data.Store} object.<br>
23189  * <p>
23190  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23191  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23192  * objects.<br>
23193  * <p>
23194  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23195  * @constructor
23196  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23197  * {@link #create}. The parameters are the same.
23198  * @param {Array} data An associative Array of data values keyed by the field name.
23199  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23200  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23201  * not specified an integer id is generated.
23202  */
23203 Roo.data.Record = function(data, id){
23204     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23205     this.data = data;
23206 };
23207
23208 /**
23209  * Generate a constructor for a specific record layout.
23210  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23211  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23212  * Each field definition object may contain the following properties: <ul>
23213  * <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,
23214  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23215  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23216  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23217  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23218  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23219  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23220  * this may be omitted.</p></li>
23221  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23222  * <ul><li>auto (Default, implies no conversion)</li>
23223  * <li>string</li>
23224  * <li>int</li>
23225  * <li>float</li>
23226  * <li>boolean</li>
23227  * <li>date</li></ul></p></li>
23228  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23229  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23230  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23231  * by the Reader into an object that will be stored in the Record. It is passed the
23232  * following parameters:<ul>
23233  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23234  * </ul></p></li>
23235  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23236  * </ul>
23237  * <br>usage:<br><pre><code>
23238 var TopicRecord = Roo.data.Record.create(
23239     {name: 'title', mapping: 'topic_title'},
23240     {name: 'author', mapping: 'username'},
23241     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23242     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23243     {name: 'lastPoster', mapping: 'user2'},
23244     {name: 'excerpt', mapping: 'post_text'}
23245 );
23246
23247 var myNewRecord = new TopicRecord({
23248     title: 'Do my job please',
23249     author: 'noobie',
23250     totalPosts: 1,
23251     lastPost: new Date(),
23252     lastPoster: 'Animal',
23253     excerpt: 'No way dude!'
23254 });
23255 myStore.add(myNewRecord);
23256 </code></pre>
23257  * @method create
23258  * @static
23259  */
23260 Roo.data.Record.create = function(o){
23261     var f = function(){
23262         f.superclass.constructor.apply(this, arguments);
23263     };
23264     Roo.extend(f, Roo.data.Record);
23265     var p = f.prototype;
23266     p.fields = new Roo.util.MixedCollection(false, function(field){
23267         return field.name;
23268     });
23269     for(var i = 0, len = o.length; i < len; i++){
23270         p.fields.add(new Roo.data.Field(o[i]));
23271     }
23272     f.getField = function(name){
23273         return p.fields.get(name);  
23274     };
23275     return f;
23276 };
23277
23278 Roo.data.Record.AUTO_ID = 1000;
23279 Roo.data.Record.EDIT = 'edit';
23280 Roo.data.Record.REJECT = 'reject';
23281 Roo.data.Record.COMMIT = 'commit';
23282
23283 Roo.data.Record.prototype = {
23284     /**
23285      * Readonly flag - true if this record has been modified.
23286      * @type Boolean
23287      */
23288     dirty : false,
23289     editing : false,
23290     error: null,
23291     modified: null,
23292
23293     // private
23294     join : function(store){
23295         this.store = store;
23296     },
23297
23298     /**
23299      * Set the named field to the specified value.
23300      * @param {String} name The name of the field to set.
23301      * @param {Object} value The value to set the field to.
23302      */
23303     set : function(name, value){
23304         if(this.data[name] == value){
23305             return;
23306         }
23307         this.dirty = true;
23308         if(!this.modified){
23309             this.modified = {};
23310         }
23311         if(typeof this.modified[name] == 'undefined'){
23312             this.modified[name] = this.data[name];
23313         }
23314         this.data[name] = value;
23315         if(!this.editing && this.store){
23316             this.store.afterEdit(this);
23317         }       
23318     },
23319
23320     /**
23321      * Get the value of the named field.
23322      * @param {String} name The name of the field to get the value of.
23323      * @return {Object} The value of the field.
23324      */
23325     get : function(name){
23326         return this.data[name]; 
23327     },
23328
23329     // private
23330     beginEdit : function(){
23331         this.editing = true;
23332         this.modified = {}; 
23333     },
23334
23335     // private
23336     cancelEdit : function(){
23337         this.editing = false;
23338         delete this.modified;
23339     },
23340
23341     // private
23342     endEdit : function(){
23343         this.editing = false;
23344         if(this.dirty && this.store){
23345             this.store.afterEdit(this);
23346         }
23347     },
23348
23349     /**
23350      * Usually called by the {@link Roo.data.Store} which owns the Record.
23351      * Rejects all changes made to the Record since either creation, or the last commit operation.
23352      * Modified fields are reverted to their original values.
23353      * <p>
23354      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23355      * of reject operations.
23356      */
23357     reject : function(){
23358         var m = this.modified;
23359         for(var n in m){
23360             if(typeof m[n] != "function"){
23361                 this.data[n] = m[n];
23362             }
23363         }
23364         this.dirty = false;
23365         delete this.modified;
23366         this.editing = false;
23367         if(this.store){
23368             this.store.afterReject(this);
23369         }
23370     },
23371
23372     /**
23373      * Usually called by the {@link Roo.data.Store} which owns the Record.
23374      * Commits all changes made to the Record since either creation, or the last commit operation.
23375      * <p>
23376      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23377      * of commit operations.
23378      */
23379     commit : function(){
23380         this.dirty = false;
23381         delete this.modified;
23382         this.editing = false;
23383         if(this.store){
23384             this.store.afterCommit(this);
23385         }
23386     },
23387
23388     // private
23389     hasError : function(){
23390         return this.error != null;
23391     },
23392
23393     // private
23394     clearError : function(){
23395         this.error = null;
23396     },
23397
23398     /**
23399      * Creates a copy of this record.
23400      * @param {String} id (optional) A new record id if you don't want to use this record's id
23401      * @return {Record}
23402      */
23403     copy : function(newId) {
23404         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23405     }
23406 };/*
23407  * Based on:
23408  * Ext JS Library 1.1.1
23409  * Copyright(c) 2006-2007, Ext JS, LLC.
23410  *
23411  * Originally Released Under LGPL - original licence link has changed is not relivant.
23412  *
23413  * Fork - LGPL
23414  * <script type="text/javascript">
23415  */
23416
23417
23418
23419 /**
23420  * @class Roo.data.Store
23421  * @extends Roo.util.Observable
23422  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23423  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23424  * <p>
23425  * 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
23426  * has no knowledge of the format of the data returned by the Proxy.<br>
23427  * <p>
23428  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23429  * instances from the data object. These records are cached and made available through accessor functions.
23430  * @constructor
23431  * Creates a new Store.
23432  * @param {Object} config A config object containing the objects needed for the Store to access data,
23433  * and read the data into Records.
23434  */
23435 Roo.data.Store = function(config){
23436     this.data = new Roo.util.MixedCollection(false);
23437     this.data.getKey = function(o){
23438         return o.id;
23439     };
23440     this.baseParams = {};
23441     // private
23442     this.paramNames = {
23443         "start" : "start",
23444         "limit" : "limit",
23445         "sort" : "sort",
23446         "dir" : "dir",
23447         "multisort" : "_multisort"
23448     };
23449
23450     if(config && config.data){
23451         this.inlineData = config.data;
23452         delete config.data;
23453     }
23454
23455     Roo.apply(this, config);
23456     
23457     if(this.reader){ // reader passed
23458         this.reader = Roo.factory(this.reader, Roo.data);
23459         this.reader.xmodule = this.xmodule || false;
23460         if(!this.recordType){
23461             this.recordType = this.reader.recordType;
23462         }
23463         if(this.reader.onMetaChange){
23464             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23465         }
23466     }
23467
23468     if(this.recordType){
23469         this.fields = this.recordType.prototype.fields;
23470     }
23471     this.modified = [];
23472
23473     this.addEvents({
23474         /**
23475          * @event datachanged
23476          * Fires when the data cache has changed, and a widget which is using this Store
23477          * as a Record cache should refresh its view.
23478          * @param {Store} this
23479          */
23480         datachanged : true,
23481         /**
23482          * @event metachange
23483          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23484          * @param {Store} this
23485          * @param {Object} meta The JSON metadata
23486          */
23487         metachange : true,
23488         /**
23489          * @event add
23490          * Fires when Records have been added to the Store
23491          * @param {Store} this
23492          * @param {Roo.data.Record[]} records The array of Records added
23493          * @param {Number} index The index at which the record(s) were added
23494          */
23495         add : true,
23496         /**
23497          * @event remove
23498          * Fires when a Record has been removed from the Store
23499          * @param {Store} this
23500          * @param {Roo.data.Record} record The Record that was removed
23501          * @param {Number} index The index at which the record was removed
23502          */
23503         remove : true,
23504         /**
23505          * @event update
23506          * Fires when a Record has been updated
23507          * @param {Store} this
23508          * @param {Roo.data.Record} record The Record that was updated
23509          * @param {String} operation The update operation being performed.  Value may be one of:
23510          * <pre><code>
23511  Roo.data.Record.EDIT
23512  Roo.data.Record.REJECT
23513  Roo.data.Record.COMMIT
23514          * </code></pre>
23515          */
23516         update : true,
23517         /**
23518          * @event clear
23519          * Fires when the data cache has been cleared.
23520          * @param {Store} this
23521          */
23522         clear : true,
23523         /**
23524          * @event beforeload
23525          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23526          * the load action will be canceled.
23527          * @param {Store} this
23528          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23529          */
23530         beforeload : true,
23531         /**
23532          * @event beforeloadadd
23533          * Fires after a new set of Records has been loaded.
23534          * @param {Store} this
23535          * @param {Roo.data.Record[]} records The Records that were loaded
23536          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23537          */
23538         beforeloadadd : true,
23539         /**
23540          * @event load
23541          * Fires after a new set of Records has been loaded, before they are added to the store.
23542          * @param {Store} this
23543          * @param {Roo.data.Record[]} records The Records that were loaded
23544          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23545          * @params {Object} return from reader
23546          */
23547         load : true,
23548         /**
23549          * @event loadexception
23550          * Fires if an exception occurs in the Proxy during loading.
23551          * Called with the signature of the Proxy's "loadexception" event.
23552          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23553          * 
23554          * @param {Proxy} 
23555          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23556          * @param {Object} load options 
23557          * @param {Object} jsonData from your request (normally this contains the Exception)
23558          */
23559         loadexception : true
23560     });
23561     
23562     if(this.proxy){
23563         this.proxy = Roo.factory(this.proxy, Roo.data);
23564         this.proxy.xmodule = this.xmodule || false;
23565         this.relayEvents(this.proxy,  ["loadexception"]);
23566     }
23567     this.sortToggle = {};
23568     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23569
23570     Roo.data.Store.superclass.constructor.call(this);
23571
23572     if(this.inlineData){
23573         this.loadData(this.inlineData);
23574         delete this.inlineData;
23575     }
23576 };
23577
23578 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23579      /**
23580     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23581     * without a remote query - used by combo/forms at present.
23582     */
23583     
23584     /**
23585     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23586     */
23587     /**
23588     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23589     */
23590     /**
23591     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23592     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23593     */
23594     /**
23595     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23596     * on any HTTP request
23597     */
23598     /**
23599     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23600     */
23601     /**
23602     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23603     */
23604     multiSort: false,
23605     /**
23606     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23607     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23608     */
23609     remoteSort : false,
23610
23611     /**
23612     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23613      * loaded or when a record is removed. (defaults to false).
23614     */
23615     pruneModifiedRecords : false,
23616
23617     // private
23618     lastOptions : null,
23619
23620     /**
23621      * Add Records to the Store and fires the add event.
23622      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23623      */
23624     add : function(records){
23625         records = [].concat(records);
23626         for(var i = 0, len = records.length; i < len; i++){
23627             records[i].join(this);
23628         }
23629         var index = this.data.length;
23630         this.data.addAll(records);
23631         this.fireEvent("add", this, records, index);
23632     },
23633
23634     /**
23635      * Remove a Record from the Store and fires the remove event.
23636      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23637      */
23638     remove : function(record){
23639         var index = this.data.indexOf(record);
23640         this.data.removeAt(index);
23641  
23642         if(this.pruneModifiedRecords){
23643             this.modified.remove(record);
23644         }
23645         this.fireEvent("remove", this, record, index);
23646     },
23647
23648     /**
23649      * Remove all Records from the Store and fires the clear event.
23650      */
23651     removeAll : function(){
23652         this.data.clear();
23653         if(this.pruneModifiedRecords){
23654             this.modified = [];
23655         }
23656         this.fireEvent("clear", this);
23657     },
23658
23659     /**
23660      * Inserts Records to the Store at the given index and fires the add event.
23661      * @param {Number} index The start index at which to insert the passed Records.
23662      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23663      */
23664     insert : function(index, records){
23665         records = [].concat(records);
23666         for(var i = 0, len = records.length; i < len; i++){
23667             this.data.insert(index, records[i]);
23668             records[i].join(this);
23669         }
23670         this.fireEvent("add", this, records, index);
23671     },
23672
23673     /**
23674      * Get the index within the cache of the passed Record.
23675      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23676      * @return {Number} The index of the passed Record. Returns -1 if not found.
23677      */
23678     indexOf : function(record){
23679         return this.data.indexOf(record);
23680     },
23681
23682     /**
23683      * Get the index within the cache of the Record with the passed id.
23684      * @param {String} id The id of the Record to find.
23685      * @return {Number} The index of the Record. Returns -1 if not found.
23686      */
23687     indexOfId : function(id){
23688         return this.data.indexOfKey(id);
23689     },
23690
23691     /**
23692      * Get the Record with the specified id.
23693      * @param {String} id The id of the Record to find.
23694      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23695      */
23696     getById : function(id){
23697         return this.data.key(id);
23698     },
23699
23700     /**
23701      * Get the Record at the specified index.
23702      * @param {Number} index The index of the Record to find.
23703      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23704      */
23705     getAt : function(index){
23706         return this.data.itemAt(index);
23707     },
23708
23709     /**
23710      * Returns a range of Records between specified indices.
23711      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23712      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23713      * @return {Roo.data.Record[]} An array of Records
23714      */
23715     getRange : function(start, end){
23716         return this.data.getRange(start, end);
23717     },
23718
23719     // private
23720     storeOptions : function(o){
23721         o = Roo.apply({}, o);
23722         delete o.callback;
23723         delete o.scope;
23724         this.lastOptions = o;
23725     },
23726
23727     /**
23728      * Loads the Record cache from the configured Proxy using the configured Reader.
23729      * <p>
23730      * If using remote paging, then the first load call must specify the <em>start</em>
23731      * and <em>limit</em> properties in the options.params property to establish the initial
23732      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23733      * <p>
23734      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23735      * and this call will return before the new data has been loaded. Perform any post-processing
23736      * in a callback function, or in a "load" event handler.</strong>
23737      * <p>
23738      * @param {Object} options An object containing properties which control loading options:<ul>
23739      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23740      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23741      * passed the following arguments:<ul>
23742      * <li>r : Roo.data.Record[]</li>
23743      * <li>options: Options object from the load call</li>
23744      * <li>success: Boolean success indicator</li></ul></li>
23745      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23746      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23747      * </ul>
23748      */
23749     load : function(options){
23750         options = options || {};
23751         if(this.fireEvent("beforeload", this, options) !== false){
23752             this.storeOptions(options);
23753             var p = Roo.apply(options.params || {}, this.baseParams);
23754             // if meta was not loaded from remote source.. try requesting it.
23755             if (!this.reader.metaFromRemote) {
23756                 p._requestMeta = 1;
23757             }
23758             if(this.sortInfo && this.remoteSort){
23759                 var pn = this.paramNames;
23760                 p[pn["sort"]] = this.sortInfo.field;
23761                 p[pn["dir"]] = this.sortInfo.direction;
23762             }
23763             if (this.multiSort) {
23764                 var pn = this.paramNames;
23765                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23766             }
23767             
23768             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23769         }
23770     },
23771
23772     /**
23773      * Reloads the Record cache from the configured Proxy using the configured Reader and
23774      * the options from the last load operation performed.
23775      * @param {Object} options (optional) An object containing properties which may override the options
23776      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23777      * the most recently used options are reused).
23778      */
23779     reload : function(options){
23780         this.load(Roo.applyIf(options||{}, this.lastOptions));
23781     },
23782
23783     // private
23784     // Called as a callback by the Reader during a load operation.
23785     loadRecords : function(o, options, success){
23786         if(!o || success === false){
23787             if(success !== false){
23788                 this.fireEvent("load", this, [], options, o);
23789             }
23790             if(options.callback){
23791                 options.callback.call(options.scope || this, [], options, false);
23792             }
23793             return;
23794         }
23795         // if data returned failure - throw an exception.
23796         if (o.success === false) {
23797             // show a message if no listener is registered.
23798             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23799                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23800             }
23801             // loadmask wil be hooked into this..
23802             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23803             return;
23804         }
23805         var r = o.records, t = o.totalRecords || r.length;
23806         
23807         this.fireEvent("beforeloadadd", this, r, options, o);
23808         
23809         if(!options || options.add !== true){
23810             if(this.pruneModifiedRecords){
23811                 this.modified = [];
23812             }
23813             for(var i = 0, len = r.length; i < len; i++){
23814                 r[i].join(this);
23815             }
23816             if(this.snapshot){
23817                 this.data = this.snapshot;
23818                 delete this.snapshot;
23819             }
23820             this.data.clear();
23821             this.data.addAll(r);
23822             this.totalLength = t;
23823             this.applySort();
23824             this.fireEvent("datachanged", this);
23825         }else{
23826             this.totalLength = Math.max(t, this.data.length+r.length);
23827             this.add(r);
23828         }
23829         
23830         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23831                 
23832             var e = new Roo.data.Record({});
23833
23834             e.set(this.parent.displayField, this.parent.emptyTitle);
23835             e.set(this.parent.valueField, '');
23836
23837             this.insert(0, e);
23838         }
23839             
23840         this.fireEvent("load", this, r, options, o);
23841         if(options.callback){
23842             options.callback.call(options.scope || this, r, options, true);
23843         }
23844     },
23845
23846
23847     /**
23848      * Loads data from a passed data block. A Reader which understands the format of the data
23849      * must have been configured in the constructor.
23850      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23851      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23852      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23853      */
23854     loadData : function(o, append){
23855         var r = this.reader.readRecords(o);
23856         this.loadRecords(r, {add: append}, true);
23857     },
23858     
23859      /**
23860      * using 'cn' the nested child reader read the child array into it's child stores.
23861      * @param {Object} rec The record with a 'children array
23862      */
23863     loadDataFromChildren : function(rec)
23864     {
23865         this.loadData(this.reader.toLoadData(rec));
23866     },
23867     
23868
23869     /**
23870      * Gets the number of cached records.
23871      * <p>
23872      * <em>If using paging, this may not be the total size of the dataset. If the data object
23873      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23874      * the data set size</em>
23875      */
23876     getCount : function(){
23877         return this.data.length || 0;
23878     },
23879
23880     /**
23881      * Gets the total number of records in the dataset as returned by the server.
23882      * <p>
23883      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23884      * the dataset size</em>
23885      */
23886     getTotalCount : function(){
23887         return this.totalLength || 0;
23888     },
23889
23890     /**
23891      * Returns the sort state of the Store as an object with two properties:
23892      * <pre><code>
23893  field {String} The name of the field by which the Records are sorted
23894  direction {String} The sort order, "ASC" or "DESC"
23895      * </code></pre>
23896      */
23897     getSortState : function(){
23898         return this.sortInfo;
23899     },
23900
23901     // private
23902     applySort : function(){
23903         if(this.sortInfo && !this.remoteSort){
23904             var s = this.sortInfo, f = s.field;
23905             var st = this.fields.get(f).sortType;
23906             var fn = function(r1, r2){
23907                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23908                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23909             };
23910             this.data.sort(s.direction, fn);
23911             if(this.snapshot && this.snapshot != this.data){
23912                 this.snapshot.sort(s.direction, fn);
23913             }
23914         }
23915     },
23916
23917     /**
23918      * Sets the default sort column and order to be used by the next load operation.
23919      * @param {String} fieldName The name of the field to sort by.
23920      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23921      */
23922     setDefaultSort : function(field, dir){
23923         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23924     },
23925
23926     /**
23927      * Sort the Records.
23928      * If remote sorting is used, the sort is performed on the server, and the cache is
23929      * reloaded. If local sorting is used, the cache is sorted internally.
23930      * @param {String} fieldName The name of the field to sort by.
23931      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23932      */
23933     sort : function(fieldName, dir){
23934         var f = this.fields.get(fieldName);
23935         if(!dir){
23936             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23937             
23938             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23939                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23940             }else{
23941                 dir = f.sortDir;
23942             }
23943         }
23944         this.sortToggle[f.name] = dir;
23945         this.sortInfo = {field: f.name, direction: dir};
23946         if(!this.remoteSort){
23947             this.applySort();
23948             this.fireEvent("datachanged", this);
23949         }else{
23950             this.load(this.lastOptions);
23951         }
23952     },
23953
23954     /**
23955      * Calls the specified function for each of the Records in the cache.
23956      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23957      * Returning <em>false</em> aborts and exits the iteration.
23958      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23959      */
23960     each : function(fn, scope){
23961         this.data.each(fn, scope);
23962     },
23963
23964     /**
23965      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23966      * (e.g., during paging).
23967      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23968      */
23969     getModifiedRecords : function(){
23970         return this.modified;
23971     },
23972
23973     // private
23974     createFilterFn : function(property, value, anyMatch){
23975         if(!value.exec){ // not a regex
23976             value = String(value);
23977             if(value.length == 0){
23978                 return false;
23979             }
23980             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23981         }
23982         return function(r){
23983             return value.test(r.data[property]);
23984         };
23985     },
23986
23987     /**
23988      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23989      * @param {String} property A field on your records
23990      * @param {Number} start The record index to start at (defaults to 0)
23991      * @param {Number} end The last record index to include (defaults to length - 1)
23992      * @return {Number} The sum
23993      */
23994     sum : function(property, start, end){
23995         var rs = this.data.items, v = 0;
23996         start = start || 0;
23997         end = (end || end === 0) ? end : rs.length-1;
23998
23999         for(var i = start; i <= end; i++){
24000             v += (rs[i].data[property] || 0);
24001         }
24002         return v;
24003     },
24004
24005     /**
24006      * Filter the records by a specified property.
24007      * @param {String} field A field on your records
24008      * @param {String/RegExp} value Either a string that the field
24009      * should start with or a RegExp to test against the field
24010      * @param {Boolean} anyMatch True to match any part not just the beginning
24011      */
24012     filter : function(property, value, anyMatch){
24013         var fn = this.createFilterFn(property, value, anyMatch);
24014         return fn ? this.filterBy(fn) : this.clearFilter();
24015     },
24016
24017     /**
24018      * Filter by a function. The specified function will be called with each
24019      * record in this data source. If the function returns true the record is included,
24020      * otherwise it is filtered.
24021      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24022      * @param {Object} scope (optional) The scope of the function (defaults to this)
24023      */
24024     filterBy : function(fn, scope){
24025         this.snapshot = this.snapshot || this.data;
24026         this.data = this.queryBy(fn, scope||this);
24027         this.fireEvent("datachanged", this);
24028     },
24029
24030     /**
24031      * Query the records by a specified property.
24032      * @param {String} field A field on your records
24033      * @param {String/RegExp} value Either a string that the field
24034      * should start with or a RegExp to test against the field
24035      * @param {Boolean} anyMatch True to match any part not just the beginning
24036      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24037      */
24038     query : function(property, value, anyMatch){
24039         var fn = this.createFilterFn(property, value, anyMatch);
24040         return fn ? this.queryBy(fn) : this.data.clone();
24041     },
24042
24043     /**
24044      * Query by a function. The specified function will be called with each
24045      * record in this data source. If the function returns true the record is included
24046      * in the results.
24047      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24048      * @param {Object} scope (optional) The scope of the function (defaults to this)
24049       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24050      **/
24051     queryBy : function(fn, scope){
24052         var data = this.snapshot || this.data;
24053         return data.filterBy(fn, scope||this);
24054     },
24055
24056     /**
24057      * Collects unique values for a particular dataIndex from this store.
24058      * @param {String} dataIndex The property to collect
24059      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
24060      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
24061      * @return {Array} An array of the unique values
24062      **/
24063     collect : function(dataIndex, allowNull, bypassFilter){
24064         var d = (bypassFilter === true && this.snapshot) ?
24065                 this.snapshot.items : this.data.items;
24066         var v, sv, r = [], l = {};
24067         for(var i = 0, len = d.length; i < len; i++){
24068             v = d[i].data[dataIndex];
24069             sv = String(v);
24070             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24071                 l[sv] = true;
24072                 r[r.length] = v;
24073             }
24074         }
24075         return r;
24076     },
24077
24078     /**
24079      * Revert to a view of the Record cache with no filtering applied.
24080      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24081      */
24082     clearFilter : function(suppressEvent){
24083         if(this.snapshot && this.snapshot != this.data){
24084             this.data = this.snapshot;
24085             delete this.snapshot;
24086             if(suppressEvent !== true){
24087                 this.fireEvent("datachanged", this);
24088             }
24089         }
24090     },
24091
24092     // private
24093     afterEdit : function(record){
24094         if(this.modified.indexOf(record) == -1){
24095             this.modified.push(record);
24096         }
24097         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24098     },
24099     
24100     // private
24101     afterReject : function(record){
24102         this.modified.remove(record);
24103         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24104     },
24105
24106     // private
24107     afterCommit : function(record){
24108         this.modified.remove(record);
24109         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24110     },
24111
24112     /**
24113      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24114      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24115      */
24116     commitChanges : function(){
24117         var m = this.modified.slice(0);
24118         this.modified = [];
24119         for(var i = 0, len = m.length; i < len; i++){
24120             m[i].commit();
24121         }
24122     },
24123
24124     /**
24125      * Cancel outstanding changes on all changed records.
24126      */
24127     rejectChanges : function(){
24128         var m = this.modified.slice(0);
24129         this.modified = [];
24130         for(var i = 0, len = m.length; i < len; i++){
24131             m[i].reject();
24132         }
24133     },
24134
24135     onMetaChange : function(meta, rtype, o){
24136         this.recordType = rtype;
24137         this.fields = rtype.prototype.fields;
24138         delete this.snapshot;
24139         this.sortInfo = meta.sortInfo || this.sortInfo;
24140         this.modified = [];
24141         this.fireEvent('metachange', this, this.reader.meta);
24142     },
24143     
24144     moveIndex : function(data, type)
24145     {
24146         var index = this.indexOf(data);
24147         
24148         var newIndex = index + type;
24149         
24150         this.remove(data);
24151         
24152         this.insert(newIndex, data);
24153         
24154     }
24155 });/*
24156  * Based on:
24157  * Ext JS Library 1.1.1
24158  * Copyright(c) 2006-2007, Ext JS, LLC.
24159  *
24160  * Originally Released Under LGPL - original licence link has changed is not relivant.
24161  *
24162  * Fork - LGPL
24163  * <script type="text/javascript">
24164  */
24165
24166 /**
24167  * @class Roo.data.SimpleStore
24168  * @extends Roo.data.Store
24169  * Small helper class to make creating Stores from Array data easier.
24170  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24171  * @cfg {Array} fields An array of field definition objects, or field name strings.
24172  * @cfg {Object} an existing reader (eg. copied from another store)
24173  * @cfg {Array} data The multi-dimensional array of data
24174  * @constructor
24175  * @param {Object} config
24176  */
24177 Roo.data.SimpleStore = function(config)
24178 {
24179     Roo.data.SimpleStore.superclass.constructor.call(this, {
24180         isLocal : true,
24181         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24182                 id: config.id
24183             },
24184             Roo.data.Record.create(config.fields)
24185         ),
24186         proxy : new Roo.data.MemoryProxy(config.data)
24187     });
24188     this.load();
24189 };
24190 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24191  * Based on:
24192  * Ext JS Library 1.1.1
24193  * Copyright(c) 2006-2007, Ext JS, LLC.
24194  *
24195  * Originally Released Under LGPL - original licence link has changed is not relivant.
24196  *
24197  * Fork - LGPL
24198  * <script type="text/javascript">
24199  */
24200
24201 /**
24202 /**
24203  * @extends Roo.data.Store
24204  * @class Roo.data.JsonStore
24205  * Small helper class to make creating Stores for JSON data easier. <br/>
24206 <pre><code>
24207 var store = new Roo.data.JsonStore({
24208     url: 'get-images.php',
24209     root: 'images',
24210     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24211 });
24212 </code></pre>
24213  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24214  * JsonReader and HttpProxy (unless inline data is provided).</b>
24215  * @cfg {Array} fields An array of field definition objects, or field name strings.
24216  * @constructor
24217  * @param {Object} config
24218  */
24219 Roo.data.JsonStore = function(c){
24220     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24221         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24222         reader: new Roo.data.JsonReader(c, c.fields)
24223     }));
24224 };
24225 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24226  * Based on:
24227  * Ext JS Library 1.1.1
24228  * Copyright(c) 2006-2007, Ext JS, LLC.
24229  *
24230  * Originally Released Under LGPL - original licence link has changed is not relivant.
24231  *
24232  * Fork - LGPL
24233  * <script type="text/javascript">
24234  */
24235
24236  
24237 Roo.data.Field = function(config){
24238     if(typeof config == "string"){
24239         config = {name: config};
24240     }
24241     Roo.apply(this, config);
24242     
24243     if(!this.type){
24244         this.type = "auto";
24245     }
24246     
24247     var st = Roo.data.SortTypes;
24248     // named sortTypes are supported, here we look them up
24249     if(typeof this.sortType == "string"){
24250         this.sortType = st[this.sortType];
24251     }
24252     
24253     // set default sortType for strings and dates
24254     if(!this.sortType){
24255         switch(this.type){
24256             case "string":
24257                 this.sortType = st.asUCString;
24258                 break;
24259             case "date":
24260                 this.sortType = st.asDate;
24261                 break;
24262             default:
24263                 this.sortType = st.none;
24264         }
24265     }
24266
24267     // define once
24268     var stripRe = /[\$,%]/g;
24269
24270     // prebuilt conversion function for this field, instead of
24271     // switching every time we're reading a value
24272     if(!this.convert){
24273         var cv, dateFormat = this.dateFormat;
24274         switch(this.type){
24275             case "":
24276             case "auto":
24277             case undefined:
24278                 cv = function(v){ return v; };
24279                 break;
24280             case "string":
24281                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24282                 break;
24283             case "int":
24284                 cv = function(v){
24285                     return v !== undefined && v !== null && v !== '' ?
24286                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24287                     };
24288                 break;
24289             case "float":
24290                 cv = function(v){
24291                     return v !== undefined && v !== null && v !== '' ?
24292                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24293                     };
24294                 break;
24295             case "bool":
24296             case "boolean":
24297                 cv = function(v){ return v === true || v === "true" || v == 1; };
24298                 break;
24299             case "date":
24300                 cv = function(v){
24301                     if(!v){
24302                         return '';
24303                     }
24304                     if(v instanceof Date){
24305                         return v;
24306                     }
24307                     if(dateFormat){
24308                         if(dateFormat == "timestamp"){
24309                             return new Date(v*1000);
24310                         }
24311                         return Date.parseDate(v, dateFormat);
24312                     }
24313                     var parsed = Date.parse(v);
24314                     return parsed ? new Date(parsed) : null;
24315                 };
24316              break;
24317             
24318         }
24319         this.convert = cv;
24320     }
24321 };
24322
24323 Roo.data.Field.prototype = {
24324     dateFormat: null,
24325     defaultValue: "",
24326     mapping: null,
24327     sortType : null,
24328     sortDir : "ASC"
24329 };/*
24330  * Based on:
24331  * Ext JS Library 1.1.1
24332  * Copyright(c) 2006-2007, Ext JS, LLC.
24333  *
24334  * Originally Released Under LGPL - original licence link has changed is not relivant.
24335  *
24336  * Fork - LGPL
24337  * <script type="text/javascript">
24338  */
24339  
24340 // Base class for reading structured data from a data source.  This class is intended to be
24341 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24342
24343 /**
24344  * @class Roo.data.DataReader
24345  * Base class for reading structured data from a data source.  This class is intended to be
24346  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24347  */
24348
24349 Roo.data.DataReader = function(meta, recordType){
24350     
24351     this.meta = meta;
24352     
24353     this.recordType = recordType instanceof Array ? 
24354         Roo.data.Record.create(recordType) : recordType;
24355 };
24356
24357 Roo.data.DataReader.prototype = {
24358     
24359     
24360     readerType : 'Data',
24361      /**
24362      * Create an empty record
24363      * @param {Object} data (optional) - overlay some values
24364      * @return {Roo.data.Record} record created.
24365      */
24366     newRow :  function(d) {
24367         var da =  {};
24368         this.recordType.prototype.fields.each(function(c) {
24369             switch( c.type) {
24370                 case 'int' : da[c.name] = 0; break;
24371                 case 'date' : da[c.name] = new Date(); break;
24372                 case 'float' : da[c.name] = 0.0; break;
24373                 case 'boolean' : da[c.name] = false; break;
24374                 default : da[c.name] = ""; break;
24375             }
24376             
24377         });
24378         return new this.recordType(Roo.apply(da, d));
24379     }
24380     
24381     
24382 };/*
24383  * Based on:
24384  * Ext JS Library 1.1.1
24385  * Copyright(c) 2006-2007, Ext JS, LLC.
24386  *
24387  * Originally Released Under LGPL - original licence link has changed is not relivant.
24388  *
24389  * Fork - LGPL
24390  * <script type="text/javascript">
24391  */
24392
24393 /**
24394  * @class Roo.data.DataProxy
24395  * @extends Roo.data.Observable
24396  * This class is an abstract base class for implementations which provide retrieval of
24397  * unformatted data objects.<br>
24398  * <p>
24399  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24400  * (of the appropriate type which knows how to parse the data object) to provide a block of
24401  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24402  * <p>
24403  * Custom implementations must implement the load method as described in
24404  * {@link Roo.data.HttpProxy#load}.
24405  */
24406 Roo.data.DataProxy = function(){
24407     this.addEvents({
24408         /**
24409          * @event beforeload
24410          * Fires before a network request is made to retrieve a data object.
24411          * @param {Object} This DataProxy object.
24412          * @param {Object} params The params parameter to the load function.
24413          */
24414         beforeload : true,
24415         /**
24416          * @event load
24417          * Fires before the load method's callback is called.
24418          * @param {Object} This DataProxy object.
24419          * @param {Object} o The data object.
24420          * @param {Object} arg The callback argument object passed to the load function.
24421          */
24422         load : true,
24423         /**
24424          * @event loadexception
24425          * Fires if an Exception occurs during data retrieval.
24426          * @param {Object} This DataProxy object.
24427          * @param {Object} o The data object.
24428          * @param {Object} arg The callback argument object passed to the load function.
24429          * @param {Object} e The Exception.
24430          */
24431         loadexception : true
24432     });
24433     Roo.data.DataProxy.superclass.constructor.call(this);
24434 };
24435
24436 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24437
24438     /**
24439      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24440      */
24441 /*
24442  * Based on:
24443  * Ext JS Library 1.1.1
24444  * Copyright(c) 2006-2007, Ext JS, LLC.
24445  *
24446  * Originally Released Under LGPL - original licence link has changed is not relivant.
24447  *
24448  * Fork - LGPL
24449  * <script type="text/javascript">
24450  */
24451 /**
24452  * @class Roo.data.MemoryProxy
24453  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24454  * to the Reader when its load method is called.
24455  * @constructor
24456  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24457  */
24458 Roo.data.MemoryProxy = function(data){
24459     if (data.data) {
24460         data = data.data;
24461     }
24462     Roo.data.MemoryProxy.superclass.constructor.call(this);
24463     this.data = data;
24464 };
24465
24466 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24467     
24468     /**
24469      * Load data from the requested source (in this case an in-memory
24470      * data object passed to the constructor), read the data object into
24471      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24472      * process that block using the passed callback.
24473      * @param {Object} params This parameter is not used by the MemoryProxy class.
24474      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24475      * object into a block of Roo.data.Records.
24476      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24477      * The function must be passed <ul>
24478      * <li>The Record block object</li>
24479      * <li>The "arg" argument from the load function</li>
24480      * <li>A boolean success indicator</li>
24481      * </ul>
24482      * @param {Object} scope The scope in which to call the callback
24483      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24484      */
24485     load : function(params, reader, callback, scope, arg){
24486         params = params || {};
24487         var result;
24488         try {
24489             result = reader.readRecords(params.data ? params.data :this.data);
24490         }catch(e){
24491             this.fireEvent("loadexception", this, arg, null, e);
24492             callback.call(scope, null, arg, false);
24493             return;
24494         }
24495         callback.call(scope, result, arg, true);
24496     },
24497     
24498     // private
24499     update : function(params, records){
24500         
24501     }
24502 });/*
24503  * Based on:
24504  * Ext JS Library 1.1.1
24505  * Copyright(c) 2006-2007, Ext JS, LLC.
24506  *
24507  * Originally Released Under LGPL - original licence link has changed is not relivant.
24508  *
24509  * Fork - LGPL
24510  * <script type="text/javascript">
24511  */
24512 /**
24513  * @class Roo.data.HttpProxy
24514  * @extends Roo.data.DataProxy
24515  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24516  * configured to reference a certain URL.<br><br>
24517  * <p>
24518  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24519  * from which the running page was served.<br><br>
24520  * <p>
24521  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24522  * <p>
24523  * Be aware that to enable the browser to parse an XML document, the server must set
24524  * the Content-Type header in the HTTP response to "text/xml".
24525  * @constructor
24526  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24527  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24528  * will be used to make the request.
24529  */
24530 Roo.data.HttpProxy = function(conn){
24531     Roo.data.HttpProxy.superclass.constructor.call(this);
24532     // is conn a conn config or a real conn?
24533     this.conn = conn;
24534     this.useAjax = !conn || !conn.events;
24535   
24536 };
24537
24538 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24539     // thse are take from connection...
24540     
24541     /**
24542      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24543      */
24544     /**
24545      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24546      * extra parameters to each request made by this object. (defaults to undefined)
24547      */
24548     /**
24549      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24550      *  to each request made by this object. (defaults to undefined)
24551      */
24552     /**
24553      * @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)
24554      */
24555     /**
24556      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24557      */
24558      /**
24559      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24560      * @type Boolean
24561      */
24562   
24563
24564     /**
24565      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24566      * @type Boolean
24567      */
24568     /**
24569      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24570      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24571      * a finer-grained basis than the DataProxy events.
24572      */
24573     getConnection : function(){
24574         return this.useAjax ? Roo.Ajax : this.conn;
24575     },
24576
24577     /**
24578      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24579      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24580      * process that block using the passed callback.
24581      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24582      * for the request to the remote server.
24583      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24584      * object into a block of Roo.data.Records.
24585      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24586      * The function must be passed <ul>
24587      * <li>The Record block object</li>
24588      * <li>The "arg" argument from the load function</li>
24589      * <li>A boolean success indicator</li>
24590      * </ul>
24591      * @param {Object} scope The scope in which to call the callback
24592      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24593      */
24594     load : function(params, reader, callback, scope, arg){
24595         if(this.fireEvent("beforeload", this, params) !== false){
24596             var  o = {
24597                 params : params || {},
24598                 request: {
24599                     callback : callback,
24600                     scope : scope,
24601                     arg : arg
24602                 },
24603                 reader: reader,
24604                 callback : this.loadResponse,
24605                 scope: this
24606             };
24607             if(this.useAjax){
24608                 Roo.applyIf(o, this.conn);
24609                 if(this.activeRequest){
24610                     Roo.Ajax.abort(this.activeRequest);
24611                 }
24612                 this.activeRequest = Roo.Ajax.request(o);
24613             }else{
24614                 this.conn.request(o);
24615             }
24616         }else{
24617             callback.call(scope||this, null, arg, false);
24618         }
24619     },
24620
24621     // private
24622     loadResponse : function(o, success, response){
24623         delete this.activeRequest;
24624         if(!success){
24625             this.fireEvent("loadexception", this, o, response);
24626             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24627             return;
24628         }
24629         var result;
24630         try {
24631             result = o.reader.read(response);
24632         }catch(e){
24633             this.fireEvent("loadexception", this, o, response, e);
24634             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24635             return;
24636         }
24637         
24638         this.fireEvent("load", this, o, o.request.arg);
24639         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24640     },
24641
24642     // private
24643     update : function(dataSet){
24644
24645     },
24646
24647     // private
24648     updateResponse : function(dataSet){
24649
24650     }
24651 });/*
24652  * Based on:
24653  * Ext JS Library 1.1.1
24654  * Copyright(c) 2006-2007, Ext JS, LLC.
24655  *
24656  * Originally Released Under LGPL - original licence link has changed is not relivant.
24657  *
24658  * Fork - LGPL
24659  * <script type="text/javascript">
24660  */
24661
24662 /**
24663  * @class Roo.data.ScriptTagProxy
24664  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24665  * other than the originating domain of the running page.<br><br>
24666  * <p>
24667  * <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
24668  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24669  * <p>
24670  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24671  * source code that is used as the source inside a &lt;script> tag.<br><br>
24672  * <p>
24673  * In order for the browser to process the returned data, the server must wrap the data object
24674  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24675  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24676  * depending on whether the callback name was passed:
24677  * <p>
24678  * <pre><code>
24679 boolean scriptTag = false;
24680 String cb = request.getParameter("callback");
24681 if (cb != null) {
24682     scriptTag = true;
24683     response.setContentType("text/javascript");
24684 } else {
24685     response.setContentType("application/x-json");
24686 }
24687 Writer out = response.getWriter();
24688 if (scriptTag) {
24689     out.write(cb + "(");
24690 }
24691 out.print(dataBlock.toJsonString());
24692 if (scriptTag) {
24693     out.write(");");
24694 }
24695 </pre></code>
24696  *
24697  * @constructor
24698  * @param {Object} config A configuration object.
24699  */
24700 Roo.data.ScriptTagProxy = function(config){
24701     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24702     Roo.apply(this, config);
24703     this.head = document.getElementsByTagName("head")[0];
24704 };
24705
24706 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24707
24708 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24709     /**
24710      * @cfg {String} url The URL from which to request the data object.
24711      */
24712     /**
24713      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24714      */
24715     timeout : 30000,
24716     /**
24717      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24718      * the server the name of the callback function set up by the load call to process the returned data object.
24719      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24720      * javascript output which calls this named function passing the data object as its only parameter.
24721      */
24722     callbackParam : "callback",
24723     /**
24724      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24725      * name to the request.
24726      */
24727     nocache : true,
24728
24729     /**
24730      * Load data from the configured URL, read the data object into
24731      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24732      * process that block using the passed callback.
24733      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24734      * for the request to the remote server.
24735      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24736      * object into a block of Roo.data.Records.
24737      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24738      * The function must be passed <ul>
24739      * <li>The Record block object</li>
24740      * <li>The "arg" argument from the load function</li>
24741      * <li>A boolean success indicator</li>
24742      * </ul>
24743      * @param {Object} scope The scope in which to call the callback
24744      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24745      */
24746     load : function(params, reader, callback, scope, arg){
24747         if(this.fireEvent("beforeload", this, params) !== false){
24748
24749             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24750
24751             var url = this.url;
24752             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24753             if(this.nocache){
24754                 url += "&_dc=" + (new Date().getTime());
24755             }
24756             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24757             var trans = {
24758                 id : transId,
24759                 cb : "stcCallback"+transId,
24760                 scriptId : "stcScript"+transId,
24761                 params : params,
24762                 arg : arg,
24763                 url : url,
24764                 callback : callback,
24765                 scope : scope,
24766                 reader : reader
24767             };
24768             var conn = this;
24769
24770             window[trans.cb] = function(o){
24771                 conn.handleResponse(o, trans);
24772             };
24773
24774             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24775
24776             if(this.autoAbort !== false){
24777                 this.abort();
24778             }
24779
24780             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24781
24782             var script = document.createElement("script");
24783             script.setAttribute("src", url);
24784             script.setAttribute("type", "text/javascript");
24785             script.setAttribute("id", trans.scriptId);
24786             this.head.appendChild(script);
24787
24788             this.trans = trans;
24789         }else{
24790             callback.call(scope||this, null, arg, false);
24791         }
24792     },
24793
24794     // private
24795     isLoading : function(){
24796         return this.trans ? true : false;
24797     },
24798
24799     /**
24800      * Abort the current server request.
24801      */
24802     abort : function(){
24803         if(this.isLoading()){
24804             this.destroyTrans(this.trans);
24805         }
24806     },
24807
24808     // private
24809     destroyTrans : function(trans, isLoaded){
24810         this.head.removeChild(document.getElementById(trans.scriptId));
24811         clearTimeout(trans.timeoutId);
24812         if(isLoaded){
24813             window[trans.cb] = undefined;
24814             try{
24815                 delete window[trans.cb];
24816             }catch(e){}
24817         }else{
24818             // if hasn't been loaded, wait for load to remove it to prevent script error
24819             window[trans.cb] = function(){
24820                 window[trans.cb] = undefined;
24821                 try{
24822                     delete window[trans.cb];
24823                 }catch(e){}
24824             };
24825         }
24826     },
24827
24828     // private
24829     handleResponse : function(o, trans){
24830         this.trans = false;
24831         this.destroyTrans(trans, true);
24832         var result;
24833         try {
24834             result = trans.reader.readRecords(o);
24835         }catch(e){
24836             this.fireEvent("loadexception", this, o, trans.arg, e);
24837             trans.callback.call(trans.scope||window, null, trans.arg, false);
24838             return;
24839         }
24840         this.fireEvent("load", this, o, trans.arg);
24841         trans.callback.call(trans.scope||window, result, trans.arg, true);
24842     },
24843
24844     // private
24845     handleFailure : function(trans){
24846         this.trans = false;
24847         this.destroyTrans(trans, false);
24848         this.fireEvent("loadexception", this, null, trans.arg);
24849         trans.callback.call(trans.scope||window, null, trans.arg, false);
24850     }
24851 });/*
24852  * Based on:
24853  * Ext JS Library 1.1.1
24854  * Copyright(c) 2006-2007, Ext JS, LLC.
24855  *
24856  * Originally Released Under LGPL - original licence link has changed is not relivant.
24857  *
24858  * Fork - LGPL
24859  * <script type="text/javascript">
24860  */
24861
24862 /**
24863  * @class Roo.data.JsonReader
24864  * @extends Roo.data.DataReader
24865  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24866  * based on mappings in a provided Roo.data.Record constructor.
24867  * 
24868  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24869  * in the reply previously. 
24870  * 
24871  * <p>
24872  * Example code:
24873  * <pre><code>
24874 var RecordDef = Roo.data.Record.create([
24875     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24876     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24877 ]);
24878 var myReader = new Roo.data.JsonReader({
24879     totalProperty: "results",    // The property which contains the total dataset size (optional)
24880     root: "rows",                // The property which contains an Array of row objects
24881     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24882 }, RecordDef);
24883 </code></pre>
24884  * <p>
24885  * This would consume a JSON file like this:
24886  * <pre><code>
24887 { 'results': 2, 'rows': [
24888     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24889     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24890 }
24891 </code></pre>
24892  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24893  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24894  * paged from the remote server.
24895  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24896  * @cfg {String} root name of the property which contains the Array of row objects.
24897  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24898  * @cfg {Array} fields Array of field definition objects
24899  * @constructor
24900  * Create a new JsonReader
24901  * @param {Object} meta Metadata configuration options
24902  * @param {Object} recordType Either an Array of field definition objects,
24903  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24904  */
24905 Roo.data.JsonReader = function(meta, recordType){
24906     
24907     meta = meta || {};
24908     // set some defaults:
24909     Roo.applyIf(meta, {
24910         totalProperty: 'total',
24911         successProperty : 'success',
24912         root : 'data',
24913         id : 'id'
24914     });
24915     
24916     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24917 };
24918 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24919     
24920     readerType : 'Json',
24921     
24922     /**
24923      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24924      * Used by Store query builder to append _requestMeta to params.
24925      * 
24926      */
24927     metaFromRemote : false,
24928     /**
24929      * This method is only used by a DataProxy which has retrieved data from a remote server.
24930      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24931      * @return {Object} data A data block which is used by an Roo.data.Store object as
24932      * a cache of Roo.data.Records.
24933      */
24934     read : function(response){
24935         var json = response.responseText;
24936        
24937         var o = /* eval:var:o */ eval("("+json+")");
24938         if(!o) {
24939             throw {message: "JsonReader.read: Json object not found"};
24940         }
24941         
24942         if(o.metaData){
24943             
24944             delete this.ef;
24945             this.metaFromRemote = true;
24946             this.meta = o.metaData;
24947             this.recordType = Roo.data.Record.create(o.metaData.fields);
24948             this.onMetaChange(this.meta, this.recordType, o);
24949         }
24950         return this.readRecords(o);
24951     },
24952
24953     // private function a store will implement
24954     onMetaChange : function(meta, recordType, o){
24955
24956     },
24957
24958     /**
24959          * @ignore
24960          */
24961     simpleAccess: function(obj, subsc) {
24962         return obj[subsc];
24963     },
24964
24965         /**
24966          * @ignore
24967          */
24968     getJsonAccessor: function(){
24969         var re = /[\[\.]/;
24970         return function(expr) {
24971             try {
24972                 return(re.test(expr))
24973                     ? new Function("obj", "return obj." + expr)
24974                     : function(obj){
24975                         return obj[expr];
24976                     };
24977             } catch(e){}
24978             return Roo.emptyFn;
24979         };
24980     }(),
24981
24982     /**
24983      * Create a data block containing Roo.data.Records from an XML document.
24984      * @param {Object} o An object which contains an Array of row objects in the property specified
24985      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24986      * which contains the total size of the dataset.
24987      * @return {Object} data A data block which is used by an Roo.data.Store object as
24988      * a cache of Roo.data.Records.
24989      */
24990     readRecords : function(o){
24991         /**
24992          * After any data loads, the raw JSON data is available for further custom processing.
24993          * @type Object
24994          */
24995         this.o = o;
24996         var s = this.meta, Record = this.recordType,
24997             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24998
24999 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
25000         if (!this.ef) {
25001             if(s.totalProperty) {
25002                     this.getTotal = this.getJsonAccessor(s.totalProperty);
25003                 }
25004                 if(s.successProperty) {
25005                     this.getSuccess = this.getJsonAccessor(s.successProperty);
25006                 }
25007                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
25008                 if (s.id) {
25009                         var g = this.getJsonAccessor(s.id);
25010                         this.getId = function(rec) {
25011                                 var r = g(rec);  
25012                                 return (r === undefined || r === "") ? null : r;
25013                         };
25014                 } else {
25015                         this.getId = function(){return null;};
25016                 }
25017             this.ef = [];
25018             for(var jj = 0; jj < fl; jj++){
25019                 f = fi[jj];
25020                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
25021                 this.ef[jj] = this.getJsonAccessor(map);
25022             }
25023         }
25024
25025         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
25026         if(s.totalProperty){
25027             var vt = parseInt(this.getTotal(o), 10);
25028             if(!isNaN(vt)){
25029                 totalRecords = vt;
25030             }
25031         }
25032         if(s.successProperty){
25033             var vs = this.getSuccess(o);
25034             if(vs === false || vs === 'false'){
25035                 success = false;
25036             }
25037         }
25038         var records = [];
25039         for(var i = 0; i < c; i++){
25040                 var n = root[i];
25041             var values = {};
25042             var id = this.getId(n);
25043             for(var j = 0; j < fl; j++){
25044                 f = fi[j];
25045             var v = this.ef[j](n);
25046             if (!f.convert) {
25047                 Roo.log('missing convert for ' + f.name);
25048                 Roo.log(f);
25049                 continue;
25050             }
25051             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
25052             }
25053             var record = new Record(values, id);
25054             record.json = n;
25055             records[i] = record;
25056         }
25057         return {
25058             raw : o,
25059             success : success,
25060             records : records,
25061             totalRecords : totalRecords
25062         };
25063     },
25064     // used when loading children.. @see loadDataFromChildren
25065     toLoadData: function(rec)
25066     {
25067         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25068         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25069         return { data : data, total : data.length };
25070         
25071     }
25072 });/*
25073  * Based on:
25074  * Ext JS Library 1.1.1
25075  * Copyright(c) 2006-2007, Ext JS, LLC.
25076  *
25077  * Originally Released Under LGPL - original licence link has changed is not relivant.
25078  *
25079  * Fork - LGPL
25080  * <script type="text/javascript">
25081  */
25082
25083 /**
25084  * @class Roo.data.XmlReader
25085  * @extends Roo.data.DataReader
25086  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25087  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25088  * <p>
25089  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25090  * header in the HTTP response must be set to "text/xml".</em>
25091  * <p>
25092  * Example code:
25093  * <pre><code>
25094 var RecordDef = Roo.data.Record.create([
25095    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25096    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25097 ]);
25098 var myReader = new Roo.data.XmlReader({
25099    totalRecords: "results", // The element which contains the total dataset size (optional)
25100    record: "row",           // The repeated element which contains row information
25101    id: "id"                 // The element within the row that provides an ID for the record (optional)
25102 }, RecordDef);
25103 </code></pre>
25104  * <p>
25105  * This would consume an XML file like this:
25106  * <pre><code>
25107 &lt;?xml?>
25108 &lt;dataset>
25109  &lt;results>2&lt;/results>
25110  &lt;row>
25111    &lt;id>1&lt;/id>
25112    &lt;name>Bill&lt;/name>
25113    &lt;occupation>Gardener&lt;/occupation>
25114  &lt;/row>
25115  &lt;row>
25116    &lt;id>2&lt;/id>
25117    &lt;name>Ben&lt;/name>
25118    &lt;occupation>Horticulturalist&lt;/occupation>
25119  &lt;/row>
25120 &lt;/dataset>
25121 </code></pre>
25122  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25123  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25124  * paged from the remote server.
25125  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25126  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25127  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25128  * a record identifier value.
25129  * @constructor
25130  * Create a new XmlReader
25131  * @param {Object} meta Metadata configuration options
25132  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25133  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25134  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25135  */
25136 Roo.data.XmlReader = function(meta, recordType){
25137     meta = meta || {};
25138     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25139 };
25140 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25141     
25142     readerType : 'Xml',
25143     
25144     /**
25145      * This method is only used by a DataProxy which has retrieved data from a remote server.
25146          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25147          * to contain a method called 'responseXML' that returns an XML document object.
25148      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25149      * a cache of Roo.data.Records.
25150      */
25151     read : function(response){
25152         var doc = response.responseXML;
25153         if(!doc) {
25154             throw {message: "XmlReader.read: XML Document not available"};
25155         }
25156         return this.readRecords(doc);
25157     },
25158
25159     /**
25160      * Create a data block containing Roo.data.Records from an XML document.
25161          * @param {Object} doc A parsed XML document.
25162      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25163      * a cache of Roo.data.Records.
25164      */
25165     readRecords : function(doc){
25166         /**
25167          * After any data loads/reads, the raw XML Document is available for further custom processing.
25168          * @type XMLDocument
25169          */
25170         this.xmlData = doc;
25171         var root = doc.documentElement || doc;
25172         var q = Roo.DomQuery;
25173         var recordType = this.recordType, fields = recordType.prototype.fields;
25174         var sid = this.meta.id;
25175         var totalRecords = 0, success = true;
25176         if(this.meta.totalRecords){
25177             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25178         }
25179         
25180         if(this.meta.success){
25181             var sv = q.selectValue(this.meta.success, root, true);
25182             success = sv !== false && sv !== 'false';
25183         }
25184         var records = [];
25185         var ns = q.select(this.meta.record, root);
25186         for(var i = 0, len = ns.length; i < len; i++) {
25187                 var n = ns[i];
25188                 var values = {};
25189                 var id = sid ? q.selectValue(sid, n) : undefined;
25190                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25191                     var f = fields.items[j];
25192                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25193                     v = f.convert(v);
25194                     values[f.name] = v;
25195                 }
25196                 var record = new recordType(values, id);
25197                 record.node = n;
25198                 records[records.length] = record;
25199             }
25200
25201             return {
25202                 success : success,
25203                 records : records,
25204                 totalRecords : totalRecords || records.length
25205             };
25206     }
25207 });/*
25208  * Based on:
25209  * Ext JS Library 1.1.1
25210  * Copyright(c) 2006-2007, Ext JS, LLC.
25211  *
25212  * Originally Released Under LGPL - original licence link has changed is not relivant.
25213  *
25214  * Fork - LGPL
25215  * <script type="text/javascript">
25216  */
25217
25218 /**
25219  * @class Roo.data.ArrayReader
25220  * @extends Roo.data.DataReader
25221  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25222  * Each element of that Array represents a row of data fields. The
25223  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25224  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25225  * <p>
25226  * Example code:.
25227  * <pre><code>
25228 var RecordDef = Roo.data.Record.create([
25229     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25230     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25231 ]);
25232 var myReader = new Roo.data.ArrayReader({
25233     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25234 }, RecordDef);
25235 </code></pre>
25236  * <p>
25237  * This would consume an Array like this:
25238  * <pre><code>
25239 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25240   </code></pre>
25241  
25242  * @constructor
25243  * Create a new JsonReader
25244  * @param {Object} meta Metadata configuration options.
25245  * @param {Object|Array} recordType Either an Array of field definition objects
25246  * 
25247  * @cfg {Array} fields Array of field definition objects
25248  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25249  * as specified to {@link Roo.data.Record#create},
25250  * or an {@link Roo.data.Record} object
25251  *
25252  * 
25253  * created using {@link Roo.data.Record#create}.
25254  */
25255 Roo.data.ArrayReader = function(meta, recordType)
25256 {    
25257     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25258 };
25259
25260 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25261     
25262       /**
25263      * Create a data block containing Roo.data.Records from an XML document.
25264      * @param {Object} o An Array of row objects which represents the dataset.
25265      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25266      * a cache of Roo.data.Records.
25267      */
25268     readRecords : function(o)
25269     {
25270         var sid = this.meta ? this.meta.id : null;
25271         var recordType = this.recordType, fields = recordType.prototype.fields;
25272         var records = [];
25273         var root = o;
25274         for(var i = 0; i < root.length; i++){
25275             var n = root[i];
25276             var values = {};
25277             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25278             for(var j = 0, jlen = fields.length; j < jlen; j++){
25279                 var f = fields.items[j];
25280                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25281                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25282                 v = f.convert(v);
25283                 values[f.name] = v;
25284             }
25285             var record = new recordType(values, id);
25286             record.json = n;
25287             records[records.length] = record;
25288         }
25289         return {
25290             records : records,
25291             totalRecords : records.length
25292         };
25293     },
25294     // used when loading children.. @see loadDataFromChildren
25295     toLoadData: function(rec)
25296     {
25297         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25298         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25299         
25300     }
25301     
25302     
25303 });/*
25304  * Based on:
25305  * Ext JS Library 1.1.1
25306  * Copyright(c) 2006-2007, Ext JS, LLC.
25307  *
25308  * Originally Released Under LGPL - original licence link has changed is not relivant.
25309  *
25310  * Fork - LGPL
25311  * <script type="text/javascript">
25312  */
25313
25314
25315 /**
25316  * @class Roo.data.Tree
25317  * @extends Roo.util.Observable
25318  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25319  * in the tree have most standard DOM functionality.
25320  * @constructor
25321  * @param {Node} root (optional) The root node
25322  */
25323 Roo.data.Tree = function(root){
25324    this.nodeHash = {};
25325    /**
25326     * The root node for this tree
25327     * @type Node
25328     */
25329    this.root = null;
25330    if(root){
25331        this.setRootNode(root);
25332    }
25333    this.addEvents({
25334        /**
25335         * @event append
25336         * Fires when a new child node is appended to a node in this tree.
25337         * @param {Tree} tree The owner tree
25338         * @param {Node} parent The parent node
25339         * @param {Node} node The newly appended node
25340         * @param {Number} index The index of the newly appended node
25341         */
25342        "append" : true,
25343        /**
25344         * @event remove
25345         * Fires when a child node is removed from a node in this tree.
25346         * @param {Tree} tree The owner tree
25347         * @param {Node} parent The parent node
25348         * @param {Node} node The child node removed
25349         */
25350        "remove" : true,
25351        /**
25352         * @event move
25353         * Fires when a node is moved to a new location in the tree
25354         * @param {Tree} tree The owner tree
25355         * @param {Node} node The node moved
25356         * @param {Node} oldParent The old parent of this node
25357         * @param {Node} newParent The new parent of this node
25358         * @param {Number} index The index it was moved to
25359         */
25360        "move" : true,
25361        /**
25362         * @event insert
25363         * Fires when a new child node is inserted in a node in this tree.
25364         * @param {Tree} tree The owner tree
25365         * @param {Node} parent The parent node
25366         * @param {Node} node The child node inserted
25367         * @param {Node} refNode The child node the node was inserted before
25368         */
25369        "insert" : true,
25370        /**
25371         * @event beforeappend
25372         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25373         * @param {Tree} tree The owner tree
25374         * @param {Node} parent The parent node
25375         * @param {Node} node The child node to be appended
25376         */
25377        "beforeappend" : true,
25378        /**
25379         * @event beforeremove
25380         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25381         * @param {Tree} tree The owner tree
25382         * @param {Node} parent The parent node
25383         * @param {Node} node The child node to be removed
25384         */
25385        "beforeremove" : true,
25386        /**
25387         * @event beforemove
25388         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25389         * @param {Tree} tree The owner tree
25390         * @param {Node} node The node being moved
25391         * @param {Node} oldParent The parent of the node
25392         * @param {Node} newParent The new parent the node is moving to
25393         * @param {Number} index The index it is being moved to
25394         */
25395        "beforemove" : true,
25396        /**
25397         * @event beforeinsert
25398         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25399         * @param {Tree} tree The owner tree
25400         * @param {Node} parent The parent node
25401         * @param {Node} node The child node to be inserted
25402         * @param {Node} refNode The child node the node is being inserted before
25403         */
25404        "beforeinsert" : true
25405    });
25406
25407     Roo.data.Tree.superclass.constructor.call(this);
25408 };
25409
25410 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25411     pathSeparator: "/",
25412
25413     proxyNodeEvent : function(){
25414         return this.fireEvent.apply(this, arguments);
25415     },
25416
25417     /**
25418      * Returns the root node for this tree.
25419      * @return {Node}
25420      */
25421     getRootNode : function(){
25422         return this.root;
25423     },
25424
25425     /**
25426      * Sets the root node for this tree.
25427      * @param {Node} node
25428      * @return {Node}
25429      */
25430     setRootNode : function(node){
25431         this.root = node;
25432         node.ownerTree = this;
25433         node.isRoot = true;
25434         this.registerNode(node);
25435         return node;
25436     },
25437
25438     /**
25439      * Gets a node in this tree by its id.
25440      * @param {String} id
25441      * @return {Node}
25442      */
25443     getNodeById : function(id){
25444         return this.nodeHash[id];
25445     },
25446
25447     registerNode : function(node){
25448         this.nodeHash[node.id] = node;
25449     },
25450
25451     unregisterNode : function(node){
25452         delete this.nodeHash[node.id];
25453     },
25454
25455     toString : function(){
25456         return "[Tree"+(this.id?" "+this.id:"")+"]";
25457     }
25458 });
25459
25460 /**
25461  * @class Roo.data.Node
25462  * @extends Roo.util.Observable
25463  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25464  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25465  * @constructor
25466  * @param {Object} attributes The attributes/config for the node
25467  */
25468 Roo.data.Node = function(attributes){
25469     /**
25470      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25471      * @type {Object}
25472      */
25473     this.attributes = attributes || {};
25474     this.leaf = this.attributes.leaf;
25475     /**
25476      * The node id. @type String
25477      */
25478     this.id = this.attributes.id;
25479     if(!this.id){
25480         this.id = Roo.id(null, "ynode-");
25481         this.attributes.id = this.id;
25482     }
25483      
25484     
25485     /**
25486      * All child nodes of this node. @type Array
25487      */
25488     this.childNodes = [];
25489     if(!this.childNodes.indexOf){ // indexOf is a must
25490         this.childNodes.indexOf = function(o){
25491             for(var i = 0, len = this.length; i < len; i++){
25492                 if(this[i] == o) {
25493                     return i;
25494                 }
25495             }
25496             return -1;
25497         };
25498     }
25499     /**
25500      * The parent node for this node. @type Node
25501      */
25502     this.parentNode = null;
25503     /**
25504      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25505      */
25506     this.firstChild = null;
25507     /**
25508      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25509      */
25510     this.lastChild = null;
25511     /**
25512      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25513      */
25514     this.previousSibling = null;
25515     /**
25516      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25517      */
25518     this.nextSibling = null;
25519
25520     this.addEvents({
25521        /**
25522         * @event append
25523         * Fires when a new child node is appended
25524         * @param {Tree} tree The owner tree
25525         * @param {Node} this This node
25526         * @param {Node} node The newly appended node
25527         * @param {Number} index The index of the newly appended node
25528         */
25529        "append" : true,
25530        /**
25531         * @event remove
25532         * Fires when a child node is removed
25533         * @param {Tree} tree The owner tree
25534         * @param {Node} this This node
25535         * @param {Node} node The removed node
25536         */
25537        "remove" : true,
25538        /**
25539         * @event move
25540         * Fires when this node is moved to a new location in the tree
25541         * @param {Tree} tree The owner tree
25542         * @param {Node} this This node
25543         * @param {Node} oldParent The old parent of this node
25544         * @param {Node} newParent The new parent of this node
25545         * @param {Number} index The index it was moved to
25546         */
25547        "move" : true,
25548        /**
25549         * @event insert
25550         * Fires when a new child node is inserted.
25551         * @param {Tree} tree The owner tree
25552         * @param {Node} this This node
25553         * @param {Node} node The child node inserted
25554         * @param {Node} refNode The child node the node was inserted before
25555         */
25556        "insert" : true,
25557        /**
25558         * @event beforeappend
25559         * Fires before a new child is appended, return false to cancel the append.
25560         * @param {Tree} tree The owner tree
25561         * @param {Node} this This node
25562         * @param {Node} node The child node to be appended
25563         */
25564        "beforeappend" : true,
25565        /**
25566         * @event beforeremove
25567         * Fires before a child is removed, return false to cancel the remove.
25568         * @param {Tree} tree The owner tree
25569         * @param {Node} this This node
25570         * @param {Node} node The child node to be removed
25571         */
25572        "beforeremove" : true,
25573        /**
25574         * @event beforemove
25575         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25576         * @param {Tree} tree The owner tree
25577         * @param {Node} this This node
25578         * @param {Node} oldParent The parent of this node
25579         * @param {Node} newParent The new parent this node is moving to
25580         * @param {Number} index The index it is being moved to
25581         */
25582        "beforemove" : true,
25583        /**
25584         * @event beforeinsert
25585         * Fires before a new child is inserted, return false to cancel the insert.
25586         * @param {Tree} tree The owner tree
25587         * @param {Node} this This node
25588         * @param {Node} node The child node to be inserted
25589         * @param {Node} refNode The child node the node is being inserted before
25590         */
25591        "beforeinsert" : true
25592    });
25593     this.listeners = this.attributes.listeners;
25594     Roo.data.Node.superclass.constructor.call(this);
25595 };
25596
25597 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25598     fireEvent : function(evtName){
25599         // first do standard event for this node
25600         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25601             return false;
25602         }
25603         // then bubble it up to the tree if the event wasn't cancelled
25604         var ot = this.getOwnerTree();
25605         if(ot){
25606             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25607                 return false;
25608             }
25609         }
25610         return true;
25611     },
25612
25613     /**
25614      * Returns true if this node is a leaf
25615      * @return {Boolean}
25616      */
25617     isLeaf : function(){
25618         return this.leaf === true;
25619     },
25620
25621     // private
25622     setFirstChild : function(node){
25623         this.firstChild = node;
25624     },
25625
25626     //private
25627     setLastChild : function(node){
25628         this.lastChild = node;
25629     },
25630
25631
25632     /**
25633      * Returns true if this node is the last child of its parent
25634      * @return {Boolean}
25635      */
25636     isLast : function(){
25637        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25638     },
25639
25640     /**
25641      * Returns true if this node is the first child of its parent
25642      * @return {Boolean}
25643      */
25644     isFirst : function(){
25645        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25646     },
25647
25648     hasChildNodes : function(){
25649         return !this.isLeaf() && this.childNodes.length > 0;
25650     },
25651
25652     /**
25653      * Insert node(s) as the last child node of this node.
25654      * @param {Node/Array} node The node or Array of nodes to append
25655      * @return {Node} The appended node if single append, or null if an array was passed
25656      */
25657     appendChild : function(node){
25658         var multi = false;
25659         if(node instanceof Array){
25660             multi = node;
25661         }else if(arguments.length > 1){
25662             multi = arguments;
25663         }
25664         
25665         // if passed an array or multiple args do them one by one
25666         if(multi){
25667             for(var i = 0, len = multi.length; i < len; i++) {
25668                 this.appendChild(multi[i]);
25669             }
25670         }else{
25671             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25672                 return false;
25673             }
25674             var index = this.childNodes.length;
25675             var oldParent = node.parentNode;
25676             // it's a move, make sure we move it cleanly
25677             if(oldParent){
25678                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25679                     return false;
25680                 }
25681                 oldParent.removeChild(node);
25682             }
25683             
25684             index = this.childNodes.length;
25685             if(index == 0){
25686                 this.setFirstChild(node);
25687             }
25688             this.childNodes.push(node);
25689             node.parentNode = this;
25690             var ps = this.childNodes[index-1];
25691             if(ps){
25692                 node.previousSibling = ps;
25693                 ps.nextSibling = node;
25694             }else{
25695                 node.previousSibling = null;
25696             }
25697             node.nextSibling = null;
25698             this.setLastChild(node);
25699             node.setOwnerTree(this.getOwnerTree());
25700             this.fireEvent("append", this.ownerTree, this, node, index);
25701             if(this.ownerTree) {
25702                 this.ownerTree.fireEvent("appendnode", this, node, index);
25703             }
25704             if(oldParent){
25705                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25706             }
25707             return node;
25708         }
25709     },
25710
25711     /**
25712      * Removes a child node from this node.
25713      * @param {Node} node The node to remove
25714      * @return {Node} The removed node
25715      */
25716     removeChild : function(node){
25717         var index = this.childNodes.indexOf(node);
25718         if(index == -1){
25719             return false;
25720         }
25721         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25722             return false;
25723         }
25724
25725         // remove it from childNodes collection
25726         this.childNodes.splice(index, 1);
25727
25728         // update siblings
25729         if(node.previousSibling){
25730             node.previousSibling.nextSibling = node.nextSibling;
25731         }
25732         if(node.nextSibling){
25733             node.nextSibling.previousSibling = node.previousSibling;
25734         }
25735
25736         // update child refs
25737         if(this.firstChild == node){
25738             this.setFirstChild(node.nextSibling);
25739         }
25740         if(this.lastChild == node){
25741             this.setLastChild(node.previousSibling);
25742         }
25743
25744         node.setOwnerTree(null);
25745         // clear any references from the node
25746         node.parentNode = null;
25747         node.previousSibling = null;
25748         node.nextSibling = null;
25749         this.fireEvent("remove", this.ownerTree, this, node);
25750         return node;
25751     },
25752
25753     /**
25754      * Inserts the first node before the second node in this nodes childNodes collection.
25755      * @param {Node} node The node to insert
25756      * @param {Node} refNode The node to insert before (if null the node is appended)
25757      * @return {Node} The inserted node
25758      */
25759     insertBefore : function(node, refNode){
25760         if(!refNode){ // like standard Dom, refNode can be null for append
25761             return this.appendChild(node);
25762         }
25763         // nothing to do
25764         if(node == refNode){
25765             return false;
25766         }
25767
25768         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25769             return false;
25770         }
25771         var index = this.childNodes.indexOf(refNode);
25772         var oldParent = node.parentNode;
25773         var refIndex = index;
25774
25775         // when moving internally, indexes will change after remove
25776         if(oldParent == this && this.childNodes.indexOf(node) < index){
25777             refIndex--;
25778         }
25779
25780         // it's a move, make sure we move it cleanly
25781         if(oldParent){
25782             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25783                 return false;
25784             }
25785             oldParent.removeChild(node);
25786         }
25787         if(refIndex == 0){
25788             this.setFirstChild(node);
25789         }
25790         this.childNodes.splice(refIndex, 0, node);
25791         node.parentNode = this;
25792         var ps = this.childNodes[refIndex-1];
25793         if(ps){
25794             node.previousSibling = ps;
25795             ps.nextSibling = node;
25796         }else{
25797             node.previousSibling = null;
25798         }
25799         node.nextSibling = refNode;
25800         refNode.previousSibling = node;
25801         node.setOwnerTree(this.getOwnerTree());
25802         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25803         if(oldParent){
25804             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25805         }
25806         return node;
25807     },
25808
25809     /**
25810      * Returns the child node at the specified index.
25811      * @param {Number} index
25812      * @return {Node}
25813      */
25814     item : function(index){
25815         return this.childNodes[index];
25816     },
25817
25818     /**
25819      * Replaces one child node in this node with another.
25820      * @param {Node} newChild The replacement node
25821      * @param {Node} oldChild The node to replace
25822      * @return {Node} The replaced node
25823      */
25824     replaceChild : function(newChild, oldChild){
25825         this.insertBefore(newChild, oldChild);
25826         this.removeChild(oldChild);
25827         return oldChild;
25828     },
25829
25830     /**
25831      * Returns the index of a child node
25832      * @param {Node} node
25833      * @return {Number} The index of the node or -1 if it was not found
25834      */
25835     indexOf : function(child){
25836         return this.childNodes.indexOf(child);
25837     },
25838
25839     /**
25840      * Returns the tree this node is in.
25841      * @return {Tree}
25842      */
25843     getOwnerTree : function(){
25844         // if it doesn't have one, look for one
25845         if(!this.ownerTree){
25846             var p = this;
25847             while(p){
25848                 if(p.ownerTree){
25849                     this.ownerTree = p.ownerTree;
25850                     break;
25851                 }
25852                 p = p.parentNode;
25853             }
25854         }
25855         return this.ownerTree;
25856     },
25857
25858     /**
25859      * Returns depth of this node (the root node has a depth of 0)
25860      * @return {Number}
25861      */
25862     getDepth : function(){
25863         var depth = 0;
25864         var p = this;
25865         while(p.parentNode){
25866             ++depth;
25867             p = p.parentNode;
25868         }
25869         return depth;
25870     },
25871
25872     // private
25873     setOwnerTree : function(tree){
25874         // if it's move, we need to update everyone
25875         if(tree != this.ownerTree){
25876             if(this.ownerTree){
25877                 this.ownerTree.unregisterNode(this);
25878             }
25879             this.ownerTree = tree;
25880             var cs = this.childNodes;
25881             for(var i = 0, len = cs.length; i < len; i++) {
25882                 cs[i].setOwnerTree(tree);
25883             }
25884             if(tree){
25885                 tree.registerNode(this);
25886             }
25887         }
25888     },
25889
25890     /**
25891      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25892      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25893      * @return {String} The path
25894      */
25895     getPath : function(attr){
25896         attr = attr || "id";
25897         var p = this.parentNode;
25898         var b = [this.attributes[attr]];
25899         while(p){
25900             b.unshift(p.attributes[attr]);
25901             p = p.parentNode;
25902         }
25903         var sep = this.getOwnerTree().pathSeparator;
25904         return sep + b.join(sep);
25905     },
25906
25907     /**
25908      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25909      * function call will be the scope provided or the current node. The arguments to the function
25910      * will be the args provided or the current node. If the function returns false at any point,
25911      * the bubble is stopped.
25912      * @param {Function} fn The function to call
25913      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25914      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25915      */
25916     bubble : function(fn, scope, args){
25917         var p = this;
25918         while(p){
25919             if(fn.call(scope || p, args || p) === false){
25920                 break;
25921             }
25922             p = p.parentNode;
25923         }
25924     },
25925
25926     /**
25927      * Cascades down 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 cascade is stopped on that branch.
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     cascade : function(fn, scope, args){
25936         if(fn.call(scope || this, args || this) !== false){
25937             var cs = this.childNodes;
25938             for(var i = 0, len = cs.length; i < len; i++) {
25939                 cs[i].cascade(fn, scope, args);
25940             }
25941         }
25942     },
25943
25944     /**
25945      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25946      * function call will be the scope provided or the current node. The arguments to the function
25947      * will be the args provided or the current node. If the function returns false at any point,
25948      * the iteration stops.
25949      * @param {Function} fn The function to call
25950      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25951      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25952      */
25953     eachChild : function(fn, scope, args){
25954         var cs = this.childNodes;
25955         for(var i = 0, len = cs.length; i < len; i++) {
25956                 if(fn.call(scope || this, args || cs[i]) === false){
25957                     break;
25958                 }
25959         }
25960     },
25961
25962     /**
25963      * Finds the first child that has the attribute with the specified value.
25964      * @param {String} attribute The attribute name
25965      * @param {Mixed} value The value to search for
25966      * @return {Node} The found child or null if none was found
25967      */
25968     findChild : function(attribute, value){
25969         var cs = this.childNodes;
25970         for(var i = 0, len = cs.length; i < len; i++) {
25971                 if(cs[i].attributes[attribute] == value){
25972                     return cs[i];
25973                 }
25974         }
25975         return null;
25976     },
25977
25978     /**
25979      * Finds the first child by a custom function. The child matches if the function passed
25980      * returns true.
25981      * @param {Function} fn
25982      * @param {Object} scope (optional)
25983      * @return {Node} The found child or null if none was found
25984      */
25985     findChildBy : function(fn, scope){
25986         var cs = this.childNodes;
25987         for(var i = 0, len = cs.length; i < len; i++) {
25988                 if(fn.call(scope||cs[i], cs[i]) === true){
25989                     return cs[i];
25990                 }
25991         }
25992         return null;
25993     },
25994
25995     /**
25996      * Sorts this nodes children using the supplied sort function
25997      * @param {Function} fn
25998      * @param {Object} scope (optional)
25999      */
26000     sort : function(fn, scope){
26001         var cs = this.childNodes;
26002         var len = cs.length;
26003         if(len > 0){
26004             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
26005             cs.sort(sortFn);
26006             for(var i = 0; i < len; i++){
26007                 var n = cs[i];
26008                 n.previousSibling = cs[i-1];
26009                 n.nextSibling = cs[i+1];
26010                 if(i == 0){
26011                     this.setFirstChild(n);
26012                 }
26013                 if(i == len-1){
26014                     this.setLastChild(n);
26015                 }
26016             }
26017         }
26018     },
26019
26020     /**
26021      * Returns true if this node is an ancestor (at any point) of the passed node.
26022      * @param {Node} node
26023      * @return {Boolean}
26024      */
26025     contains : function(node){
26026         return node.isAncestor(this);
26027     },
26028
26029     /**
26030      * Returns true if the passed node is an ancestor (at any point) of this node.
26031      * @param {Node} node
26032      * @return {Boolean}
26033      */
26034     isAncestor : function(node){
26035         var p = this.parentNode;
26036         while(p){
26037             if(p == node){
26038                 return true;
26039             }
26040             p = p.parentNode;
26041         }
26042         return false;
26043     },
26044
26045     toString : function(){
26046         return "[Node"+(this.id?" "+this.id:"")+"]";
26047     }
26048 });/*
26049  * Based on:
26050  * Ext JS Library 1.1.1
26051  * Copyright(c) 2006-2007, Ext JS, LLC.
26052  *
26053  * Originally Released Under LGPL - original licence link has changed is not relivant.
26054  *
26055  * Fork - LGPL
26056  * <script type="text/javascript">
26057  */
26058
26059
26060 /**
26061  * @class Roo.Shadow
26062  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26063  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26064  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26065  * @constructor
26066  * Create a new Shadow
26067  * @param {Object} config The config object
26068  */
26069 Roo.Shadow = function(config){
26070     Roo.apply(this, config);
26071     if(typeof this.mode != "string"){
26072         this.mode = this.defaultMode;
26073     }
26074     var o = this.offset, a = {h: 0};
26075     var rad = Math.floor(this.offset/2);
26076     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26077         case "drop":
26078             a.w = 0;
26079             a.l = a.t = o;
26080             a.t -= 1;
26081             if(Roo.isIE){
26082                 a.l -= this.offset + rad;
26083                 a.t -= this.offset + rad;
26084                 a.w -= rad;
26085                 a.h -= rad;
26086                 a.t += 1;
26087             }
26088         break;
26089         case "sides":
26090             a.w = (o*2);
26091             a.l = -o;
26092             a.t = o-1;
26093             if(Roo.isIE){
26094                 a.l -= (this.offset - rad);
26095                 a.t -= this.offset + rad;
26096                 a.l += 1;
26097                 a.w -= (this.offset - rad)*2;
26098                 a.w -= rad + 1;
26099                 a.h -= 1;
26100             }
26101         break;
26102         case "frame":
26103             a.w = a.h = (o*2);
26104             a.l = a.t = -o;
26105             a.t += 1;
26106             a.h -= 2;
26107             if(Roo.isIE){
26108                 a.l -= (this.offset - rad);
26109                 a.t -= (this.offset - rad);
26110                 a.l += 1;
26111                 a.w -= (this.offset + rad + 1);
26112                 a.h -= (this.offset + rad);
26113                 a.h += 1;
26114             }
26115         break;
26116     };
26117
26118     this.adjusts = a;
26119 };
26120
26121 Roo.Shadow.prototype = {
26122     /**
26123      * @cfg {String} mode
26124      * The shadow display mode.  Supports the following options:<br />
26125      * sides: Shadow displays on both sides and bottom only<br />
26126      * frame: Shadow displays equally on all four sides<br />
26127      * drop: Traditional bottom-right drop shadow (default)
26128      */
26129     /**
26130      * @cfg {String} offset
26131      * The number of pixels to offset the shadow from the element (defaults to 4)
26132      */
26133     offset: 4,
26134
26135     // private
26136     defaultMode: "drop",
26137
26138     /**
26139      * Displays the shadow under the target element
26140      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26141      */
26142     show : function(target){
26143         target = Roo.get(target);
26144         if(!this.el){
26145             this.el = Roo.Shadow.Pool.pull();
26146             if(this.el.dom.nextSibling != target.dom){
26147                 this.el.insertBefore(target);
26148             }
26149         }
26150         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26151         if(Roo.isIE){
26152             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26153         }
26154         this.realign(
26155             target.getLeft(true),
26156             target.getTop(true),
26157             target.getWidth(),
26158             target.getHeight()
26159         );
26160         this.el.dom.style.display = "block";
26161     },
26162
26163     /**
26164      * Returns true if the shadow is visible, else false
26165      */
26166     isVisible : function(){
26167         return this.el ? true : false;  
26168     },
26169
26170     /**
26171      * Direct alignment when values are already available. Show must be called at least once before
26172      * calling this method to ensure it is initialized.
26173      * @param {Number} left The target element left position
26174      * @param {Number} top The target element top position
26175      * @param {Number} width The target element width
26176      * @param {Number} height The target element height
26177      */
26178     realign : function(l, t, w, h){
26179         if(!this.el){
26180             return;
26181         }
26182         var a = this.adjusts, d = this.el.dom, s = d.style;
26183         var iea = 0;
26184         s.left = (l+a.l)+"px";
26185         s.top = (t+a.t)+"px";
26186         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26187  
26188         if(s.width != sws || s.height != shs){
26189             s.width = sws;
26190             s.height = shs;
26191             if(!Roo.isIE){
26192                 var cn = d.childNodes;
26193                 var sww = Math.max(0, (sw-12))+"px";
26194                 cn[0].childNodes[1].style.width = sww;
26195                 cn[1].childNodes[1].style.width = sww;
26196                 cn[2].childNodes[1].style.width = sww;
26197                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26198             }
26199         }
26200     },
26201
26202     /**
26203      * Hides this shadow
26204      */
26205     hide : function(){
26206         if(this.el){
26207             this.el.dom.style.display = "none";
26208             Roo.Shadow.Pool.push(this.el);
26209             delete this.el;
26210         }
26211     },
26212
26213     /**
26214      * Adjust the z-index of this shadow
26215      * @param {Number} zindex The new z-index
26216      */
26217     setZIndex : function(z){
26218         this.zIndex = z;
26219         if(this.el){
26220             this.el.setStyle("z-index", z);
26221         }
26222     }
26223 };
26224
26225 // Private utility class that manages the internal Shadow cache
26226 Roo.Shadow.Pool = function(){
26227     var p = [];
26228     var markup = Roo.isIE ?
26229                  '<div class="x-ie-shadow"></div>' :
26230                  '<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>';
26231     return {
26232         pull : function(){
26233             var sh = p.shift();
26234             if(!sh){
26235                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26236                 sh.autoBoxAdjust = false;
26237             }
26238             return sh;
26239         },
26240
26241         push : function(sh){
26242             p.push(sh);
26243         }
26244     };
26245 }();/*
26246  * Based on:
26247  * Ext JS Library 1.1.1
26248  * Copyright(c) 2006-2007, Ext JS, LLC.
26249  *
26250  * Originally Released Under LGPL - original licence link has changed is not relivant.
26251  *
26252  * Fork - LGPL
26253  * <script type="text/javascript">
26254  */
26255
26256
26257 /**
26258  * @class Roo.SplitBar
26259  * @extends Roo.util.Observable
26260  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26261  * <br><br>
26262  * Usage:
26263  * <pre><code>
26264 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26265                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26266 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26267 split.minSize = 100;
26268 split.maxSize = 600;
26269 split.animate = true;
26270 split.on('moved', splitterMoved);
26271 </code></pre>
26272  * @constructor
26273  * Create a new SplitBar
26274  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26275  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26276  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26277  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26278                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26279                         position of the SplitBar).
26280  */
26281 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26282     
26283     /** @private */
26284     this.el = Roo.get(dragElement, true);
26285     this.el.dom.unselectable = "on";
26286     /** @private */
26287     this.resizingEl = Roo.get(resizingElement, true);
26288
26289     /**
26290      * @private
26291      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26292      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26293      * @type Number
26294      */
26295     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26296     
26297     /**
26298      * The minimum size of the resizing element. (Defaults to 0)
26299      * @type Number
26300      */
26301     this.minSize = 0;
26302     
26303     /**
26304      * The maximum size of the resizing element. (Defaults to 2000)
26305      * @type Number
26306      */
26307     this.maxSize = 2000;
26308     
26309     /**
26310      * Whether to animate the transition to the new size
26311      * @type Boolean
26312      */
26313     this.animate = false;
26314     
26315     /**
26316      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26317      * @type Boolean
26318      */
26319     this.useShim = false;
26320     
26321     /** @private */
26322     this.shim = null;
26323     
26324     if(!existingProxy){
26325         /** @private */
26326         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26327     }else{
26328         this.proxy = Roo.get(existingProxy).dom;
26329     }
26330     /** @private */
26331     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26332     
26333     /** @private */
26334     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26335     
26336     /** @private */
26337     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26338     
26339     /** @private */
26340     this.dragSpecs = {};
26341     
26342     /**
26343      * @private The adapter to use to positon and resize elements
26344      */
26345     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26346     this.adapter.init(this);
26347     
26348     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26349         /** @private */
26350         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26351         this.el.addClass("x-splitbar-h");
26352     }else{
26353         /** @private */
26354         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26355         this.el.addClass("x-splitbar-v");
26356     }
26357     
26358     this.addEvents({
26359         /**
26360          * @event resize
26361          * Fires when the splitter is moved (alias for {@link #event-moved})
26362          * @param {Roo.SplitBar} this
26363          * @param {Number} newSize the new width or height
26364          */
26365         "resize" : true,
26366         /**
26367          * @event moved
26368          * Fires when the splitter is moved
26369          * @param {Roo.SplitBar} this
26370          * @param {Number} newSize the new width or height
26371          */
26372         "moved" : true,
26373         /**
26374          * @event beforeresize
26375          * Fires before the splitter is dragged
26376          * @param {Roo.SplitBar} this
26377          */
26378         "beforeresize" : true,
26379
26380         "beforeapply" : true
26381     });
26382
26383     Roo.util.Observable.call(this);
26384 };
26385
26386 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26387     onStartProxyDrag : function(x, y){
26388         this.fireEvent("beforeresize", this);
26389         if(!this.overlay){
26390             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26391             o.unselectable();
26392             o.enableDisplayMode("block");
26393             // all splitbars share the same overlay
26394             Roo.SplitBar.prototype.overlay = o;
26395         }
26396         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26397         this.overlay.show();
26398         Roo.get(this.proxy).setDisplayed("block");
26399         var size = this.adapter.getElementSize(this);
26400         this.activeMinSize = this.getMinimumSize();;
26401         this.activeMaxSize = this.getMaximumSize();;
26402         var c1 = size - this.activeMinSize;
26403         var c2 = Math.max(this.activeMaxSize - size, 0);
26404         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26405             this.dd.resetConstraints();
26406             this.dd.setXConstraint(
26407                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26408                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26409             );
26410             this.dd.setYConstraint(0, 0);
26411         }else{
26412             this.dd.resetConstraints();
26413             this.dd.setXConstraint(0, 0);
26414             this.dd.setYConstraint(
26415                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26416                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26417             );
26418          }
26419         this.dragSpecs.startSize = size;
26420         this.dragSpecs.startPoint = [x, y];
26421         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26422     },
26423     
26424     /** 
26425      * @private Called after the drag operation by the DDProxy
26426      */
26427     onEndProxyDrag : function(e){
26428         Roo.get(this.proxy).setDisplayed(false);
26429         var endPoint = Roo.lib.Event.getXY(e);
26430         if(this.overlay){
26431             this.overlay.hide();
26432         }
26433         var newSize;
26434         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26435             newSize = this.dragSpecs.startSize + 
26436                 (this.placement == Roo.SplitBar.LEFT ?
26437                     endPoint[0] - this.dragSpecs.startPoint[0] :
26438                     this.dragSpecs.startPoint[0] - endPoint[0]
26439                 );
26440         }else{
26441             newSize = this.dragSpecs.startSize + 
26442                 (this.placement == Roo.SplitBar.TOP ?
26443                     endPoint[1] - this.dragSpecs.startPoint[1] :
26444                     this.dragSpecs.startPoint[1] - endPoint[1]
26445                 );
26446         }
26447         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26448         if(newSize != this.dragSpecs.startSize){
26449             if(this.fireEvent('beforeapply', this, newSize) !== false){
26450                 this.adapter.setElementSize(this, newSize);
26451                 this.fireEvent("moved", this, newSize);
26452                 this.fireEvent("resize", this, newSize);
26453             }
26454         }
26455     },
26456     
26457     /**
26458      * Get the adapter this SplitBar uses
26459      * @return The adapter object
26460      */
26461     getAdapter : function(){
26462         return this.adapter;
26463     },
26464     
26465     /**
26466      * Set the adapter this SplitBar uses
26467      * @param {Object} adapter A SplitBar adapter object
26468      */
26469     setAdapter : function(adapter){
26470         this.adapter = adapter;
26471         this.adapter.init(this);
26472     },
26473     
26474     /**
26475      * Gets the minimum size for the resizing element
26476      * @return {Number} The minimum size
26477      */
26478     getMinimumSize : function(){
26479         return this.minSize;
26480     },
26481     
26482     /**
26483      * Sets the minimum size for the resizing element
26484      * @param {Number} minSize The minimum size
26485      */
26486     setMinimumSize : function(minSize){
26487         this.minSize = minSize;
26488     },
26489     
26490     /**
26491      * Gets the maximum size for the resizing element
26492      * @return {Number} The maximum size
26493      */
26494     getMaximumSize : function(){
26495         return this.maxSize;
26496     },
26497     
26498     /**
26499      * Sets the maximum size for the resizing element
26500      * @param {Number} maxSize The maximum size
26501      */
26502     setMaximumSize : function(maxSize){
26503         this.maxSize = maxSize;
26504     },
26505     
26506     /**
26507      * Sets the initialize size for the resizing element
26508      * @param {Number} size The initial size
26509      */
26510     setCurrentSize : function(size){
26511         var oldAnimate = this.animate;
26512         this.animate = false;
26513         this.adapter.setElementSize(this, size);
26514         this.animate = oldAnimate;
26515     },
26516     
26517     /**
26518      * Destroy this splitbar. 
26519      * @param {Boolean} removeEl True to remove the element
26520      */
26521     destroy : function(removeEl){
26522         if(this.shim){
26523             this.shim.remove();
26524         }
26525         this.dd.unreg();
26526         this.proxy.parentNode.removeChild(this.proxy);
26527         if(removeEl){
26528             this.el.remove();
26529         }
26530     }
26531 });
26532
26533 /**
26534  * @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.
26535  */
26536 Roo.SplitBar.createProxy = function(dir){
26537     var proxy = new Roo.Element(document.createElement("div"));
26538     proxy.unselectable();
26539     var cls = 'x-splitbar-proxy';
26540     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26541     document.body.appendChild(proxy.dom);
26542     return proxy.dom;
26543 };
26544
26545 /** 
26546  * @class Roo.SplitBar.BasicLayoutAdapter
26547  * Default Adapter. It assumes the splitter and resizing element are not positioned
26548  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26549  */
26550 Roo.SplitBar.BasicLayoutAdapter = function(){
26551 };
26552
26553 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26554     // do nothing for now
26555     init : function(s){
26556     
26557     },
26558     /**
26559      * Called before drag operations to get the current size of the resizing element. 
26560      * @param {Roo.SplitBar} s The SplitBar using this adapter
26561      */
26562      getElementSize : function(s){
26563         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26564             return s.resizingEl.getWidth();
26565         }else{
26566             return s.resizingEl.getHeight();
26567         }
26568     },
26569     
26570     /**
26571      * Called after drag operations to set the size of the resizing element.
26572      * @param {Roo.SplitBar} s The SplitBar using this adapter
26573      * @param {Number} newSize The new size to set
26574      * @param {Function} onComplete A function to be invoked when resizing is complete
26575      */
26576     setElementSize : function(s, newSize, onComplete){
26577         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26578             if(!s.animate){
26579                 s.resizingEl.setWidth(newSize);
26580                 if(onComplete){
26581                     onComplete(s, newSize);
26582                 }
26583             }else{
26584                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26585             }
26586         }else{
26587             
26588             if(!s.animate){
26589                 s.resizingEl.setHeight(newSize);
26590                 if(onComplete){
26591                     onComplete(s, newSize);
26592                 }
26593             }else{
26594                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26595             }
26596         }
26597     }
26598 };
26599
26600 /** 
26601  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26602  * @extends Roo.SplitBar.BasicLayoutAdapter
26603  * Adapter that  moves the splitter element to align with the resized sizing element. 
26604  * Used with an absolute positioned SplitBar.
26605  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26606  * document.body, make sure you assign an id to the body element.
26607  */
26608 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26609     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26610     this.container = Roo.get(container);
26611 };
26612
26613 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26614     init : function(s){
26615         this.basic.init(s);
26616     },
26617     
26618     getElementSize : function(s){
26619         return this.basic.getElementSize(s);
26620     },
26621     
26622     setElementSize : function(s, newSize, onComplete){
26623         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26624     },
26625     
26626     moveSplitter : function(s){
26627         var yes = Roo.SplitBar;
26628         switch(s.placement){
26629             case yes.LEFT:
26630                 s.el.setX(s.resizingEl.getRight());
26631                 break;
26632             case yes.RIGHT:
26633                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26634                 break;
26635             case yes.TOP:
26636                 s.el.setY(s.resizingEl.getBottom());
26637                 break;
26638             case yes.BOTTOM:
26639                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26640                 break;
26641         }
26642     }
26643 };
26644
26645 /**
26646  * Orientation constant - Create a vertical SplitBar
26647  * @static
26648  * @type Number
26649  */
26650 Roo.SplitBar.VERTICAL = 1;
26651
26652 /**
26653  * Orientation constant - Create a horizontal SplitBar
26654  * @static
26655  * @type Number
26656  */
26657 Roo.SplitBar.HORIZONTAL = 2;
26658
26659 /**
26660  * Placement constant - The resizing element is to the left of the splitter element
26661  * @static
26662  * @type Number
26663  */
26664 Roo.SplitBar.LEFT = 1;
26665
26666 /**
26667  * Placement constant - The resizing element is to the right of the splitter element
26668  * @static
26669  * @type Number
26670  */
26671 Roo.SplitBar.RIGHT = 2;
26672
26673 /**
26674  * Placement constant - The resizing element is positioned above the splitter element
26675  * @static
26676  * @type Number
26677  */
26678 Roo.SplitBar.TOP = 3;
26679
26680 /**
26681  * Placement constant - The resizing element is positioned under splitter element
26682  * @static
26683  * @type Number
26684  */
26685 Roo.SplitBar.BOTTOM = 4;
26686 /*
26687  * Based on:
26688  * Ext JS Library 1.1.1
26689  * Copyright(c) 2006-2007, Ext JS, LLC.
26690  *
26691  * Originally Released Under LGPL - original licence link has changed is not relivant.
26692  *
26693  * Fork - LGPL
26694  * <script type="text/javascript">
26695  */
26696
26697 /**
26698  * @class Roo.View
26699  * @extends Roo.util.Observable
26700  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26701  * This class also supports single and multi selection modes. <br>
26702  * Create a data model bound view:
26703  <pre><code>
26704  var store = new Roo.data.Store(...);
26705
26706  var view = new Roo.View({
26707     el : "my-element",
26708     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26709  
26710     singleSelect: true,
26711     selectedClass: "ydataview-selected",
26712     store: store
26713  });
26714
26715  // listen for node click?
26716  view.on("click", function(vw, index, node, e){
26717  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26718  });
26719
26720  // load XML data
26721  dataModel.load("foobar.xml");
26722  </code></pre>
26723  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26724  * <br><br>
26725  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26726  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26727  * 
26728  * Note: old style constructor is still suported (container, template, config)
26729  * 
26730  * @constructor
26731  * Create a new View
26732  * @param {Object} config The config object
26733  * 
26734  */
26735 Roo.View = function(config, depreciated_tpl, depreciated_config){
26736     
26737     this.parent = false;
26738     
26739     if (typeof(depreciated_tpl) == 'undefined') {
26740         // new way.. - universal constructor.
26741         Roo.apply(this, config);
26742         this.el  = Roo.get(this.el);
26743     } else {
26744         // old format..
26745         this.el  = Roo.get(config);
26746         this.tpl = depreciated_tpl;
26747         Roo.apply(this, depreciated_config);
26748     }
26749     this.wrapEl  = this.el.wrap().wrap();
26750     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26751     
26752     
26753     if(typeof(this.tpl) == "string"){
26754         this.tpl = new Roo.Template(this.tpl);
26755     } else {
26756         // support xtype ctors..
26757         this.tpl = new Roo.factory(this.tpl, Roo);
26758     }
26759     
26760     
26761     this.tpl.compile();
26762     
26763     /** @private */
26764     this.addEvents({
26765         /**
26766          * @event beforeclick
26767          * Fires before a click is processed. Returns false to cancel the default action.
26768          * @param {Roo.View} this
26769          * @param {Number} index The index of the target node
26770          * @param {HTMLElement} node The target node
26771          * @param {Roo.EventObject} e The raw event object
26772          */
26773             "beforeclick" : true,
26774         /**
26775          * @event click
26776          * Fires when a template node is clicked.
26777          * @param {Roo.View} this
26778          * @param {Number} index The index of the target node
26779          * @param {HTMLElement} node The target node
26780          * @param {Roo.EventObject} e The raw event object
26781          */
26782             "click" : true,
26783         /**
26784          * @event dblclick
26785          * Fires when a template node is double clicked.
26786          * @param {Roo.View} this
26787          * @param {Number} index The index of the target node
26788          * @param {HTMLElement} node The target node
26789          * @param {Roo.EventObject} e The raw event object
26790          */
26791             "dblclick" : true,
26792         /**
26793          * @event contextmenu
26794          * Fires when a template node is right clicked.
26795          * @param {Roo.View} this
26796          * @param {Number} index The index of the target node
26797          * @param {HTMLElement} node The target node
26798          * @param {Roo.EventObject} e The raw event object
26799          */
26800             "contextmenu" : true,
26801         /**
26802          * @event selectionchange
26803          * Fires when the selected nodes change.
26804          * @param {Roo.View} this
26805          * @param {Array} selections Array of the selected nodes
26806          */
26807             "selectionchange" : true,
26808     
26809         /**
26810          * @event beforeselect
26811          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26812          * @param {Roo.View} this
26813          * @param {HTMLElement} node The node to be selected
26814          * @param {Array} selections Array of currently selected nodes
26815          */
26816             "beforeselect" : true,
26817         /**
26818          * @event preparedata
26819          * Fires on every row to render, to allow you to change the data.
26820          * @param {Roo.View} this
26821          * @param {Object} data to be rendered (change this)
26822          */
26823           "preparedata" : true
26824           
26825           
26826         });
26827
26828
26829
26830     this.el.on({
26831         "click": this.onClick,
26832         "dblclick": this.onDblClick,
26833         "contextmenu": this.onContextMenu,
26834         scope:this
26835     });
26836
26837     this.selections = [];
26838     this.nodes = [];
26839     this.cmp = new Roo.CompositeElementLite([]);
26840     if(this.store){
26841         this.store = Roo.factory(this.store, Roo.data);
26842         this.setStore(this.store, true);
26843     }
26844     
26845     if ( this.footer && this.footer.xtype) {
26846            
26847          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26848         
26849         this.footer.dataSource = this.store;
26850         this.footer.container = fctr;
26851         this.footer = Roo.factory(this.footer, Roo);
26852         fctr.insertFirst(this.el);
26853         
26854         // this is a bit insane - as the paging toolbar seems to detach the el..
26855 //        dom.parentNode.parentNode.parentNode
26856          // they get detached?
26857     }
26858     
26859     
26860     Roo.View.superclass.constructor.call(this);
26861     
26862     
26863 };
26864
26865 Roo.extend(Roo.View, Roo.util.Observable, {
26866     
26867      /**
26868      * @cfg {Roo.data.Store} store Data store to load data from.
26869      */
26870     store : false,
26871     
26872     /**
26873      * @cfg {String|Roo.Element} el The container element.
26874      */
26875     el : '',
26876     
26877     /**
26878      * @cfg {String|Roo.Template} tpl The template used by this View 
26879      */
26880     tpl : false,
26881     /**
26882      * @cfg {String} dataName the named area of the template to use as the data area
26883      *                          Works with domtemplates roo-name="name"
26884      */
26885     dataName: false,
26886     /**
26887      * @cfg {String} selectedClass The css class to add to selected nodes
26888      */
26889     selectedClass : "x-view-selected",
26890      /**
26891      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26892      */
26893     emptyText : "",
26894     
26895     /**
26896      * @cfg {String} text to display on mask (default Loading)
26897      */
26898     mask : false,
26899     /**
26900      * @cfg {Boolean} multiSelect Allow multiple selection
26901      */
26902     multiSelect : false,
26903     /**
26904      * @cfg {Boolean} singleSelect Allow single selection
26905      */
26906     singleSelect:  false,
26907     
26908     /**
26909      * @cfg {Boolean} toggleSelect - selecting 
26910      */
26911     toggleSelect : false,
26912     
26913     /**
26914      * @cfg {Boolean} tickable - selecting 
26915      */
26916     tickable : false,
26917     
26918     /**
26919      * Returns the element this view is bound to.
26920      * @return {Roo.Element}
26921      */
26922     getEl : function(){
26923         return this.wrapEl;
26924     },
26925     
26926     
26927
26928     /**
26929      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26930      */
26931     refresh : function(){
26932         //Roo.log('refresh');
26933         var t = this.tpl;
26934         
26935         // if we are using something like 'domtemplate', then
26936         // the what gets used is:
26937         // t.applySubtemplate(NAME, data, wrapping data..)
26938         // the outer template then get' applied with
26939         //     the store 'extra data'
26940         // and the body get's added to the
26941         //      roo-name="data" node?
26942         //      <span class='roo-tpl-{name}'></span> ?????
26943         
26944         
26945         
26946         this.clearSelections();
26947         this.el.update("");
26948         var html = [];
26949         var records = this.store.getRange();
26950         if(records.length < 1) {
26951             
26952             // is this valid??  = should it render a template??
26953             
26954             this.el.update(this.emptyText);
26955             return;
26956         }
26957         var el = this.el;
26958         if (this.dataName) {
26959             this.el.update(t.apply(this.store.meta)); //????
26960             el = this.el.child('.roo-tpl-' + this.dataName);
26961         }
26962         
26963         for(var i = 0, len = records.length; i < len; i++){
26964             var data = this.prepareData(records[i].data, i, records[i]);
26965             this.fireEvent("preparedata", this, data, i, records[i]);
26966             
26967             var d = Roo.apply({}, data);
26968             
26969             if(this.tickable){
26970                 Roo.apply(d, {'roo-id' : Roo.id()});
26971                 
26972                 var _this = this;
26973             
26974                 Roo.each(this.parent.item, function(item){
26975                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26976                         return;
26977                     }
26978                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26979                 });
26980             }
26981             
26982             html[html.length] = Roo.util.Format.trim(
26983                 this.dataName ?
26984                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26985                     t.apply(d)
26986             );
26987         }
26988         
26989         
26990         
26991         el.update(html.join(""));
26992         this.nodes = el.dom.childNodes;
26993         this.updateIndexes(0);
26994     },
26995     
26996
26997     /**
26998      * Function to override to reformat the data that is sent to
26999      * the template for each node.
27000      * DEPRICATED - use the preparedata event handler.
27001      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
27002      * a JSON object for an UpdateManager bound view).
27003      */
27004     prepareData : function(data, index, record)
27005     {
27006         this.fireEvent("preparedata", this, data, index, record);
27007         return data;
27008     },
27009
27010     onUpdate : function(ds, record){
27011         // Roo.log('on update');   
27012         this.clearSelections();
27013         var index = this.store.indexOf(record);
27014         var n = this.nodes[index];
27015         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
27016         n.parentNode.removeChild(n);
27017         this.updateIndexes(index, index);
27018     },
27019
27020     
27021     
27022 // --------- FIXME     
27023     onAdd : function(ds, records, index)
27024     {
27025         //Roo.log(['on Add', ds, records, index] );        
27026         this.clearSelections();
27027         if(this.nodes.length == 0){
27028             this.refresh();
27029             return;
27030         }
27031         var n = this.nodes[index];
27032         for(var i = 0, len = records.length; i < len; i++){
27033             var d = this.prepareData(records[i].data, i, records[i]);
27034             if(n){
27035                 this.tpl.insertBefore(n, d);
27036             }else{
27037                 
27038                 this.tpl.append(this.el, d);
27039             }
27040         }
27041         this.updateIndexes(index);
27042     },
27043
27044     onRemove : function(ds, record, index){
27045        // Roo.log('onRemove');
27046         this.clearSelections();
27047         var el = this.dataName  ?
27048             this.el.child('.roo-tpl-' + this.dataName) :
27049             this.el; 
27050         
27051         el.dom.removeChild(this.nodes[index]);
27052         this.updateIndexes(index);
27053     },
27054
27055     /**
27056      * Refresh an individual node.
27057      * @param {Number} index
27058      */
27059     refreshNode : function(index){
27060         this.onUpdate(this.store, this.store.getAt(index));
27061     },
27062
27063     updateIndexes : function(startIndex, endIndex){
27064         var ns = this.nodes;
27065         startIndex = startIndex || 0;
27066         endIndex = endIndex || ns.length - 1;
27067         for(var i = startIndex; i <= endIndex; i++){
27068             ns[i].nodeIndex = i;
27069         }
27070     },
27071
27072     /**
27073      * Changes the data store this view uses and refresh the view.
27074      * @param {Store} store
27075      */
27076     setStore : function(store, initial){
27077         if(!initial && this.store){
27078             this.store.un("datachanged", this.refresh);
27079             this.store.un("add", this.onAdd);
27080             this.store.un("remove", this.onRemove);
27081             this.store.un("update", this.onUpdate);
27082             this.store.un("clear", this.refresh);
27083             this.store.un("beforeload", this.onBeforeLoad);
27084             this.store.un("load", this.onLoad);
27085             this.store.un("loadexception", this.onLoad);
27086         }
27087         if(store){
27088           
27089             store.on("datachanged", this.refresh, this);
27090             store.on("add", this.onAdd, this);
27091             store.on("remove", this.onRemove, this);
27092             store.on("update", this.onUpdate, this);
27093             store.on("clear", this.refresh, this);
27094             store.on("beforeload", this.onBeforeLoad, this);
27095             store.on("load", this.onLoad, this);
27096             store.on("loadexception", this.onLoad, this);
27097         }
27098         
27099         if(store){
27100             this.refresh();
27101         }
27102     },
27103     /**
27104      * onbeforeLoad - masks the loading area.
27105      *
27106      */
27107     onBeforeLoad : function(store,opts)
27108     {
27109          //Roo.log('onBeforeLoad');   
27110         if (!opts.add) {
27111             this.el.update("");
27112         }
27113         this.el.mask(this.mask ? this.mask : "Loading" ); 
27114     },
27115     onLoad : function ()
27116     {
27117         this.el.unmask();
27118     },
27119     
27120
27121     /**
27122      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27123      * @param {HTMLElement} node
27124      * @return {HTMLElement} The template node
27125      */
27126     findItemFromChild : function(node){
27127         var el = this.dataName  ?
27128             this.el.child('.roo-tpl-' + this.dataName,true) :
27129             this.el.dom; 
27130         
27131         if(!node || node.parentNode == el){
27132                     return node;
27133             }
27134             var p = node.parentNode;
27135             while(p && p != el){
27136             if(p.parentNode == el){
27137                 return p;
27138             }
27139             p = p.parentNode;
27140         }
27141             return null;
27142     },
27143
27144     /** @ignore */
27145     onClick : function(e){
27146         var item = this.findItemFromChild(e.getTarget());
27147         if(item){
27148             var index = this.indexOf(item);
27149             if(this.onItemClick(item, index, e) !== false){
27150                 this.fireEvent("click", this, index, item, e);
27151             }
27152         }else{
27153             this.clearSelections();
27154         }
27155     },
27156
27157     /** @ignore */
27158     onContextMenu : function(e){
27159         var item = this.findItemFromChild(e.getTarget());
27160         if(item){
27161             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27162         }
27163     },
27164
27165     /** @ignore */
27166     onDblClick : function(e){
27167         var item = this.findItemFromChild(e.getTarget());
27168         if(item){
27169             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27170         }
27171     },
27172
27173     onItemClick : function(item, index, e)
27174     {
27175         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27176             return false;
27177         }
27178         if (this.toggleSelect) {
27179             var m = this.isSelected(item) ? 'unselect' : 'select';
27180             //Roo.log(m);
27181             var _t = this;
27182             _t[m](item, true, false);
27183             return true;
27184         }
27185         if(this.multiSelect || this.singleSelect){
27186             if(this.multiSelect && e.shiftKey && this.lastSelection){
27187                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27188             }else{
27189                 this.select(item, this.multiSelect && e.ctrlKey);
27190                 this.lastSelection = item;
27191             }
27192             
27193             if(!this.tickable){
27194                 e.preventDefault();
27195             }
27196             
27197         }
27198         return true;
27199     },
27200
27201     /**
27202      * Get the number of selected nodes.
27203      * @return {Number}
27204      */
27205     getSelectionCount : function(){
27206         return this.selections.length;
27207     },
27208
27209     /**
27210      * Get the currently selected nodes.
27211      * @return {Array} An array of HTMLElements
27212      */
27213     getSelectedNodes : function(){
27214         return this.selections;
27215     },
27216
27217     /**
27218      * Get the indexes of the selected nodes.
27219      * @return {Array}
27220      */
27221     getSelectedIndexes : function(){
27222         var indexes = [], s = this.selections;
27223         for(var i = 0, len = s.length; i < len; i++){
27224             indexes.push(s[i].nodeIndex);
27225         }
27226         return indexes;
27227     },
27228
27229     /**
27230      * Clear all selections
27231      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27232      */
27233     clearSelections : function(suppressEvent){
27234         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27235             this.cmp.elements = this.selections;
27236             this.cmp.removeClass(this.selectedClass);
27237             this.selections = [];
27238             if(!suppressEvent){
27239                 this.fireEvent("selectionchange", this, this.selections);
27240             }
27241         }
27242     },
27243
27244     /**
27245      * Returns true if the passed node is selected
27246      * @param {HTMLElement/Number} node The node or node index
27247      * @return {Boolean}
27248      */
27249     isSelected : function(node){
27250         var s = this.selections;
27251         if(s.length < 1){
27252             return false;
27253         }
27254         node = this.getNode(node);
27255         return s.indexOf(node) !== -1;
27256     },
27257
27258     /**
27259      * Selects nodes.
27260      * @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
27261      * @param {Boolean} keepExisting (optional) true to keep existing selections
27262      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27263      */
27264     select : function(nodeInfo, keepExisting, suppressEvent){
27265         if(nodeInfo instanceof Array){
27266             if(!keepExisting){
27267                 this.clearSelections(true);
27268             }
27269             for(var i = 0, len = nodeInfo.length; i < len; i++){
27270                 this.select(nodeInfo[i], true, true);
27271             }
27272             return;
27273         } 
27274         var node = this.getNode(nodeInfo);
27275         if(!node || this.isSelected(node)){
27276             return; // already selected.
27277         }
27278         if(!keepExisting){
27279             this.clearSelections(true);
27280         }
27281         
27282         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27283             Roo.fly(node).addClass(this.selectedClass);
27284             this.selections.push(node);
27285             if(!suppressEvent){
27286                 this.fireEvent("selectionchange", this, this.selections);
27287             }
27288         }
27289         
27290         
27291     },
27292       /**
27293      * Unselects nodes.
27294      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node, id of a template node or an array of any of those to select
27295      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27296      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27297      */
27298     unselect : function(nodeInfo, keepExisting, suppressEvent)
27299     {
27300         if(nodeInfo instanceof Array){
27301             Roo.each(this.selections, function(s) {
27302                 this.unselect(s, nodeInfo);
27303             }, this);
27304             return;
27305         }
27306         var node = this.getNode(nodeInfo);
27307         if(!node || !this.isSelected(node)){
27308             //Roo.log("not selected");
27309             return; // not selected.
27310         }
27311         // fireevent???
27312         var ns = [];
27313         Roo.each(this.selections, function(s) {
27314             if (s == node ) {
27315                 Roo.fly(node).removeClass(this.selectedClass);
27316
27317                 return;
27318             }
27319             ns.push(s);
27320         },this);
27321         
27322         this.selections= ns;
27323         this.fireEvent("selectionchange", this, this.selections);
27324     },
27325
27326     /**
27327      * Gets a template node.
27328      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27329      * @return {HTMLElement} The node or null if it wasn't found
27330      */
27331     getNode : function(nodeInfo){
27332         if(typeof nodeInfo == "string"){
27333             return document.getElementById(nodeInfo);
27334         }else if(typeof nodeInfo == "number"){
27335             return this.nodes[nodeInfo];
27336         }
27337         return nodeInfo;
27338     },
27339
27340     /**
27341      * Gets a range template nodes.
27342      * @param {Number} startIndex
27343      * @param {Number} endIndex
27344      * @return {Array} An array of nodes
27345      */
27346     getNodes : function(start, end){
27347         var ns = this.nodes;
27348         start = start || 0;
27349         end = typeof end == "undefined" ? ns.length - 1 : end;
27350         var nodes = [];
27351         if(start <= end){
27352             for(var i = start; i <= end; i++){
27353                 nodes.push(ns[i]);
27354             }
27355         } else{
27356             for(var i = start; i >= end; i--){
27357                 nodes.push(ns[i]);
27358             }
27359         }
27360         return nodes;
27361     },
27362
27363     /**
27364      * Finds the index of the passed node
27365      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27366      * @return {Number} The index of the node or -1
27367      */
27368     indexOf : function(node){
27369         node = this.getNode(node);
27370         if(typeof node.nodeIndex == "number"){
27371             return node.nodeIndex;
27372         }
27373         var ns = this.nodes;
27374         for(var i = 0, len = ns.length; i < len; i++){
27375             if(ns[i] == node){
27376                 return i;
27377             }
27378         }
27379         return -1;
27380     }
27381 });
27382 /*
27383  * Based on:
27384  * Ext JS Library 1.1.1
27385  * Copyright(c) 2006-2007, Ext JS, LLC.
27386  *
27387  * Originally Released Under LGPL - original licence link has changed is not relivant.
27388  *
27389  * Fork - LGPL
27390  * <script type="text/javascript">
27391  */
27392
27393 /**
27394  * @class Roo.JsonView
27395  * @extends Roo.View
27396  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27397 <pre><code>
27398 var view = new Roo.JsonView({
27399     container: "my-element",
27400     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27401     multiSelect: true, 
27402     jsonRoot: "data" 
27403 });
27404
27405 // listen for node click?
27406 view.on("click", function(vw, index, node, e){
27407     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27408 });
27409
27410 // direct load of JSON data
27411 view.load("foobar.php");
27412
27413 // Example from my blog list
27414 var tpl = new Roo.Template(
27415     '&lt;div class="entry"&gt;' +
27416     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27417     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27418     "&lt;/div&gt;&lt;hr /&gt;"
27419 );
27420
27421 var moreView = new Roo.JsonView({
27422     container :  "entry-list", 
27423     template : tpl,
27424     jsonRoot: "posts"
27425 });
27426 moreView.on("beforerender", this.sortEntries, this);
27427 moreView.load({
27428     url: "/blog/get-posts.php",
27429     params: "allposts=true",
27430     text: "Loading Blog Entries..."
27431 });
27432 </code></pre>
27433
27434 * Note: old code is supported with arguments : (container, template, config)
27435
27436
27437  * @constructor
27438  * Create a new JsonView
27439  * 
27440  * @param {Object} config The config object
27441  * 
27442  */
27443 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27444     
27445     
27446     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27447
27448     var um = this.el.getUpdateManager();
27449     um.setRenderer(this);
27450     um.on("update", this.onLoad, this);
27451     um.on("failure", this.onLoadException, this);
27452
27453     /**
27454      * @event beforerender
27455      * Fires before rendering of the downloaded JSON data.
27456      * @param {Roo.JsonView} this
27457      * @param {Object} data The JSON data loaded
27458      */
27459     /**
27460      * @event load
27461      * Fires when data is loaded.
27462      * @param {Roo.JsonView} this
27463      * @param {Object} data The JSON data loaded
27464      * @param {Object} response The raw Connect response object
27465      */
27466     /**
27467      * @event loadexception
27468      * Fires when loading fails.
27469      * @param {Roo.JsonView} this
27470      * @param {Object} response The raw Connect response object
27471      */
27472     this.addEvents({
27473         'beforerender' : true,
27474         'load' : true,
27475         'loadexception' : true
27476     });
27477 };
27478 Roo.extend(Roo.JsonView, Roo.View, {
27479     /**
27480      * @type {String} The root property in the loaded JSON object that contains the data
27481      */
27482     jsonRoot : "",
27483
27484     /**
27485      * Refreshes the view.
27486      */
27487     refresh : function(){
27488         this.clearSelections();
27489         this.el.update("");
27490         var html = [];
27491         var o = this.jsonData;
27492         if(o && o.length > 0){
27493             for(var i = 0, len = o.length; i < len; i++){
27494                 var data = this.prepareData(o[i], i, o);
27495                 html[html.length] = this.tpl.apply(data);
27496             }
27497         }else{
27498             html.push(this.emptyText);
27499         }
27500         this.el.update(html.join(""));
27501         this.nodes = this.el.dom.childNodes;
27502         this.updateIndexes(0);
27503     },
27504
27505     /**
27506      * 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.
27507      * @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:
27508      <pre><code>
27509      view.load({
27510          url: "your-url.php",
27511          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27512          callback: yourFunction,
27513          scope: yourObject, //(optional scope)
27514          discardUrl: false,
27515          nocache: false,
27516          text: "Loading...",
27517          timeout: 30,
27518          scripts: false
27519      });
27520      </code></pre>
27521      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27522      * 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.
27523      * @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}
27524      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27525      * @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.
27526      */
27527     load : function(){
27528         var um = this.el.getUpdateManager();
27529         um.update.apply(um, arguments);
27530     },
27531
27532     // note - render is a standard framework call...
27533     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27534     render : function(el, response){
27535         
27536         this.clearSelections();
27537         this.el.update("");
27538         var o;
27539         try{
27540             if (response != '') {
27541                 o = Roo.util.JSON.decode(response.responseText);
27542                 if(this.jsonRoot){
27543                     
27544                     o = o[this.jsonRoot];
27545                 }
27546             }
27547         } catch(e){
27548         }
27549         /**
27550          * The current JSON data or null
27551          */
27552         this.jsonData = o;
27553         this.beforeRender();
27554         this.refresh();
27555     },
27556
27557 /**
27558  * Get the number of records in the current JSON dataset
27559  * @return {Number}
27560  */
27561     getCount : function(){
27562         return this.jsonData ? this.jsonData.length : 0;
27563     },
27564
27565 /**
27566  * Returns the JSON object for the specified node(s)
27567  * @param {HTMLElement/Array} node The node or an array of nodes
27568  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27569  * you get the JSON object for the node
27570  */
27571     getNodeData : function(node){
27572         if(node instanceof Array){
27573             var data = [];
27574             for(var i = 0, len = node.length; i < len; i++){
27575                 data.push(this.getNodeData(node[i]));
27576             }
27577             return data;
27578         }
27579         return this.jsonData[this.indexOf(node)] || null;
27580     },
27581
27582     beforeRender : function(){
27583         this.snapshot = this.jsonData;
27584         if(this.sortInfo){
27585             this.sort.apply(this, this.sortInfo);
27586         }
27587         this.fireEvent("beforerender", this, this.jsonData);
27588     },
27589
27590     onLoad : function(el, o){
27591         this.fireEvent("load", this, this.jsonData, o);
27592     },
27593
27594     onLoadException : function(el, o){
27595         this.fireEvent("loadexception", this, o);
27596     },
27597
27598 /**
27599  * Filter the data by a specific property.
27600  * @param {String} property A property on your JSON objects
27601  * @param {String/RegExp} value Either string that the property values
27602  * should start with, or a RegExp to test against the property
27603  */
27604     filter : function(property, value){
27605         if(this.jsonData){
27606             var data = [];
27607             var ss = this.snapshot;
27608             if(typeof value == "string"){
27609                 var vlen = value.length;
27610                 if(vlen == 0){
27611                     this.clearFilter();
27612                     return;
27613                 }
27614                 value = value.toLowerCase();
27615                 for(var i = 0, len = ss.length; i < len; i++){
27616                     var o = ss[i];
27617                     if(o[property].substr(0, vlen).toLowerCase() == value){
27618                         data.push(o);
27619                     }
27620                 }
27621             } else if(value.exec){ // regex?
27622                 for(var i = 0, len = ss.length; i < len; i++){
27623                     var o = ss[i];
27624                     if(value.test(o[property])){
27625                         data.push(o);
27626                     }
27627                 }
27628             } else{
27629                 return;
27630             }
27631             this.jsonData = data;
27632             this.refresh();
27633         }
27634     },
27635
27636 /**
27637  * Filter by a function. The passed function will be called with each
27638  * object in the current dataset. If the function returns true the value is kept,
27639  * otherwise it is filtered.
27640  * @param {Function} fn
27641  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27642  */
27643     filterBy : function(fn, scope){
27644         if(this.jsonData){
27645             var data = [];
27646             var ss = this.snapshot;
27647             for(var i = 0, len = ss.length; i < len; i++){
27648                 var o = ss[i];
27649                 if(fn.call(scope || this, o)){
27650                     data.push(o);
27651                 }
27652             }
27653             this.jsonData = data;
27654             this.refresh();
27655         }
27656     },
27657
27658 /**
27659  * Clears the current filter.
27660  */
27661     clearFilter : function(){
27662         if(this.snapshot && this.jsonData != this.snapshot){
27663             this.jsonData = this.snapshot;
27664             this.refresh();
27665         }
27666     },
27667
27668
27669 /**
27670  * Sorts the data for this view and refreshes it.
27671  * @param {String} property A property on your JSON objects to sort on
27672  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27673  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27674  */
27675     sort : function(property, dir, sortType){
27676         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27677         if(this.jsonData){
27678             var p = property;
27679             var dsc = dir && dir.toLowerCase() == "desc";
27680             var f = function(o1, o2){
27681                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27682                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27683                 ;
27684                 if(v1 < v2){
27685                     return dsc ? +1 : -1;
27686                 } else if(v1 > v2){
27687                     return dsc ? -1 : +1;
27688                 } else{
27689                     return 0;
27690                 }
27691             };
27692             this.jsonData.sort(f);
27693             this.refresh();
27694             if(this.jsonData != this.snapshot){
27695                 this.snapshot.sort(f);
27696             }
27697         }
27698     }
27699 });/*
27700  * Based on:
27701  * Ext JS Library 1.1.1
27702  * Copyright(c) 2006-2007, Ext JS, LLC.
27703  *
27704  * Originally Released Under LGPL - original licence link has changed is not relivant.
27705  *
27706  * Fork - LGPL
27707  * <script type="text/javascript">
27708  */
27709  
27710
27711 /**
27712  * @class Roo.ColorPalette
27713  * @extends Roo.Component
27714  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27715  * Here's an example of typical usage:
27716  * <pre><code>
27717 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27718 cp.render('my-div');
27719
27720 cp.on('select', function(palette, selColor){
27721     // do something with selColor
27722 });
27723 </code></pre>
27724  * @constructor
27725  * Create a new ColorPalette
27726  * @param {Object} config The config object
27727  */
27728 Roo.ColorPalette = function(config){
27729     Roo.ColorPalette.superclass.constructor.call(this, config);
27730     this.addEvents({
27731         /**
27732              * @event select
27733              * Fires when a color is selected
27734              * @param {ColorPalette} this
27735              * @param {String} color The 6-digit color hex code (without the # symbol)
27736              */
27737         select: true
27738     });
27739
27740     if(this.handler){
27741         this.on("select", this.handler, this.scope, true);
27742     }
27743 };
27744 Roo.extend(Roo.ColorPalette, Roo.Component, {
27745     /**
27746      * @cfg {String} itemCls
27747      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27748      */
27749     itemCls : "x-color-palette",
27750     /**
27751      * @cfg {String} value
27752      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27753      * the hex codes are case-sensitive.
27754      */
27755     value : null,
27756     clickEvent:'click',
27757     // private
27758     ctype: "Roo.ColorPalette",
27759
27760     /**
27761      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27762      */
27763     allowReselect : false,
27764
27765     /**
27766      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27767      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27768      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27769      * of colors with the width setting until the box is symmetrical.</p>
27770      * <p>You can override individual colors if needed:</p>
27771      * <pre><code>
27772 var cp = new Roo.ColorPalette();
27773 cp.colors[0] = "FF0000";  // change the first box to red
27774 </code></pre>
27775
27776 Or you can provide a custom array of your own for complete control:
27777 <pre><code>
27778 var cp = new Roo.ColorPalette();
27779 cp.colors = ["000000", "993300", "333300"];
27780 </code></pre>
27781      * @type Array
27782      */
27783     colors : [
27784         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27785         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27786         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27787         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27788         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27789     ],
27790
27791     // private
27792     onRender : function(container, position){
27793         var t = new Roo.MasterTemplate(
27794             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27795         );
27796         var c = this.colors;
27797         for(var i = 0, len = c.length; i < len; i++){
27798             t.add([c[i]]);
27799         }
27800         var el = document.createElement("div");
27801         el.className = this.itemCls;
27802         t.overwrite(el);
27803         container.dom.insertBefore(el, position);
27804         this.el = Roo.get(el);
27805         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27806         if(this.clickEvent != 'click'){
27807             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27808         }
27809     },
27810
27811     // private
27812     afterRender : function(){
27813         Roo.ColorPalette.superclass.afterRender.call(this);
27814         if(this.value){
27815             var s = this.value;
27816             this.value = null;
27817             this.select(s);
27818         }
27819     },
27820
27821     // private
27822     handleClick : function(e, t){
27823         e.preventDefault();
27824         if(!this.disabled){
27825             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27826             this.select(c.toUpperCase());
27827         }
27828     },
27829
27830     /**
27831      * Selects the specified color in the palette (fires the select event)
27832      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27833      */
27834     select : function(color){
27835         color = color.replace("#", "");
27836         if(color != this.value || this.allowReselect){
27837             var el = this.el;
27838             if(this.value){
27839                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27840             }
27841             el.child("a.color-"+color).addClass("x-color-palette-sel");
27842             this.value = color;
27843             this.fireEvent("select", this, color);
27844         }
27845     }
27846 });/*
27847  * Based on:
27848  * Ext JS Library 1.1.1
27849  * Copyright(c) 2006-2007, Ext JS, LLC.
27850  *
27851  * Originally Released Under LGPL - original licence link has changed is not relivant.
27852  *
27853  * Fork - LGPL
27854  * <script type="text/javascript">
27855  */
27856  
27857 /**
27858  * @class Roo.DatePicker
27859  * @extends Roo.Component
27860  * Simple date picker class.
27861  * @constructor
27862  * Create a new DatePicker
27863  * @param {Object} config The config object
27864  */
27865 Roo.DatePicker = function(config){
27866     Roo.DatePicker.superclass.constructor.call(this, config);
27867
27868     this.value = config && config.value ?
27869                  config.value.clearTime() : new Date().clearTime();
27870
27871     this.addEvents({
27872         /**
27873              * @event select
27874              * Fires when a date is selected
27875              * @param {DatePicker} this
27876              * @param {Date} date The selected date
27877              */
27878         'select': true,
27879         /**
27880              * @event monthchange
27881              * Fires when the displayed month changes 
27882              * @param {DatePicker} this
27883              * @param {Date} date The selected month
27884              */
27885         'monthchange': true
27886     });
27887
27888     if(this.handler){
27889         this.on("select", this.handler,  this.scope || this);
27890     }
27891     // build the disabledDatesRE
27892     if(!this.disabledDatesRE && this.disabledDates){
27893         var dd = this.disabledDates;
27894         var re = "(?:";
27895         for(var i = 0; i < dd.length; i++){
27896             re += dd[i];
27897             if(i != dd.length-1) {
27898                 re += "|";
27899             }
27900         }
27901         this.disabledDatesRE = new RegExp(re + ")");
27902     }
27903 };
27904
27905 Roo.extend(Roo.DatePicker, Roo.Component, {
27906     /**
27907      * @cfg {String} todayText
27908      * The text to display on the button that selects the current date (defaults to "Today")
27909      */
27910     todayText : "Today",
27911     /**
27912      * @cfg {String} okText
27913      * The text to display on the ok button
27914      */
27915     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27916     /**
27917      * @cfg {String} cancelText
27918      * The text to display on the cancel button
27919      */
27920     cancelText : "Cancel",
27921     /**
27922      * @cfg {String} todayTip
27923      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27924      */
27925     todayTip : "{0} (Spacebar)",
27926     /**
27927      * @cfg {Date} minDate
27928      * Minimum allowable date (JavaScript date object, defaults to null)
27929      */
27930     minDate : null,
27931     /**
27932      * @cfg {Date} maxDate
27933      * Maximum allowable date (JavaScript date object, defaults to null)
27934      */
27935     maxDate : null,
27936     /**
27937      * @cfg {String} minText
27938      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27939      */
27940     minText : "This date is before the minimum date",
27941     /**
27942      * @cfg {String} maxText
27943      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27944      */
27945     maxText : "This date is after the maximum date",
27946     /**
27947      * @cfg {String} format
27948      * The default date format string which can be overriden for localization support.  The format must be
27949      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27950      */
27951     format : "m/d/y",
27952     /**
27953      * @cfg {Array} disabledDays
27954      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27955      */
27956     disabledDays : null,
27957     /**
27958      * @cfg {String} disabledDaysText
27959      * The tooltip to display when the date falls on a disabled day (defaults to "")
27960      */
27961     disabledDaysText : "",
27962     /**
27963      * @cfg {RegExp} disabledDatesRE
27964      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27965      */
27966     disabledDatesRE : null,
27967     /**
27968      * @cfg {String} disabledDatesText
27969      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27970      */
27971     disabledDatesText : "",
27972     /**
27973      * @cfg {Boolean} constrainToViewport
27974      * True to constrain the date picker to the viewport (defaults to true)
27975      */
27976     constrainToViewport : true,
27977     /**
27978      * @cfg {Array} monthNames
27979      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27980      */
27981     monthNames : Date.monthNames,
27982     /**
27983      * @cfg {Array} dayNames
27984      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27985      */
27986     dayNames : Date.dayNames,
27987     /**
27988      * @cfg {String} nextText
27989      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27990      */
27991     nextText: 'Next Month (Control+Right)',
27992     /**
27993      * @cfg {String} prevText
27994      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27995      */
27996     prevText: 'Previous Month (Control+Left)',
27997     /**
27998      * @cfg {String} monthYearText
27999      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
28000      */
28001     monthYearText: 'Choose a month (Control+Up/Down to move years)',
28002     /**
28003      * @cfg {Number} startDay
28004      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
28005      */
28006     startDay : 0,
28007     /**
28008      * @cfg {Bool} showClear
28009      * Show a clear button (usefull for date form elements that can be blank.)
28010      */
28011     
28012     showClear: false,
28013     
28014     /**
28015      * Sets the value of the date field
28016      * @param {Date} value The date to set
28017      */
28018     setValue : function(value){
28019         var old = this.value;
28020         
28021         if (typeof(value) == 'string') {
28022          
28023             value = Date.parseDate(value, this.format);
28024         }
28025         if (!value) {
28026             value = new Date();
28027         }
28028         
28029         this.value = value.clearTime(true);
28030         if(this.el){
28031             this.update(this.value);
28032         }
28033     },
28034
28035     /**
28036      * Gets the current selected value of the date field
28037      * @return {Date} The selected date
28038      */
28039     getValue : function(){
28040         return this.value;
28041     },
28042
28043     // private
28044     focus : function(){
28045         if(this.el){
28046             this.update(this.activeDate);
28047         }
28048     },
28049
28050     // privateval
28051     onRender : function(container, position){
28052         
28053         var m = [
28054              '<table cellspacing="0">',
28055                 '<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>',
28056                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
28057         var dn = this.dayNames;
28058         for(var i = 0; i < 7; i++){
28059             var d = this.startDay+i;
28060             if(d > 6){
28061                 d = d-7;
28062             }
28063             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28064         }
28065         m[m.length] = "</tr></thead><tbody><tr>";
28066         for(var i = 0; i < 42; i++) {
28067             if(i % 7 == 0 && i != 0){
28068                 m[m.length] = "</tr><tr>";
28069             }
28070             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28071         }
28072         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28073             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28074
28075         var el = document.createElement("div");
28076         el.className = "x-date-picker";
28077         el.innerHTML = m.join("");
28078
28079         container.dom.insertBefore(el, position);
28080
28081         this.el = Roo.get(el);
28082         this.eventEl = Roo.get(el.firstChild);
28083
28084         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28085             handler: this.showPrevMonth,
28086             scope: this,
28087             preventDefault:true,
28088             stopDefault:true
28089         });
28090
28091         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28092             handler: this.showNextMonth,
28093             scope: this,
28094             preventDefault:true,
28095             stopDefault:true
28096         });
28097
28098         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28099
28100         this.monthPicker = this.el.down('div.x-date-mp');
28101         this.monthPicker.enableDisplayMode('block');
28102         
28103         var kn = new Roo.KeyNav(this.eventEl, {
28104             "left" : function(e){
28105                 e.ctrlKey ?
28106                     this.showPrevMonth() :
28107                     this.update(this.activeDate.add("d", -1));
28108             },
28109
28110             "right" : function(e){
28111                 e.ctrlKey ?
28112                     this.showNextMonth() :
28113                     this.update(this.activeDate.add("d", 1));
28114             },
28115
28116             "up" : function(e){
28117                 e.ctrlKey ?
28118                     this.showNextYear() :
28119                     this.update(this.activeDate.add("d", -7));
28120             },
28121
28122             "down" : function(e){
28123                 e.ctrlKey ?
28124                     this.showPrevYear() :
28125                     this.update(this.activeDate.add("d", 7));
28126             },
28127
28128             "pageUp" : function(e){
28129                 this.showNextMonth();
28130             },
28131
28132             "pageDown" : function(e){
28133                 this.showPrevMonth();
28134             },
28135
28136             "enter" : function(e){
28137                 e.stopPropagation();
28138                 return true;
28139             },
28140
28141             scope : this
28142         });
28143
28144         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28145
28146         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28147
28148         this.el.unselectable();
28149         
28150         this.cells = this.el.select("table.x-date-inner tbody td");
28151         this.textNodes = this.el.query("table.x-date-inner tbody span");
28152
28153         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28154             text: "&#160;",
28155             tooltip: this.monthYearText
28156         });
28157
28158         this.mbtn.on('click', this.showMonthPicker, this);
28159         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28160
28161
28162         var today = (new Date()).dateFormat(this.format);
28163         
28164         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28165         if (this.showClear) {
28166             baseTb.add( new Roo.Toolbar.Fill());
28167         }
28168         baseTb.add({
28169             text: String.format(this.todayText, today),
28170             tooltip: String.format(this.todayTip, today),
28171             handler: this.selectToday,
28172             scope: this
28173         });
28174         
28175         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28176             
28177         //});
28178         if (this.showClear) {
28179             
28180             baseTb.add( new Roo.Toolbar.Fill());
28181             baseTb.add({
28182                 text: '&#160;',
28183                 cls: 'x-btn-icon x-btn-clear',
28184                 handler: function() {
28185                     //this.value = '';
28186                     this.fireEvent("select", this, '');
28187                 },
28188                 scope: this
28189             });
28190         }
28191         
28192         
28193         if(Roo.isIE){
28194             this.el.repaint();
28195         }
28196         this.update(this.value);
28197     },
28198
28199     createMonthPicker : function(){
28200         if(!this.monthPicker.dom.firstChild){
28201             var buf = ['<table border="0" cellspacing="0">'];
28202             for(var i = 0; i < 6; i++){
28203                 buf.push(
28204                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28205                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28206                     i == 0 ?
28207                     '<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>' :
28208                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28209                 );
28210             }
28211             buf.push(
28212                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28213                     this.okText,
28214                     '</button><button type="button" class="x-date-mp-cancel">',
28215                     this.cancelText,
28216                     '</button></td></tr>',
28217                 '</table>'
28218             );
28219             this.monthPicker.update(buf.join(''));
28220             this.monthPicker.on('click', this.onMonthClick, this);
28221             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28222
28223             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28224             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28225
28226             this.mpMonths.each(function(m, a, i){
28227                 i += 1;
28228                 if((i%2) == 0){
28229                     m.dom.xmonth = 5 + Math.round(i * .5);
28230                 }else{
28231                     m.dom.xmonth = Math.round((i-1) * .5);
28232                 }
28233             });
28234         }
28235     },
28236
28237     showMonthPicker : function(){
28238         this.createMonthPicker();
28239         var size = this.el.getSize();
28240         this.monthPicker.setSize(size);
28241         this.monthPicker.child('table').setSize(size);
28242
28243         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28244         this.updateMPMonth(this.mpSelMonth);
28245         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28246         this.updateMPYear(this.mpSelYear);
28247
28248         this.monthPicker.slideIn('t', {duration:.2});
28249     },
28250
28251     updateMPYear : function(y){
28252         this.mpyear = y;
28253         var ys = this.mpYears.elements;
28254         for(var i = 1; i <= 10; i++){
28255             var td = ys[i-1], y2;
28256             if((i%2) == 0){
28257                 y2 = y + Math.round(i * .5);
28258                 td.firstChild.innerHTML = y2;
28259                 td.xyear = y2;
28260             }else{
28261                 y2 = y - (5-Math.round(i * .5));
28262                 td.firstChild.innerHTML = y2;
28263                 td.xyear = y2;
28264             }
28265             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28266         }
28267     },
28268
28269     updateMPMonth : function(sm){
28270         this.mpMonths.each(function(m, a, i){
28271             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28272         });
28273     },
28274
28275     selectMPMonth: function(m){
28276         
28277     },
28278
28279     onMonthClick : function(e, t){
28280         e.stopEvent();
28281         var el = new Roo.Element(t), pn;
28282         if(el.is('button.x-date-mp-cancel')){
28283             this.hideMonthPicker();
28284         }
28285         else if(el.is('button.x-date-mp-ok')){
28286             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28287             this.hideMonthPicker();
28288         }
28289         else if(pn = el.up('td.x-date-mp-month', 2)){
28290             this.mpMonths.removeClass('x-date-mp-sel');
28291             pn.addClass('x-date-mp-sel');
28292             this.mpSelMonth = pn.dom.xmonth;
28293         }
28294         else if(pn = el.up('td.x-date-mp-year', 2)){
28295             this.mpYears.removeClass('x-date-mp-sel');
28296             pn.addClass('x-date-mp-sel');
28297             this.mpSelYear = pn.dom.xyear;
28298         }
28299         else if(el.is('a.x-date-mp-prev')){
28300             this.updateMPYear(this.mpyear-10);
28301         }
28302         else if(el.is('a.x-date-mp-next')){
28303             this.updateMPYear(this.mpyear+10);
28304         }
28305     },
28306
28307     onMonthDblClick : function(e, t){
28308         e.stopEvent();
28309         var el = new Roo.Element(t), pn;
28310         if(pn = el.up('td.x-date-mp-month', 2)){
28311             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28312             this.hideMonthPicker();
28313         }
28314         else if(pn = el.up('td.x-date-mp-year', 2)){
28315             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28316             this.hideMonthPicker();
28317         }
28318     },
28319
28320     hideMonthPicker : function(disableAnim){
28321         if(this.monthPicker){
28322             if(disableAnim === true){
28323                 this.monthPicker.hide();
28324             }else{
28325                 this.monthPicker.slideOut('t', {duration:.2});
28326             }
28327         }
28328     },
28329
28330     // private
28331     showPrevMonth : function(e){
28332         this.update(this.activeDate.add("mo", -1));
28333     },
28334
28335     // private
28336     showNextMonth : function(e){
28337         this.update(this.activeDate.add("mo", 1));
28338     },
28339
28340     // private
28341     showPrevYear : function(){
28342         this.update(this.activeDate.add("y", -1));
28343     },
28344
28345     // private
28346     showNextYear : function(){
28347         this.update(this.activeDate.add("y", 1));
28348     },
28349
28350     // private
28351     handleMouseWheel : function(e){
28352         var delta = e.getWheelDelta();
28353         if(delta > 0){
28354             this.showPrevMonth();
28355             e.stopEvent();
28356         } else if(delta < 0){
28357             this.showNextMonth();
28358             e.stopEvent();
28359         }
28360     },
28361
28362     // private
28363     handleDateClick : function(e, t){
28364         e.stopEvent();
28365         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28366             this.setValue(new Date(t.dateValue));
28367             this.fireEvent("select", this, this.value);
28368         }
28369     },
28370
28371     // private
28372     selectToday : function(){
28373         this.setValue(new Date().clearTime());
28374         this.fireEvent("select", this, this.value);
28375     },
28376
28377     // private
28378     update : function(date)
28379     {
28380         var vd = this.activeDate;
28381         this.activeDate = date;
28382         if(vd && this.el){
28383             var t = date.getTime();
28384             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28385                 this.cells.removeClass("x-date-selected");
28386                 this.cells.each(function(c){
28387                    if(c.dom.firstChild.dateValue == t){
28388                        c.addClass("x-date-selected");
28389                        setTimeout(function(){
28390                             try{c.dom.firstChild.focus();}catch(e){}
28391                        }, 50);
28392                        return false;
28393                    }
28394                 });
28395                 return;
28396             }
28397         }
28398         
28399         var days = date.getDaysInMonth();
28400         var firstOfMonth = date.getFirstDateOfMonth();
28401         var startingPos = firstOfMonth.getDay()-this.startDay;
28402
28403         if(startingPos <= this.startDay){
28404             startingPos += 7;
28405         }
28406
28407         var pm = date.add("mo", -1);
28408         var prevStart = pm.getDaysInMonth()-startingPos;
28409
28410         var cells = this.cells.elements;
28411         var textEls = this.textNodes;
28412         days += startingPos;
28413
28414         // convert everything to numbers so it's fast
28415         var day = 86400000;
28416         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28417         var today = new Date().clearTime().getTime();
28418         var sel = date.clearTime().getTime();
28419         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28420         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28421         var ddMatch = this.disabledDatesRE;
28422         var ddText = this.disabledDatesText;
28423         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28424         var ddaysText = this.disabledDaysText;
28425         var format = this.format;
28426
28427         var setCellClass = function(cal, cell){
28428             cell.title = "";
28429             var t = d.getTime();
28430             cell.firstChild.dateValue = t;
28431             if(t == today){
28432                 cell.className += " x-date-today";
28433                 cell.title = cal.todayText;
28434             }
28435             if(t == sel){
28436                 cell.className += " x-date-selected";
28437                 setTimeout(function(){
28438                     try{cell.firstChild.focus();}catch(e){}
28439                 }, 50);
28440             }
28441             // disabling
28442             if(t < min) {
28443                 cell.className = " x-date-disabled";
28444                 cell.title = cal.minText;
28445                 return;
28446             }
28447             if(t > max) {
28448                 cell.className = " x-date-disabled";
28449                 cell.title = cal.maxText;
28450                 return;
28451             }
28452             if(ddays){
28453                 if(ddays.indexOf(d.getDay()) != -1){
28454                     cell.title = ddaysText;
28455                     cell.className = " x-date-disabled";
28456                 }
28457             }
28458             if(ddMatch && format){
28459                 var fvalue = d.dateFormat(format);
28460                 if(ddMatch.test(fvalue)){
28461                     cell.title = ddText.replace("%0", fvalue);
28462                     cell.className = " x-date-disabled";
28463                 }
28464             }
28465         };
28466
28467         var i = 0;
28468         for(; i < startingPos; i++) {
28469             textEls[i].innerHTML = (++prevStart);
28470             d.setDate(d.getDate()+1);
28471             cells[i].className = "x-date-prevday";
28472             setCellClass(this, cells[i]);
28473         }
28474         for(; i < days; i++){
28475             intDay = i - startingPos + 1;
28476             textEls[i].innerHTML = (intDay);
28477             d.setDate(d.getDate()+1);
28478             cells[i].className = "x-date-active";
28479             setCellClass(this, cells[i]);
28480         }
28481         var extraDays = 0;
28482         for(; i < 42; i++) {
28483              textEls[i].innerHTML = (++extraDays);
28484              d.setDate(d.getDate()+1);
28485              cells[i].className = "x-date-nextday";
28486              setCellClass(this, cells[i]);
28487         }
28488
28489         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28490         this.fireEvent('monthchange', this, date);
28491         
28492         if(!this.internalRender){
28493             var main = this.el.dom.firstChild;
28494             var w = main.offsetWidth;
28495             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28496             Roo.fly(main).setWidth(w);
28497             this.internalRender = true;
28498             // opera does not respect the auto grow header center column
28499             // then, after it gets a width opera refuses to recalculate
28500             // without a second pass
28501             if(Roo.isOpera && !this.secondPass){
28502                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28503                 this.secondPass = true;
28504                 this.update.defer(10, this, [date]);
28505             }
28506         }
28507         
28508         
28509     }
28510 });        /*
28511  * Based on:
28512  * Ext JS Library 1.1.1
28513  * Copyright(c) 2006-2007, Ext JS, LLC.
28514  *
28515  * Originally Released Under LGPL - original licence link has changed is not relivant.
28516  *
28517  * Fork - LGPL
28518  * <script type="text/javascript">
28519  */
28520 /**
28521  * @class Roo.TabPanel
28522  * @extends Roo.util.Observable
28523  * A lightweight tab container.
28524  * <br><br>
28525  * Usage:
28526  * <pre><code>
28527 // basic tabs 1, built from existing content
28528 var tabs = new Roo.TabPanel("tabs1");
28529 tabs.addTab("script", "View Script");
28530 tabs.addTab("markup", "View Markup");
28531 tabs.activate("script");
28532
28533 // more advanced tabs, built from javascript
28534 var jtabs = new Roo.TabPanel("jtabs");
28535 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28536
28537 // set up the UpdateManager
28538 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28539 var updater = tab2.getUpdateManager();
28540 updater.setDefaultUrl("ajax1.htm");
28541 tab2.on('activate', updater.refresh, updater, true);
28542
28543 // Use setUrl for Ajax loading
28544 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28545 tab3.setUrl("ajax2.htm", null, true);
28546
28547 // Disabled tab
28548 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28549 tab4.disable();
28550
28551 jtabs.activate("jtabs-1");
28552  * </code></pre>
28553  * @constructor
28554  * Create a new TabPanel.
28555  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28556  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28557  */
28558 Roo.TabPanel = function(container, config){
28559     /**
28560     * The container element for this TabPanel.
28561     * @type Roo.Element
28562     */
28563     this.el = Roo.get(container, true);
28564     if(config){
28565         if(typeof config == "boolean"){
28566             this.tabPosition = config ? "bottom" : "top";
28567         }else{
28568             Roo.apply(this, config);
28569         }
28570     }
28571     if(this.tabPosition == "bottom"){
28572         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28573         this.el.addClass("x-tabs-bottom");
28574     }
28575     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28576     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28577     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28578     if(Roo.isIE){
28579         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28580     }
28581     if(this.tabPosition != "bottom"){
28582         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28583          * @type Roo.Element
28584          */
28585         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28586         this.el.addClass("x-tabs-top");
28587     }
28588     this.items = [];
28589
28590     this.bodyEl.setStyle("position", "relative");
28591
28592     this.active = null;
28593     this.activateDelegate = this.activate.createDelegate(this);
28594
28595     this.addEvents({
28596         /**
28597          * @event tabchange
28598          * Fires when the active tab changes
28599          * @param {Roo.TabPanel} this
28600          * @param {Roo.TabPanelItem} activePanel The new active tab
28601          */
28602         "tabchange": true,
28603         /**
28604          * @event beforetabchange
28605          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28606          * @param {Roo.TabPanel} this
28607          * @param {Object} e Set cancel to true on this object to cancel the tab change
28608          * @param {Roo.TabPanelItem} tab The tab being changed to
28609          */
28610         "beforetabchange" : true
28611     });
28612
28613     Roo.EventManager.onWindowResize(this.onResize, this);
28614     this.cpad = this.el.getPadding("lr");
28615     this.hiddenCount = 0;
28616
28617
28618     // toolbar on the tabbar support...
28619     if (this.toolbar) {
28620         var tcfg = this.toolbar;
28621         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28622         this.toolbar = new Roo.Toolbar(tcfg);
28623         if (Roo.isSafari) {
28624             var tbl = tcfg.container.child('table', true);
28625             tbl.setAttribute('width', '100%');
28626         }
28627         
28628     }
28629    
28630
28631
28632     Roo.TabPanel.superclass.constructor.call(this);
28633 };
28634
28635 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28636     /*
28637      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28638      */
28639     tabPosition : "top",
28640     /*
28641      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28642      */
28643     currentTabWidth : 0,
28644     /*
28645      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28646      */
28647     minTabWidth : 40,
28648     /*
28649      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28650      */
28651     maxTabWidth : 250,
28652     /*
28653      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28654      */
28655     preferredTabWidth : 175,
28656     /*
28657      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28658      */
28659     resizeTabs : false,
28660     /*
28661      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28662      */
28663     monitorResize : true,
28664     /*
28665      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28666      */
28667     toolbar : false,
28668
28669     /**
28670      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28671      * @param {String} id The id of the div to use <b>or create</b>
28672      * @param {String} text The text for the tab
28673      * @param {String} content (optional) Content to put in the TabPanelItem body
28674      * @param {Boolean} closable (optional) True to create a close icon on the tab
28675      * @return {Roo.TabPanelItem} The created TabPanelItem
28676      */
28677     addTab : function(id, text, content, closable){
28678         var item = new Roo.TabPanelItem(this, id, text, closable);
28679         this.addTabItem(item);
28680         if(content){
28681             item.setContent(content);
28682         }
28683         return item;
28684     },
28685
28686     /**
28687      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28688      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28689      * @return {Roo.TabPanelItem}
28690      */
28691     getTab : function(id){
28692         return this.items[id];
28693     },
28694
28695     /**
28696      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28697      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28698      */
28699     hideTab : function(id){
28700         var t = this.items[id];
28701         if(!t.isHidden()){
28702            t.setHidden(true);
28703            this.hiddenCount++;
28704            this.autoSizeTabs();
28705         }
28706     },
28707
28708     /**
28709      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28710      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28711      */
28712     unhideTab : function(id){
28713         var t = this.items[id];
28714         if(t.isHidden()){
28715            t.setHidden(false);
28716            this.hiddenCount--;
28717            this.autoSizeTabs();
28718         }
28719     },
28720
28721     /**
28722      * Adds an existing {@link Roo.TabPanelItem}.
28723      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28724      */
28725     addTabItem : function(item){
28726         this.items[item.id] = item;
28727         this.items.push(item);
28728         if(this.resizeTabs){
28729            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28730            this.autoSizeTabs();
28731         }else{
28732             item.autoSize();
28733         }
28734     },
28735
28736     /**
28737      * Removes a {@link Roo.TabPanelItem}.
28738      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28739      */
28740     removeTab : function(id){
28741         var items = this.items;
28742         var tab = items[id];
28743         if(!tab) { return; }
28744         var index = items.indexOf(tab);
28745         if(this.active == tab && items.length > 1){
28746             var newTab = this.getNextAvailable(index);
28747             if(newTab) {
28748                 newTab.activate();
28749             }
28750         }
28751         this.stripEl.dom.removeChild(tab.pnode.dom);
28752         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28753             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28754         }
28755         items.splice(index, 1);
28756         delete this.items[tab.id];
28757         tab.fireEvent("close", tab);
28758         tab.purgeListeners();
28759         this.autoSizeTabs();
28760     },
28761
28762     getNextAvailable : function(start){
28763         var items = this.items;
28764         var index = start;
28765         // look for a next tab that will slide over to
28766         // replace the one being removed
28767         while(index < items.length){
28768             var item = items[++index];
28769             if(item && !item.isHidden()){
28770                 return item;
28771             }
28772         }
28773         // if one isn't found select the previous tab (on the left)
28774         index = start;
28775         while(index >= 0){
28776             var item = items[--index];
28777             if(item && !item.isHidden()){
28778                 return item;
28779             }
28780         }
28781         return null;
28782     },
28783
28784     /**
28785      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28786      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28787      */
28788     disableTab : function(id){
28789         var tab = this.items[id];
28790         if(tab && this.active != tab){
28791             tab.disable();
28792         }
28793     },
28794
28795     /**
28796      * Enables a {@link Roo.TabPanelItem} that is disabled.
28797      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28798      */
28799     enableTab : function(id){
28800         var tab = this.items[id];
28801         tab.enable();
28802     },
28803
28804     /**
28805      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28806      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28807      * @return {Roo.TabPanelItem} The TabPanelItem.
28808      */
28809     activate : function(id){
28810         var tab = this.items[id];
28811         if(!tab){
28812             return null;
28813         }
28814         if(tab == this.active || tab.disabled){
28815             return tab;
28816         }
28817         var e = {};
28818         this.fireEvent("beforetabchange", this, e, tab);
28819         if(e.cancel !== true && !tab.disabled){
28820             if(this.active){
28821                 this.active.hide();
28822             }
28823             this.active = this.items[id];
28824             this.active.show();
28825             this.fireEvent("tabchange", this, this.active);
28826         }
28827         return tab;
28828     },
28829
28830     /**
28831      * Gets the active {@link Roo.TabPanelItem}.
28832      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28833      */
28834     getActiveTab : function(){
28835         return this.active;
28836     },
28837
28838     /**
28839      * Updates the tab body element to fit the height of the container element
28840      * for overflow scrolling
28841      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28842      */
28843     syncHeight : function(targetHeight){
28844         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28845         var bm = this.bodyEl.getMargins();
28846         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28847         this.bodyEl.setHeight(newHeight);
28848         return newHeight;
28849     },
28850
28851     onResize : function(){
28852         if(this.monitorResize){
28853             this.autoSizeTabs();
28854         }
28855     },
28856
28857     /**
28858      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28859      */
28860     beginUpdate : function(){
28861         this.updating = true;
28862     },
28863
28864     /**
28865      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28866      */
28867     endUpdate : function(){
28868         this.updating = false;
28869         this.autoSizeTabs();
28870     },
28871
28872     /**
28873      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28874      */
28875     autoSizeTabs : function(){
28876         var count = this.items.length;
28877         var vcount = count - this.hiddenCount;
28878         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28879             return;
28880         }
28881         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28882         var availWidth = Math.floor(w / vcount);
28883         var b = this.stripBody;
28884         if(b.getWidth() > w){
28885             var tabs = this.items;
28886             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28887             if(availWidth < this.minTabWidth){
28888                 /*if(!this.sleft){    // incomplete scrolling code
28889                     this.createScrollButtons();
28890                 }
28891                 this.showScroll();
28892                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28893             }
28894         }else{
28895             if(this.currentTabWidth < this.preferredTabWidth){
28896                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28897             }
28898         }
28899     },
28900
28901     /**
28902      * Returns the number of tabs in this TabPanel.
28903      * @return {Number}
28904      */
28905      getCount : function(){
28906          return this.items.length;
28907      },
28908
28909     /**
28910      * Resizes all the tabs to the passed width
28911      * @param {Number} The new width
28912      */
28913     setTabWidth : function(width){
28914         this.currentTabWidth = width;
28915         for(var i = 0, len = this.items.length; i < len; i++) {
28916                 if(!this.items[i].isHidden()) {
28917                 this.items[i].setWidth(width);
28918             }
28919         }
28920     },
28921
28922     /**
28923      * Destroys this TabPanel
28924      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28925      */
28926     destroy : function(removeEl){
28927         Roo.EventManager.removeResizeListener(this.onResize, this);
28928         for(var i = 0, len = this.items.length; i < len; i++){
28929             this.items[i].purgeListeners();
28930         }
28931         if(removeEl === true){
28932             this.el.update("");
28933             this.el.remove();
28934         }
28935     }
28936 });
28937
28938 /**
28939  * @class Roo.TabPanelItem
28940  * @extends Roo.util.Observable
28941  * Represents an individual item (tab plus body) in a TabPanel.
28942  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28943  * @param {String} id The id of this TabPanelItem
28944  * @param {String} text The text for the tab of this TabPanelItem
28945  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28946  */
28947 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28948     /**
28949      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28950      * @type Roo.TabPanel
28951      */
28952     this.tabPanel = tabPanel;
28953     /**
28954      * The id for this TabPanelItem
28955      * @type String
28956      */
28957     this.id = id;
28958     /** @private */
28959     this.disabled = false;
28960     /** @private */
28961     this.text = text;
28962     /** @private */
28963     this.loaded = false;
28964     this.closable = closable;
28965
28966     /**
28967      * The body element for this TabPanelItem.
28968      * @type Roo.Element
28969      */
28970     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28971     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28972     this.bodyEl.setStyle("display", "block");
28973     this.bodyEl.setStyle("zoom", "1");
28974     this.hideAction();
28975
28976     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28977     /** @private */
28978     this.el = Roo.get(els.el, true);
28979     this.inner = Roo.get(els.inner, true);
28980     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28981     this.pnode = Roo.get(els.el.parentNode, true);
28982     this.el.on("mousedown", this.onTabMouseDown, this);
28983     this.el.on("click", this.onTabClick, this);
28984     /** @private */
28985     if(closable){
28986         var c = Roo.get(els.close, true);
28987         c.dom.title = this.closeText;
28988         c.addClassOnOver("close-over");
28989         c.on("click", this.closeClick, this);
28990      }
28991
28992     this.addEvents({
28993          /**
28994          * @event activate
28995          * Fires when this tab becomes the active tab.
28996          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28997          * @param {Roo.TabPanelItem} this
28998          */
28999         "activate": true,
29000         /**
29001          * @event beforeclose
29002          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
29003          * @param {Roo.TabPanelItem} this
29004          * @param {Object} e Set cancel to true on this object to cancel the close.
29005          */
29006         "beforeclose": true,
29007         /**
29008          * @event close
29009          * Fires when this tab is closed.
29010          * @param {Roo.TabPanelItem} this
29011          */
29012          "close": true,
29013         /**
29014          * @event deactivate
29015          * Fires when this tab is no longer the active tab.
29016          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29017          * @param {Roo.TabPanelItem} this
29018          */
29019          "deactivate" : true
29020     });
29021     this.hidden = false;
29022
29023     Roo.TabPanelItem.superclass.constructor.call(this);
29024 };
29025
29026 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
29027     purgeListeners : function(){
29028        Roo.util.Observable.prototype.purgeListeners.call(this);
29029        this.el.removeAllListeners();
29030     },
29031     /**
29032      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
29033      */
29034     show : function(){
29035         this.pnode.addClass("on");
29036         this.showAction();
29037         if(Roo.isOpera){
29038             this.tabPanel.stripWrap.repaint();
29039         }
29040         this.fireEvent("activate", this.tabPanel, this);
29041     },
29042
29043     /**
29044      * Returns true if this tab is the active tab.
29045      * @return {Boolean}
29046      */
29047     isActive : function(){
29048         return this.tabPanel.getActiveTab() == this;
29049     },
29050
29051     /**
29052      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
29053      */
29054     hide : function(){
29055         this.pnode.removeClass("on");
29056         this.hideAction();
29057         this.fireEvent("deactivate", this.tabPanel, this);
29058     },
29059
29060     hideAction : function(){
29061         this.bodyEl.hide();
29062         this.bodyEl.setStyle("position", "absolute");
29063         this.bodyEl.setLeft("-20000px");
29064         this.bodyEl.setTop("-20000px");
29065     },
29066
29067     showAction : function(){
29068         this.bodyEl.setStyle("position", "relative");
29069         this.bodyEl.setTop("");
29070         this.bodyEl.setLeft("");
29071         this.bodyEl.show();
29072     },
29073
29074     /**
29075      * Set the tooltip for the tab.
29076      * @param {String} tooltip The tab's tooltip
29077      */
29078     setTooltip : function(text){
29079         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29080             this.textEl.dom.qtip = text;
29081             this.textEl.dom.removeAttribute('title');
29082         }else{
29083             this.textEl.dom.title = text;
29084         }
29085     },
29086
29087     onTabClick : function(e){
29088         e.preventDefault();
29089         this.tabPanel.activate(this.id);
29090     },
29091
29092     onTabMouseDown : function(e){
29093         e.preventDefault();
29094         this.tabPanel.activate(this.id);
29095     },
29096
29097     getWidth : function(){
29098         return this.inner.getWidth();
29099     },
29100
29101     setWidth : function(width){
29102         var iwidth = width - this.pnode.getPadding("lr");
29103         this.inner.setWidth(iwidth);
29104         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29105         this.pnode.setWidth(width);
29106     },
29107
29108     /**
29109      * Show or hide the tab
29110      * @param {Boolean} hidden True to hide or false to show.
29111      */
29112     setHidden : function(hidden){
29113         this.hidden = hidden;
29114         this.pnode.setStyle("display", hidden ? "none" : "");
29115     },
29116
29117     /**
29118      * Returns true if this tab is "hidden"
29119      * @return {Boolean}
29120      */
29121     isHidden : function(){
29122         return this.hidden;
29123     },
29124
29125     /**
29126      * Returns the text for this tab
29127      * @return {String}
29128      */
29129     getText : function(){
29130         return this.text;
29131     },
29132
29133     autoSize : function(){
29134         //this.el.beginMeasure();
29135         this.textEl.setWidth(1);
29136         /*
29137          *  #2804 [new] Tabs in Roojs
29138          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29139          */
29140         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29141         //this.el.endMeasure();
29142     },
29143
29144     /**
29145      * Sets the text for the tab (Note: this also sets the tooltip text)
29146      * @param {String} text The tab's text and tooltip
29147      */
29148     setText : function(text){
29149         this.text = text;
29150         this.textEl.update(text);
29151         this.setTooltip(text);
29152         if(!this.tabPanel.resizeTabs){
29153             this.autoSize();
29154         }
29155     },
29156     /**
29157      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29158      */
29159     activate : function(){
29160         this.tabPanel.activate(this.id);
29161     },
29162
29163     /**
29164      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29165      */
29166     disable : function(){
29167         if(this.tabPanel.active != this){
29168             this.disabled = true;
29169             this.pnode.addClass("disabled");
29170         }
29171     },
29172
29173     /**
29174      * Enables this TabPanelItem if it was previously disabled.
29175      */
29176     enable : function(){
29177         this.disabled = false;
29178         this.pnode.removeClass("disabled");
29179     },
29180
29181     /**
29182      * Sets the content for this TabPanelItem.
29183      * @param {String} content The content
29184      * @param {Boolean} loadScripts true to look for and load scripts
29185      */
29186     setContent : function(content, loadScripts){
29187         this.bodyEl.update(content, loadScripts);
29188     },
29189
29190     /**
29191      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29192      * @return {Roo.UpdateManager} The UpdateManager
29193      */
29194     getUpdateManager : function(){
29195         return this.bodyEl.getUpdateManager();
29196     },
29197
29198     /**
29199      * Set a URL to be used to load the content for this TabPanelItem.
29200      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29201      * @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)
29202      * @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)
29203      * @return {Roo.UpdateManager} The UpdateManager
29204      */
29205     setUrl : function(url, params, loadOnce){
29206         if(this.refreshDelegate){
29207             this.un('activate', this.refreshDelegate);
29208         }
29209         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29210         this.on("activate", this.refreshDelegate);
29211         return this.bodyEl.getUpdateManager();
29212     },
29213
29214     /** @private */
29215     _handleRefresh : function(url, params, loadOnce){
29216         if(!loadOnce || !this.loaded){
29217             var updater = this.bodyEl.getUpdateManager();
29218             updater.update(url, params, this._setLoaded.createDelegate(this));
29219         }
29220     },
29221
29222     /**
29223      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29224      *   Will fail silently if the setUrl method has not been called.
29225      *   This does not activate the panel, just updates its content.
29226      */
29227     refresh : function(){
29228         if(this.refreshDelegate){
29229            this.loaded = false;
29230            this.refreshDelegate();
29231         }
29232     },
29233
29234     /** @private */
29235     _setLoaded : function(){
29236         this.loaded = true;
29237     },
29238
29239     /** @private */
29240     closeClick : function(e){
29241         var o = {};
29242         e.stopEvent();
29243         this.fireEvent("beforeclose", this, o);
29244         if(o.cancel !== true){
29245             this.tabPanel.removeTab(this.id);
29246         }
29247     },
29248     /**
29249      * The text displayed in the tooltip for the close icon.
29250      * @type String
29251      */
29252     closeText : "Close this tab"
29253 });
29254
29255 /** @private */
29256 Roo.TabPanel.prototype.createStrip = function(container){
29257     var strip = document.createElement("div");
29258     strip.className = "x-tabs-wrap";
29259     container.appendChild(strip);
29260     return strip;
29261 };
29262 /** @private */
29263 Roo.TabPanel.prototype.createStripList = function(strip){
29264     // div wrapper for retard IE
29265     // returns the "tr" element.
29266     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29267         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29268         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29269     return strip.firstChild.firstChild.firstChild.firstChild;
29270 };
29271 /** @private */
29272 Roo.TabPanel.prototype.createBody = function(container){
29273     var body = document.createElement("div");
29274     Roo.id(body, "tab-body");
29275     Roo.fly(body).addClass("x-tabs-body");
29276     container.appendChild(body);
29277     return body;
29278 };
29279 /** @private */
29280 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29281     var body = Roo.getDom(id);
29282     if(!body){
29283         body = document.createElement("div");
29284         body.id = id;
29285     }
29286     Roo.fly(body).addClass("x-tabs-item-body");
29287     bodyEl.insertBefore(body, bodyEl.firstChild);
29288     return body;
29289 };
29290 /** @private */
29291 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29292     var td = document.createElement("td");
29293     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29294     //stripEl.appendChild(td);
29295     if(closable){
29296         td.className = "x-tabs-closable";
29297         if(!this.closeTpl){
29298             this.closeTpl = new Roo.Template(
29299                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29300                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29301                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29302             );
29303         }
29304         var el = this.closeTpl.overwrite(td, {"text": text});
29305         var close = el.getElementsByTagName("div")[0];
29306         var inner = el.getElementsByTagName("em")[0];
29307         return {"el": el, "close": close, "inner": inner};
29308     } else {
29309         if(!this.tabTpl){
29310             this.tabTpl = new Roo.Template(
29311                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29312                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29313             );
29314         }
29315         var el = this.tabTpl.overwrite(td, {"text": text});
29316         var inner = el.getElementsByTagName("em")[0];
29317         return {"el": el, "inner": inner};
29318     }
29319 };/*
29320  * Based on:
29321  * Ext JS Library 1.1.1
29322  * Copyright(c) 2006-2007, Ext JS, LLC.
29323  *
29324  * Originally Released Under LGPL - original licence link has changed is not relivant.
29325  *
29326  * Fork - LGPL
29327  * <script type="text/javascript">
29328  */
29329
29330 /**
29331  * @class Roo.Button
29332  * @extends Roo.util.Observable
29333  * Simple Button class
29334  * @cfg {String} text The button text
29335  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29336  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29337  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29338  * @cfg {Object} scope The scope of the handler
29339  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29340  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29341  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29342  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29343  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29344  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29345    applies if enableToggle = true)
29346  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29347  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29348   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29349  * @constructor
29350  * Create a new button
29351  * @param {Object} config The config object
29352  */
29353 Roo.Button = function(renderTo, config)
29354 {
29355     if (!config) {
29356         config = renderTo;
29357         renderTo = config.renderTo || false;
29358     }
29359     
29360     Roo.apply(this, config);
29361     this.addEvents({
29362         /**
29363              * @event click
29364              * Fires when this button is clicked
29365              * @param {Button} this
29366              * @param {EventObject} e The click event
29367              */
29368             "click" : true,
29369         /**
29370              * @event toggle
29371              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29372              * @param {Button} this
29373              * @param {Boolean} pressed
29374              */
29375             "toggle" : true,
29376         /**
29377              * @event mouseover
29378              * Fires when the mouse hovers over the button
29379              * @param {Button} this
29380              * @param {Event} e The event object
29381              */
29382         'mouseover' : true,
29383         /**
29384              * @event mouseout
29385              * Fires when the mouse exits the button
29386              * @param {Button} this
29387              * @param {Event} e The event object
29388              */
29389         'mouseout': true,
29390          /**
29391              * @event render
29392              * Fires when the button is rendered
29393              * @param {Button} this
29394              */
29395         'render': true
29396     });
29397     if(this.menu){
29398         this.menu = Roo.menu.MenuMgr.get(this.menu);
29399     }
29400     // register listeners first!!  - so render can be captured..
29401     Roo.util.Observable.call(this);
29402     if(renderTo){
29403         this.render(renderTo);
29404     }
29405     
29406   
29407 };
29408
29409 Roo.extend(Roo.Button, Roo.util.Observable, {
29410     /**
29411      * 
29412      */
29413     
29414     /**
29415      * Read-only. True if this button is hidden
29416      * @type Boolean
29417      */
29418     hidden : false,
29419     /**
29420      * Read-only. True if this button is disabled
29421      * @type Boolean
29422      */
29423     disabled : false,
29424     /**
29425      * Read-only. True if this button is pressed (only if enableToggle = true)
29426      * @type Boolean
29427      */
29428     pressed : false,
29429
29430     /**
29431      * @cfg {Number} tabIndex 
29432      * The DOM tabIndex for this button (defaults to undefined)
29433      */
29434     tabIndex : undefined,
29435
29436     /**
29437      * @cfg {Boolean} enableToggle
29438      * True to enable pressed/not pressed toggling (defaults to false)
29439      */
29440     enableToggle: false,
29441     /**
29442      * @cfg {Mixed} menu
29443      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29444      */
29445     menu : undefined,
29446     /**
29447      * @cfg {String} menuAlign
29448      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29449      */
29450     menuAlign : "tl-bl?",
29451
29452     /**
29453      * @cfg {String} iconCls
29454      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29455      */
29456     iconCls : undefined,
29457     /**
29458      * @cfg {String} type
29459      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29460      */
29461     type : 'button',
29462
29463     // private
29464     menuClassTarget: 'tr',
29465
29466     /**
29467      * @cfg {String} clickEvent
29468      * The type of event to map to the button's event handler (defaults to 'click')
29469      */
29470     clickEvent : 'click',
29471
29472     /**
29473      * @cfg {Boolean} handleMouseEvents
29474      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29475      */
29476     handleMouseEvents : true,
29477
29478     /**
29479      * @cfg {String} tooltipType
29480      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29481      */
29482     tooltipType : 'qtip',
29483
29484     /**
29485      * @cfg {String} cls
29486      * A CSS class to apply to the button's main element.
29487      */
29488     
29489     /**
29490      * @cfg {Roo.Template} template (Optional)
29491      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29492      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29493      * require code modifications if required elements (e.g. a button) aren't present.
29494      */
29495
29496     // private
29497     render : function(renderTo){
29498         var btn;
29499         if(this.hideParent){
29500             this.parentEl = Roo.get(renderTo);
29501         }
29502         if(!this.dhconfig){
29503             if(!this.template){
29504                 if(!Roo.Button.buttonTemplate){
29505                     // hideous table template
29506                     Roo.Button.buttonTemplate = new Roo.Template(
29507                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29508                         '<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>',
29509                         "</tr></tbody></table>");
29510                 }
29511                 this.template = Roo.Button.buttonTemplate;
29512             }
29513             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29514             var btnEl = btn.child("button:first");
29515             btnEl.on('focus', this.onFocus, this);
29516             btnEl.on('blur', this.onBlur, this);
29517             if(this.cls){
29518                 btn.addClass(this.cls);
29519             }
29520             if(this.icon){
29521                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29522             }
29523             if(this.iconCls){
29524                 btnEl.addClass(this.iconCls);
29525                 if(!this.cls){
29526                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29527                 }
29528             }
29529             if(this.tabIndex !== undefined){
29530                 btnEl.dom.tabIndex = this.tabIndex;
29531             }
29532             if(this.tooltip){
29533                 if(typeof this.tooltip == 'object'){
29534                     Roo.QuickTips.tips(Roo.apply({
29535                           target: btnEl.id
29536                     }, this.tooltip));
29537                 } else {
29538                     btnEl.dom[this.tooltipType] = this.tooltip;
29539                 }
29540             }
29541         }else{
29542             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29543         }
29544         this.el = btn;
29545         if(this.id){
29546             this.el.dom.id = this.el.id = this.id;
29547         }
29548         if(this.menu){
29549             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29550             this.menu.on("show", this.onMenuShow, this);
29551             this.menu.on("hide", this.onMenuHide, this);
29552         }
29553         btn.addClass("x-btn");
29554         if(Roo.isIE && !Roo.isIE7){
29555             this.autoWidth.defer(1, this);
29556         }else{
29557             this.autoWidth();
29558         }
29559         if(this.handleMouseEvents){
29560             btn.on("mouseover", this.onMouseOver, this);
29561             btn.on("mouseout", this.onMouseOut, this);
29562             btn.on("mousedown", this.onMouseDown, this);
29563         }
29564         btn.on(this.clickEvent, this.onClick, this);
29565         //btn.on("mouseup", this.onMouseUp, this);
29566         if(this.hidden){
29567             this.hide();
29568         }
29569         if(this.disabled){
29570             this.disable();
29571         }
29572         Roo.ButtonToggleMgr.register(this);
29573         if(this.pressed){
29574             this.el.addClass("x-btn-pressed");
29575         }
29576         if(this.repeat){
29577             var repeater = new Roo.util.ClickRepeater(btn,
29578                 typeof this.repeat == "object" ? this.repeat : {}
29579             );
29580             repeater.on("click", this.onClick,  this);
29581         }
29582         
29583         this.fireEvent('render', this);
29584         
29585     },
29586     /**
29587      * Returns the button's underlying element
29588      * @return {Roo.Element} The element
29589      */
29590     getEl : function(){
29591         return this.el;  
29592     },
29593     
29594     /**
29595      * Destroys this Button and removes any listeners.
29596      */
29597     destroy : function(){
29598         Roo.ButtonToggleMgr.unregister(this);
29599         this.el.removeAllListeners();
29600         this.purgeListeners();
29601         this.el.remove();
29602     },
29603
29604     // private
29605     autoWidth : function(){
29606         if(this.el){
29607             this.el.setWidth("auto");
29608             if(Roo.isIE7 && Roo.isStrict){
29609                 var ib = this.el.child('button');
29610                 if(ib && ib.getWidth() > 20){
29611                     ib.clip();
29612                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29613                 }
29614             }
29615             if(this.minWidth){
29616                 if(this.hidden){
29617                     this.el.beginMeasure();
29618                 }
29619                 if(this.el.getWidth() < this.minWidth){
29620                     this.el.setWidth(this.minWidth);
29621                 }
29622                 if(this.hidden){
29623                     this.el.endMeasure();
29624                 }
29625             }
29626         }
29627     },
29628
29629     /**
29630      * Assigns this button's click handler
29631      * @param {Function} handler The function to call when the button is clicked
29632      * @param {Object} scope (optional) Scope for the function passed in
29633      */
29634     setHandler : function(handler, scope){
29635         this.handler = handler;
29636         this.scope = scope;  
29637     },
29638     
29639     /**
29640      * Sets this button's text
29641      * @param {String} text The button text
29642      */
29643     setText : function(text){
29644         this.text = text;
29645         if(this.el){
29646             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29647         }
29648         this.autoWidth();
29649     },
29650     
29651     /**
29652      * Gets the text for this button
29653      * @return {String} The button text
29654      */
29655     getText : function(){
29656         return this.text;  
29657     },
29658     
29659     /**
29660      * Show this button
29661      */
29662     show: function(){
29663         this.hidden = false;
29664         if(this.el){
29665             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29666         }
29667     },
29668     
29669     /**
29670      * Hide this button
29671      */
29672     hide: function(){
29673         this.hidden = true;
29674         if(this.el){
29675             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29676         }
29677     },
29678     
29679     /**
29680      * Convenience function for boolean show/hide
29681      * @param {Boolean} visible True to show, false to hide
29682      */
29683     setVisible: function(visible){
29684         if(visible) {
29685             this.show();
29686         }else{
29687             this.hide();
29688         }
29689     },
29690     
29691     /**
29692      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29693      * @param {Boolean} state (optional) Force a particular state
29694      */
29695     toggle : function(state){
29696         state = state === undefined ? !this.pressed : state;
29697         if(state != this.pressed){
29698             if(state){
29699                 this.el.addClass("x-btn-pressed");
29700                 this.pressed = true;
29701                 this.fireEvent("toggle", this, true);
29702             }else{
29703                 this.el.removeClass("x-btn-pressed");
29704                 this.pressed = false;
29705                 this.fireEvent("toggle", this, false);
29706             }
29707             if(this.toggleHandler){
29708                 this.toggleHandler.call(this.scope || this, this, state);
29709             }
29710         }
29711     },
29712     
29713     /**
29714      * Focus the button
29715      */
29716     focus : function(){
29717         this.el.child('button:first').focus();
29718     },
29719     
29720     /**
29721      * Disable this button
29722      */
29723     disable : function(){
29724         if(this.el){
29725             this.el.addClass("x-btn-disabled");
29726         }
29727         this.disabled = true;
29728     },
29729     
29730     /**
29731      * Enable this button
29732      */
29733     enable : function(){
29734         if(this.el){
29735             this.el.removeClass("x-btn-disabled");
29736         }
29737         this.disabled = false;
29738     },
29739
29740     /**
29741      * Convenience function for boolean enable/disable
29742      * @param {Boolean} enabled True to enable, false to disable
29743      */
29744     setDisabled : function(v){
29745         this[v !== true ? "enable" : "disable"]();
29746     },
29747
29748     // private
29749     onClick : function(e)
29750     {
29751         if(e){
29752             e.preventDefault();
29753         }
29754         if(e.button != 0){
29755             return;
29756         }
29757         if(!this.disabled){
29758             if(this.enableToggle){
29759                 this.toggle();
29760             }
29761             if(this.menu && !this.menu.isVisible()){
29762                 this.menu.show(this.el, this.menuAlign);
29763             }
29764             this.fireEvent("click", this, e);
29765             if(this.handler){
29766                 this.el.removeClass("x-btn-over");
29767                 this.handler.call(this.scope || this, this, e);
29768             }
29769         }
29770     },
29771     // private
29772     onMouseOver : function(e){
29773         if(!this.disabled){
29774             this.el.addClass("x-btn-over");
29775             this.fireEvent('mouseover', this, e);
29776         }
29777     },
29778     // private
29779     onMouseOut : function(e){
29780         if(!e.within(this.el,  true)){
29781             this.el.removeClass("x-btn-over");
29782             this.fireEvent('mouseout', this, e);
29783         }
29784     },
29785     // private
29786     onFocus : function(e){
29787         if(!this.disabled){
29788             this.el.addClass("x-btn-focus");
29789         }
29790     },
29791     // private
29792     onBlur : function(e){
29793         this.el.removeClass("x-btn-focus");
29794     },
29795     // private
29796     onMouseDown : function(e){
29797         if(!this.disabled && e.button == 0){
29798             this.el.addClass("x-btn-click");
29799             Roo.get(document).on('mouseup', this.onMouseUp, this);
29800         }
29801     },
29802     // private
29803     onMouseUp : function(e){
29804         if(e.button == 0){
29805             this.el.removeClass("x-btn-click");
29806             Roo.get(document).un('mouseup', this.onMouseUp, this);
29807         }
29808     },
29809     // private
29810     onMenuShow : function(e){
29811         this.el.addClass("x-btn-menu-active");
29812     },
29813     // private
29814     onMenuHide : function(e){
29815         this.el.removeClass("x-btn-menu-active");
29816     }   
29817 });
29818
29819 // Private utility class used by Button
29820 Roo.ButtonToggleMgr = function(){
29821    var groups = {};
29822    
29823    function toggleGroup(btn, state){
29824        if(state){
29825            var g = groups[btn.toggleGroup];
29826            for(var i = 0, l = g.length; i < l; i++){
29827                if(g[i] != btn){
29828                    g[i].toggle(false);
29829                }
29830            }
29831        }
29832    }
29833    
29834    return {
29835        register : function(btn){
29836            if(!btn.toggleGroup){
29837                return;
29838            }
29839            var g = groups[btn.toggleGroup];
29840            if(!g){
29841                g = groups[btn.toggleGroup] = [];
29842            }
29843            g.push(btn);
29844            btn.on("toggle", toggleGroup);
29845        },
29846        
29847        unregister : function(btn){
29848            if(!btn.toggleGroup){
29849                return;
29850            }
29851            var g = groups[btn.toggleGroup];
29852            if(g){
29853                g.remove(btn);
29854                btn.un("toggle", toggleGroup);
29855            }
29856        }
29857    };
29858 }();/*
29859  * Based on:
29860  * Ext JS Library 1.1.1
29861  * Copyright(c) 2006-2007, Ext JS, LLC.
29862  *
29863  * Originally Released Under LGPL - original licence link has changed is not relivant.
29864  *
29865  * Fork - LGPL
29866  * <script type="text/javascript">
29867  */
29868  
29869 /**
29870  * @class Roo.SplitButton
29871  * @extends Roo.Button
29872  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29873  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29874  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29875  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29876  * @cfg {String} arrowTooltip The title attribute of the arrow
29877  * @constructor
29878  * Create a new menu button
29879  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29880  * @param {Object} config The config object
29881  */
29882 Roo.SplitButton = function(renderTo, config){
29883     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29884     /**
29885      * @event arrowclick
29886      * Fires when this button's arrow is clicked
29887      * @param {SplitButton} this
29888      * @param {EventObject} e The click event
29889      */
29890     this.addEvents({"arrowclick":true});
29891 };
29892
29893 Roo.extend(Roo.SplitButton, Roo.Button, {
29894     render : function(renderTo){
29895         // this is one sweet looking template!
29896         var tpl = new Roo.Template(
29897             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29898             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29899             '<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>',
29900             "</tbody></table></td><td>",
29901             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29902             '<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>',
29903             "</tbody></table></td></tr></table>"
29904         );
29905         var btn = tpl.append(renderTo, [this.text, this.type], true);
29906         var btnEl = btn.child("button");
29907         if(this.cls){
29908             btn.addClass(this.cls);
29909         }
29910         if(this.icon){
29911             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29912         }
29913         if(this.iconCls){
29914             btnEl.addClass(this.iconCls);
29915             if(!this.cls){
29916                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29917             }
29918         }
29919         this.el = btn;
29920         if(this.handleMouseEvents){
29921             btn.on("mouseover", this.onMouseOver, this);
29922             btn.on("mouseout", this.onMouseOut, this);
29923             btn.on("mousedown", this.onMouseDown, this);
29924             btn.on("mouseup", this.onMouseUp, this);
29925         }
29926         btn.on(this.clickEvent, this.onClick, this);
29927         if(this.tooltip){
29928             if(typeof this.tooltip == 'object'){
29929                 Roo.QuickTips.tips(Roo.apply({
29930                       target: btnEl.id
29931                 }, this.tooltip));
29932             } else {
29933                 btnEl.dom[this.tooltipType] = this.tooltip;
29934             }
29935         }
29936         if(this.arrowTooltip){
29937             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29938         }
29939         if(this.hidden){
29940             this.hide();
29941         }
29942         if(this.disabled){
29943             this.disable();
29944         }
29945         if(this.pressed){
29946             this.el.addClass("x-btn-pressed");
29947         }
29948         if(Roo.isIE && !Roo.isIE7){
29949             this.autoWidth.defer(1, this);
29950         }else{
29951             this.autoWidth();
29952         }
29953         if(this.menu){
29954             this.menu.on("show", this.onMenuShow, this);
29955             this.menu.on("hide", this.onMenuHide, this);
29956         }
29957         this.fireEvent('render', this);
29958     },
29959
29960     // private
29961     autoWidth : function(){
29962         if(this.el){
29963             var tbl = this.el.child("table:first");
29964             var tbl2 = this.el.child("table:last");
29965             this.el.setWidth("auto");
29966             tbl.setWidth("auto");
29967             if(Roo.isIE7 && Roo.isStrict){
29968                 var ib = this.el.child('button:first');
29969                 if(ib && ib.getWidth() > 20){
29970                     ib.clip();
29971                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29972                 }
29973             }
29974             if(this.minWidth){
29975                 if(this.hidden){
29976                     this.el.beginMeasure();
29977                 }
29978                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29979                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29980                 }
29981                 if(this.hidden){
29982                     this.el.endMeasure();
29983                 }
29984             }
29985             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29986         } 
29987     },
29988     /**
29989      * Sets this button's click handler
29990      * @param {Function} handler The function to call when the button is clicked
29991      * @param {Object} scope (optional) Scope for the function passed above
29992      */
29993     setHandler : function(handler, scope){
29994         this.handler = handler;
29995         this.scope = scope;  
29996     },
29997     
29998     /**
29999      * Sets this button's arrow click handler
30000      * @param {Function} handler The function to call when the arrow is clicked
30001      * @param {Object} scope (optional) Scope for the function passed above
30002      */
30003     setArrowHandler : function(handler, scope){
30004         this.arrowHandler = handler;
30005         this.scope = scope;  
30006     },
30007     
30008     /**
30009      * Focus the button
30010      */
30011     focus : function(){
30012         if(this.el){
30013             this.el.child("button:first").focus();
30014         }
30015     },
30016
30017     // private
30018     onClick : function(e){
30019         e.preventDefault();
30020         if(!this.disabled){
30021             if(e.getTarget(".x-btn-menu-arrow-wrap")){
30022                 if(this.menu && !this.menu.isVisible()){
30023                     this.menu.show(this.el, this.menuAlign);
30024                 }
30025                 this.fireEvent("arrowclick", this, e);
30026                 if(this.arrowHandler){
30027                     this.arrowHandler.call(this.scope || this, this, e);
30028                 }
30029             }else{
30030                 this.fireEvent("click", this, e);
30031                 if(this.handler){
30032                     this.handler.call(this.scope || this, this, e);
30033                 }
30034             }
30035         }
30036     },
30037     // private
30038     onMouseDown : function(e){
30039         if(!this.disabled){
30040             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
30041         }
30042     },
30043     // private
30044     onMouseUp : function(e){
30045         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
30046     }   
30047 });
30048
30049
30050 // backwards compat
30051 Roo.MenuButton = Roo.SplitButton;/*
30052  * Based on:
30053  * Ext JS Library 1.1.1
30054  * Copyright(c) 2006-2007, Ext JS, LLC.
30055  *
30056  * Originally Released Under LGPL - original licence link has changed is not relivant.
30057  *
30058  * Fork - LGPL
30059  * <script type="text/javascript">
30060  */
30061
30062 /**
30063  * @class Roo.Toolbar
30064  * Basic Toolbar class.
30065  * @constructor
30066  * Creates a new Toolbar
30067  * @param {Object} container The config object
30068  */ 
30069 Roo.Toolbar = function(container, buttons, config)
30070 {
30071     /// old consturctor format still supported..
30072     if(container instanceof Array){ // omit the container for later rendering
30073         buttons = container;
30074         config = buttons;
30075         container = null;
30076     }
30077     if (typeof(container) == 'object' && container.xtype) {
30078         config = container;
30079         container = config.container;
30080         buttons = config.buttons || []; // not really - use items!!
30081     }
30082     var xitems = [];
30083     if (config && config.items) {
30084         xitems = config.items;
30085         delete config.items;
30086     }
30087     Roo.apply(this, config);
30088     this.buttons = buttons;
30089     
30090     if(container){
30091         this.render(container);
30092     }
30093     this.xitems = xitems;
30094     Roo.each(xitems, function(b) {
30095         this.add(b);
30096     }, this);
30097     
30098 };
30099
30100 Roo.Toolbar.prototype = {
30101     /**
30102      * @cfg {Array} items
30103      * array of button configs or elements to add (will be converted to a MixedCollection)
30104      */
30105     
30106     /**
30107      * @cfg {String/HTMLElement/Element} container
30108      * The id or element that will contain the toolbar
30109      */
30110     // private
30111     render : function(ct){
30112         this.el = Roo.get(ct);
30113         if(this.cls){
30114             this.el.addClass(this.cls);
30115         }
30116         // using a table allows for vertical alignment
30117         // 100% width is needed by Safari...
30118         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30119         this.tr = this.el.child("tr", true);
30120         var autoId = 0;
30121         this.items = new Roo.util.MixedCollection(false, function(o){
30122             return o.id || ("item" + (++autoId));
30123         });
30124         if(this.buttons){
30125             this.add.apply(this, this.buttons);
30126             delete this.buttons;
30127         }
30128     },
30129
30130     /**
30131      * Adds element(s) to the toolbar -- this function takes a variable number of 
30132      * arguments of mixed type and adds them to the toolbar.
30133      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30134      * <ul>
30135      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30136      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30137      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30138      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30139      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30140      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30141      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30142      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30143      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30144      * </ul>
30145      * @param {Mixed} arg2
30146      * @param {Mixed} etc.
30147      */
30148     add : function(){
30149         var a = arguments, l = a.length;
30150         for(var i = 0; i < l; i++){
30151             this._add(a[i]);
30152         }
30153     },
30154     // private..
30155     _add : function(el) {
30156         
30157         if (el.xtype) {
30158             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30159         }
30160         
30161         if (el.applyTo){ // some kind of form field
30162             return this.addField(el);
30163         } 
30164         if (el.render){ // some kind of Toolbar.Item
30165             return this.addItem(el);
30166         }
30167         if (typeof el == "string"){ // string
30168             if(el == "separator" || el == "-"){
30169                 return this.addSeparator();
30170             }
30171             if (el == " "){
30172                 return this.addSpacer();
30173             }
30174             if(el == "->"){
30175                 return this.addFill();
30176             }
30177             return this.addText(el);
30178             
30179         }
30180         if(el.tagName){ // element
30181             return this.addElement(el);
30182         }
30183         if(typeof el == "object"){ // must be button config?
30184             return this.addButton(el);
30185         }
30186         // and now what?!?!
30187         return false;
30188         
30189     },
30190     
30191     /**
30192      * Add an Xtype element
30193      * @param {Object} xtype Xtype Object
30194      * @return {Object} created Object
30195      */
30196     addxtype : function(e){
30197         return this.add(e);  
30198     },
30199     
30200     /**
30201      * Returns the Element for this toolbar.
30202      * @return {Roo.Element}
30203      */
30204     getEl : function(){
30205         return this.el;  
30206     },
30207     
30208     /**
30209      * Adds a separator
30210      * @return {Roo.Toolbar.Item} The separator item
30211      */
30212     addSeparator : function(){
30213         return this.addItem(new Roo.Toolbar.Separator());
30214     },
30215
30216     /**
30217      * Adds a spacer element
30218      * @return {Roo.Toolbar.Spacer} The spacer item
30219      */
30220     addSpacer : function(){
30221         return this.addItem(new Roo.Toolbar.Spacer());
30222     },
30223
30224     /**
30225      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30226      * @return {Roo.Toolbar.Fill} The fill item
30227      */
30228     addFill : function(){
30229         return this.addItem(new Roo.Toolbar.Fill());
30230     },
30231
30232     /**
30233      * Adds any standard HTML element to the toolbar
30234      * @param {String/HTMLElement/Element} el The element or id of the element to add
30235      * @return {Roo.Toolbar.Item} The element's item
30236      */
30237     addElement : function(el){
30238         return this.addItem(new Roo.Toolbar.Item(el));
30239     },
30240     /**
30241      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30242      * @type Roo.util.MixedCollection  
30243      */
30244     items : false,
30245      
30246     /**
30247      * Adds any Toolbar.Item or subclass
30248      * @param {Roo.Toolbar.Item} item
30249      * @return {Roo.Toolbar.Item} The item
30250      */
30251     addItem : function(item){
30252         var td = this.nextBlock();
30253         item.render(td);
30254         this.items.add(item);
30255         return item;
30256     },
30257     
30258     /**
30259      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30260      * @param {Object/Array} config A button config or array of configs
30261      * @return {Roo.Toolbar.Button/Array}
30262      */
30263     addButton : function(config){
30264         if(config instanceof Array){
30265             var buttons = [];
30266             for(var i = 0, len = config.length; i < len; i++) {
30267                 buttons.push(this.addButton(config[i]));
30268             }
30269             return buttons;
30270         }
30271         var b = config;
30272         if(!(config instanceof Roo.Toolbar.Button)){
30273             b = config.split ?
30274                 new Roo.Toolbar.SplitButton(config) :
30275                 new Roo.Toolbar.Button(config);
30276         }
30277         var td = this.nextBlock();
30278         b.render(td);
30279         this.items.add(b);
30280         return b;
30281     },
30282     
30283     /**
30284      * Adds text to the toolbar
30285      * @param {String} text The text to add
30286      * @return {Roo.Toolbar.Item} The element's item
30287      */
30288     addText : function(text){
30289         return this.addItem(new Roo.Toolbar.TextItem(text));
30290     },
30291     
30292     /**
30293      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30294      * @param {Number} index The index where the item is to be inserted
30295      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30296      * @return {Roo.Toolbar.Button/Item}
30297      */
30298     insertButton : function(index, item){
30299         if(item instanceof Array){
30300             var buttons = [];
30301             for(var i = 0, len = item.length; i < len; i++) {
30302                buttons.push(this.insertButton(index + i, item[i]));
30303             }
30304             return buttons;
30305         }
30306         if (!(item instanceof Roo.Toolbar.Button)){
30307            item = new Roo.Toolbar.Button(item);
30308         }
30309         var td = document.createElement("td");
30310         this.tr.insertBefore(td, this.tr.childNodes[index]);
30311         item.render(td);
30312         this.items.insert(index, item);
30313         return item;
30314     },
30315     
30316     /**
30317      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30318      * @param {Object} config
30319      * @return {Roo.Toolbar.Item} The element's item
30320      */
30321     addDom : function(config, returnEl){
30322         var td = this.nextBlock();
30323         Roo.DomHelper.overwrite(td, config);
30324         var ti = new Roo.Toolbar.Item(td.firstChild);
30325         ti.render(td);
30326         this.items.add(ti);
30327         return ti;
30328     },
30329
30330     /**
30331      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30332      * @type Roo.util.MixedCollection  
30333      */
30334     fields : false,
30335     
30336     /**
30337      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30338      * Note: the field should not have been rendered yet. For a field that has already been
30339      * rendered, use {@link #addElement}.
30340      * @param {Roo.form.Field} field
30341      * @return {Roo.ToolbarItem}
30342      */
30343      
30344       
30345     addField : function(field) {
30346         if (!this.fields) {
30347             var autoId = 0;
30348             this.fields = new Roo.util.MixedCollection(false, function(o){
30349                 return o.id || ("item" + (++autoId));
30350             });
30351
30352         }
30353         
30354         var td = this.nextBlock();
30355         field.render(td);
30356         var ti = new Roo.Toolbar.Item(td.firstChild);
30357         ti.render(td);
30358         this.items.add(ti);
30359         this.fields.add(field);
30360         return ti;
30361     },
30362     /**
30363      * Hide the toolbar
30364      * @method hide
30365      */
30366      
30367       
30368     hide : function()
30369     {
30370         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30371         this.el.child('div').hide();
30372     },
30373     /**
30374      * Show the toolbar
30375      * @method show
30376      */
30377     show : function()
30378     {
30379         this.el.child('div').show();
30380     },
30381       
30382     // private
30383     nextBlock : function(){
30384         var td = document.createElement("td");
30385         this.tr.appendChild(td);
30386         return td;
30387     },
30388
30389     // private
30390     destroy : function(){
30391         if(this.items){ // rendered?
30392             Roo.destroy.apply(Roo, this.items.items);
30393         }
30394         if(this.fields){ // rendered?
30395             Roo.destroy.apply(Roo, this.fields.items);
30396         }
30397         Roo.Element.uncache(this.el, this.tr);
30398     }
30399 };
30400
30401 /**
30402  * @class Roo.Toolbar.Item
30403  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30404  * @constructor
30405  * Creates a new Item
30406  * @param {HTMLElement} el 
30407  */
30408 Roo.Toolbar.Item = function(el){
30409     var cfg = {};
30410     if (typeof (el.xtype) != 'undefined') {
30411         cfg = el;
30412         el = cfg.el;
30413     }
30414     
30415     this.el = Roo.getDom(el);
30416     this.id = Roo.id(this.el);
30417     this.hidden = false;
30418     
30419     this.addEvents({
30420          /**
30421              * @event render
30422              * Fires when the button is rendered
30423              * @param {Button} this
30424              */
30425         'render': true
30426     });
30427     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30428 };
30429 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30430 //Roo.Toolbar.Item.prototype = {
30431     
30432     /**
30433      * Get this item's HTML Element
30434      * @return {HTMLElement}
30435      */
30436     getEl : function(){
30437        return this.el;  
30438     },
30439
30440     // private
30441     render : function(td){
30442         
30443          this.td = td;
30444         td.appendChild(this.el);
30445         
30446         this.fireEvent('render', this);
30447     },
30448     
30449     /**
30450      * Removes and destroys this item.
30451      */
30452     destroy : function(){
30453         this.td.parentNode.removeChild(this.td);
30454     },
30455     
30456     /**
30457      * Shows this item.
30458      */
30459     show: function(){
30460         this.hidden = false;
30461         this.td.style.display = "";
30462     },
30463     
30464     /**
30465      * Hides this item.
30466      */
30467     hide: function(){
30468         this.hidden = true;
30469         this.td.style.display = "none";
30470     },
30471     
30472     /**
30473      * Convenience function for boolean show/hide.
30474      * @param {Boolean} visible true to show/false to hide
30475      */
30476     setVisible: function(visible){
30477         if(visible) {
30478             this.show();
30479         }else{
30480             this.hide();
30481         }
30482     },
30483     
30484     /**
30485      * Try to focus this item.
30486      */
30487     focus : function(){
30488         Roo.fly(this.el).focus();
30489     },
30490     
30491     /**
30492      * Disables this item.
30493      */
30494     disable : function(){
30495         Roo.fly(this.td).addClass("x-item-disabled");
30496         this.disabled = true;
30497         this.el.disabled = true;
30498     },
30499     
30500     /**
30501      * Enables this item.
30502      */
30503     enable : function(){
30504         Roo.fly(this.td).removeClass("x-item-disabled");
30505         this.disabled = false;
30506         this.el.disabled = false;
30507     }
30508 });
30509
30510
30511 /**
30512  * @class Roo.Toolbar.Separator
30513  * @extends Roo.Toolbar.Item
30514  * A simple toolbar separator class
30515  * @constructor
30516  * Creates a new Separator
30517  */
30518 Roo.Toolbar.Separator = function(cfg){
30519     
30520     var s = document.createElement("span");
30521     s.className = "ytb-sep";
30522     if (cfg) {
30523         cfg.el = s;
30524     }
30525     
30526     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30527 };
30528 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30529     enable:Roo.emptyFn,
30530     disable:Roo.emptyFn,
30531     focus:Roo.emptyFn
30532 });
30533
30534 /**
30535  * @class Roo.Toolbar.Spacer
30536  * @extends Roo.Toolbar.Item
30537  * A simple element that adds extra horizontal space to a toolbar.
30538  * @constructor
30539  * Creates a new Spacer
30540  */
30541 Roo.Toolbar.Spacer = function(cfg){
30542     var s = document.createElement("div");
30543     s.className = "ytb-spacer";
30544     if (cfg) {
30545         cfg.el = s;
30546     }
30547     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30548 };
30549 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30550     enable:Roo.emptyFn,
30551     disable:Roo.emptyFn,
30552     focus:Roo.emptyFn
30553 });
30554
30555 /**
30556  * @class Roo.Toolbar.Fill
30557  * @extends Roo.Toolbar.Spacer
30558  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30559  * @constructor
30560  * Creates a new Spacer
30561  */
30562 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30563     // private
30564     render : function(td){
30565         td.style.width = '100%';
30566         Roo.Toolbar.Fill.superclass.render.call(this, td);
30567     }
30568 });
30569
30570 /**
30571  * @class Roo.Toolbar.TextItem
30572  * @extends Roo.Toolbar.Item
30573  * A simple class that renders text directly into a toolbar.
30574  * @constructor
30575  * Creates a new TextItem
30576  * @cfg {string} text 
30577  */
30578 Roo.Toolbar.TextItem = function(cfg){
30579     var  text = cfg || "";
30580     if (typeof(cfg) == 'object') {
30581         text = cfg.text || "";
30582     }  else {
30583         cfg = null;
30584     }
30585     var s = document.createElement("span");
30586     s.className = "ytb-text";
30587     s.innerHTML = text;
30588     if (cfg) {
30589         cfg.el  = s;
30590     }
30591     
30592     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30593 };
30594 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30595     
30596      
30597     enable:Roo.emptyFn,
30598     disable:Roo.emptyFn,
30599     focus:Roo.emptyFn
30600 });
30601
30602 /**
30603  * @class Roo.Toolbar.Button
30604  * @extends Roo.Button
30605  * A button that renders into a toolbar.
30606  * @constructor
30607  * Creates a new Button
30608  * @param {Object} config A standard {@link Roo.Button} config object
30609  */
30610 Roo.Toolbar.Button = function(config){
30611     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30612 };
30613 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30614     render : function(td){
30615         this.td = td;
30616         Roo.Toolbar.Button.superclass.render.call(this, td);
30617     },
30618     
30619     /**
30620      * Removes and destroys this button
30621      */
30622     destroy : function(){
30623         Roo.Toolbar.Button.superclass.destroy.call(this);
30624         this.td.parentNode.removeChild(this.td);
30625     },
30626     
30627     /**
30628      * Shows this button
30629      */
30630     show: function(){
30631         this.hidden = false;
30632         this.td.style.display = "";
30633     },
30634     
30635     /**
30636      * Hides this button
30637      */
30638     hide: function(){
30639         this.hidden = true;
30640         this.td.style.display = "none";
30641     },
30642
30643     /**
30644      * Disables this item
30645      */
30646     disable : function(){
30647         Roo.fly(this.td).addClass("x-item-disabled");
30648         this.disabled = true;
30649     },
30650
30651     /**
30652      * Enables this item
30653      */
30654     enable : function(){
30655         Roo.fly(this.td).removeClass("x-item-disabled");
30656         this.disabled = false;
30657     }
30658 });
30659 // backwards compat
30660 Roo.ToolbarButton = Roo.Toolbar.Button;
30661
30662 /**
30663  * @class Roo.Toolbar.SplitButton
30664  * @extends Roo.SplitButton
30665  * A menu button that renders into a toolbar.
30666  * @constructor
30667  * Creates a new SplitButton
30668  * @param {Object} config A standard {@link Roo.SplitButton} config object
30669  */
30670 Roo.Toolbar.SplitButton = function(config){
30671     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30672 };
30673 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30674     render : function(td){
30675         this.td = td;
30676         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30677     },
30678     
30679     /**
30680      * Removes and destroys this button
30681      */
30682     destroy : function(){
30683         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30684         this.td.parentNode.removeChild(this.td);
30685     },
30686     
30687     /**
30688      * Shows this button
30689      */
30690     show: function(){
30691         this.hidden = false;
30692         this.td.style.display = "";
30693     },
30694     
30695     /**
30696      * Hides this button
30697      */
30698     hide: function(){
30699         this.hidden = true;
30700         this.td.style.display = "none";
30701     }
30702 });
30703
30704 // backwards compat
30705 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30706  * Based on:
30707  * Ext JS Library 1.1.1
30708  * Copyright(c) 2006-2007, Ext JS, LLC.
30709  *
30710  * Originally Released Under LGPL - original licence link has changed is not relivant.
30711  *
30712  * Fork - LGPL
30713  * <script type="text/javascript">
30714  */
30715  
30716 /**
30717  * @class Roo.PagingToolbar
30718  * @extends Roo.Toolbar
30719  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30720  * @constructor
30721  * Create a new PagingToolbar
30722  * @param {Object} config The config object
30723  */
30724 Roo.PagingToolbar = function(el, ds, config)
30725 {
30726     // old args format still supported... - xtype is prefered..
30727     if (typeof(el) == 'object' && el.xtype) {
30728         // created from xtype...
30729         config = el;
30730         ds = el.dataSource;
30731         el = config.container;
30732     }
30733     var items = [];
30734     if (config.items) {
30735         items = config.items;
30736         config.items = [];
30737     }
30738     
30739     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30740     this.ds = ds;
30741     this.cursor = 0;
30742     this.renderButtons(this.el);
30743     this.bind(ds);
30744     
30745     // supprot items array.
30746    
30747     Roo.each(items, function(e) {
30748         this.add(Roo.factory(e));
30749     },this);
30750     
30751 };
30752
30753 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30754     /**
30755      * @cfg {Roo.data.Store} dataSource
30756      * The underlying data store providing the paged data
30757      */
30758     /**
30759      * @cfg {String/HTMLElement/Element} container
30760      * container The id or element that will contain the toolbar
30761      */
30762     /**
30763      * @cfg {Boolean} displayInfo
30764      * True to display the displayMsg (defaults to false)
30765      */
30766     /**
30767      * @cfg {Number} pageSize
30768      * The number of records to display per page (defaults to 20)
30769      */
30770     pageSize: 20,
30771     /**
30772      * @cfg {String} displayMsg
30773      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30774      */
30775     displayMsg : 'Displaying {0} - {1} of {2}',
30776     /**
30777      * @cfg {String} emptyMsg
30778      * The message to display when no records are found (defaults to "No data to display")
30779      */
30780     emptyMsg : 'No data to display',
30781     /**
30782      * Customizable piece of the default paging text (defaults to "Page")
30783      * @type String
30784      */
30785     beforePageText : "Page",
30786     /**
30787      * Customizable piece of the default paging text (defaults to "of %0")
30788      * @type String
30789      */
30790     afterPageText : "of {0}",
30791     /**
30792      * Customizable piece of the default paging text (defaults to "First Page")
30793      * @type String
30794      */
30795     firstText : "First Page",
30796     /**
30797      * Customizable piece of the default paging text (defaults to "Previous Page")
30798      * @type String
30799      */
30800     prevText : "Previous Page",
30801     /**
30802      * Customizable piece of the default paging text (defaults to "Next Page")
30803      * @type String
30804      */
30805     nextText : "Next Page",
30806     /**
30807      * Customizable piece of the default paging text (defaults to "Last Page")
30808      * @type String
30809      */
30810     lastText : "Last Page",
30811     /**
30812      * Customizable piece of the default paging text (defaults to "Refresh")
30813      * @type String
30814      */
30815     refreshText : "Refresh",
30816
30817     // private
30818     renderButtons : function(el){
30819         Roo.PagingToolbar.superclass.render.call(this, el);
30820         this.first = this.addButton({
30821             tooltip: this.firstText,
30822             cls: "x-btn-icon x-grid-page-first",
30823             disabled: true,
30824             handler: this.onClick.createDelegate(this, ["first"])
30825         });
30826         this.prev = this.addButton({
30827             tooltip: this.prevText,
30828             cls: "x-btn-icon x-grid-page-prev",
30829             disabled: true,
30830             handler: this.onClick.createDelegate(this, ["prev"])
30831         });
30832         //this.addSeparator();
30833         this.add(this.beforePageText);
30834         this.field = Roo.get(this.addDom({
30835            tag: "input",
30836            type: "text",
30837            size: "3",
30838            value: "1",
30839            cls: "x-grid-page-number"
30840         }).el);
30841         this.field.on("keydown", this.onPagingKeydown, this);
30842         this.field.on("focus", function(){this.dom.select();});
30843         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30844         this.field.setHeight(18);
30845         //this.addSeparator();
30846         this.next = this.addButton({
30847             tooltip: this.nextText,
30848             cls: "x-btn-icon x-grid-page-next",
30849             disabled: true,
30850             handler: this.onClick.createDelegate(this, ["next"])
30851         });
30852         this.last = this.addButton({
30853             tooltip: this.lastText,
30854             cls: "x-btn-icon x-grid-page-last",
30855             disabled: true,
30856             handler: this.onClick.createDelegate(this, ["last"])
30857         });
30858         //this.addSeparator();
30859         this.loading = this.addButton({
30860             tooltip: this.refreshText,
30861             cls: "x-btn-icon x-grid-loading",
30862             handler: this.onClick.createDelegate(this, ["refresh"])
30863         });
30864
30865         if(this.displayInfo){
30866             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30867         }
30868     },
30869
30870     // private
30871     updateInfo : function(){
30872         if(this.displayEl){
30873             var count = this.ds.getCount();
30874             var msg = count == 0 ?
30875                 this.emptyMsg :
30876                 String.format(
30877                     this.displayMsg,
30878                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30879                 );
30880             this.displayEl.update(msg);
30881         }
30882     },
30883
30884     // private
30885     onLoad : function(ds, r, o){
30886        this.cursor = o.params ? o.params.start : 0;
30887        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30888
30889        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30890        this.field.dom.value = ap;
30891        this.first.setDisabled(ap == 1);
30892        this.prev.setDisabled(ap == 1);
30893        this.next.setDisabled(ap == ps);
30894        this.last.setDisabled(ap == ps);
30895        this.loading.enable();
30896        this.updateInfo();
30897     },
30898
30899     // private
30900     getPageData : function(){
30901         var total = this.ds.getTotalCount();
30902         return {
30903             total : total,
30904             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30905             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30906         };
30907     },
30908
30909     // private
30910     onLoadError : function(){
30911         this.loading.enable();
30912     },
30913
30914     // private
30915     onPagingKeydown : function(e){
30916         var k = e.getKey();
30917         var d = this.getPageData();
30918         if(k == e.RETURN){
30919             var v = this.field.dom.value, pageNum;
30920             if(!v || isNaN(pageNum = parseInt(v, 10))){
30921                 this.field.dom.value = d.activePage;
30922                 return;
30923             }
30924             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30925             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30926             e.stopEvent();
30927         }
30928         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))
30929         {
30930           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30931           this.field.dom.value = pageNum;
30932           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30933           e.stopEvent();
30934         }
30935         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30936         {
30937           var v = this.field.dom.value, pageNum; 
30938           var increment = (e.shiftKey) ? 10 : 1;
30939           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30940             increment *= -1;
30941           }
30942           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30943             this.field.dom.value = d.activePage;
30944             return;
30945           }
30946           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30947           {
30948             this.field.dom.value = parseInt(v, 10) + increment;
30949             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30950             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30951           }
30952           e.stopEvent();
30953         }
30954     },
30955
30956     // private
30957     beforeLoad : function(){
30958         if(this.loading){
30959             this.loading.disable();
30960         }
30961     },
30962
30963     // private
30964     onClick : function(which){
30965         var ds = this.ds;
30966         switch(which){
30967             case "first":
30968                 ds.load({params:{start: 0, limit: this.pageSize}});
30969             break;
30970             case "prev":
30971                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30972             break;
30973             case "next":
30974                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30975             break;
30976             case "last":
30977                 var total = ds.getTotalCount();
30978                 var extra = total % this.pageSize;
30979                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30980                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30981             break;
30982             case "refresh":
30983                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30984             break;
30985         }
30986     },
30987
30988     /**
30989      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30990      * @param {Roo.data.Store} store The data store to unbind
30991      */
30992     unbind : function(ds){
30993         ds.un("beforeload", this.beforeLoad, this);
30994         ds.un("load", this.onLoad, this);
30995         ds.un("loadexception", this.onLoadError, this);
30996         ds.un("remove", this.updateInfo, this);
30997         ds.un("add", this.updateInfo, this);
30998         this.ds = undefined;
30999     },
31000
31001     /**
31002      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31003      * @param {Roo.data.Store} store The data store to bind
31004      */
31005     bind : function(ds){
31006         ds.on("beforeload", this.beforeLoad, this);
31007         ds.on("load", this.onLoad, this);
31008         ds.on("loadexception", this.onLoadError, this);
31009         ds.on("remove", this.updateInfo, this);
31010         ds.on("add", this.updateInfo, this);
31011         this.ds = ds;
31012     }
31013 });/*
31014  * Based on:
31015  * Ext JS Library 1.1.1
31016  * Copyright(c) 2006-2007, Ext JS, LLC.
31017  *
31018  * Originally Released Under LGPL - original licence link has changed is not relivant.
31019  *
31020  * Fork - LGPL
31021  * <script type="text/javascript">
31022  */
31023
31024 /**
31025  * @class Roo.Resizable
31026  * @extends Roo.util.Observable
31027  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
31028  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
31029  * 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
31030  * the element will be wrapped for you automatically.</p>
31031  * <p>Here is the list of valid resize handles:</p>
31032  * <pre>
31033 Value   Description
31034 ------  -------------------
31035  'n'     north
31036  's'     south
31037  'e'     east
31038  'w'     west
31039  'nw'    northwest
31040  'sw'    southwest
31041  'se'    southeast
31042  'ne'    northeast
31043  'hd'    horizontal drag
31044  'all'   all
31045 </pre>
31046  * <p>Here's an example showing the creation of a typical Resizable:</p>
31047  * <pre><code>
31048 var resizer = new Roo.Resizable("element-id", {
31049     handles: 'all',
31050     minWidth: 200,
31051     minHeight: 100,
31052     maxWidth: 500,
31053     maxHeight: 400,
31054     pinned: true
31055 });
31056 resizer.on("resize", myHandler);
31057 </code></pre>
31058  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
31059  * resizer.east.setDisplayed(false);</p>
31060  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
31061  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
31062  * resize operation's new size (defaults to [0, 0])
31063  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31064  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31065  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31066  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31067  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31068  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31069  * @cfg {Number} width The width of the element in pixels (defaults to null)
31070  * @cfg {Number} height The height of the element in pixels (defaults to null)
31071  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31072  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31073  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31074  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31075  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31076  * in favor of the handles config option (defaults to false)
31077  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31078  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31079  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31080  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31081  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31082  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31083  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31084  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31085  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31086  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31087  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31088  * @constructor
31089  * Create a new resizable component
31090  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31091  * @param {Object} config configuration options
31092   */
31093 Roo.Resizable = function(el, config)
31094 {
31095     this.el = Roo.get(el);
31096
31097     if(config && config.wrap){
31098         config.resizeChild = this.el;
31099         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31100         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31101         this.el.setStyle("overflow", "hidden");
31102         this.el.setPositioning(config.resizeChild.getPositioning());
31103         config.resizeChild.clearPositioning();
31104         if(!config.width || !config.height){
31105             var csize = config.resizeChild.getSize();
31106             this.el.setSize(csize.width, csize.height);
31107         }
31108         if(config.pinned && !config.adjustments){
31109             config.adjustments = "auto";
31110         }
31111     }
31112
31113     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31114     this.proxy.unselectable();
31115     this.proxy.enableDisplayMode('block');
31116
31117     Roo.apply(this, config);
31118
31119     if(this.pinned){
31120         this.disableTrackOver = true;
31121         this.el.addClass("x-resizable-pinned");
31122     }
31123     // if the element isn't positioned, make it relative
31124     var position = this.el.getStyle("position");
31125     if(position != "absolute" && position != "fixed"){
31126         this.el.setStyle("position", "relative");
31127     }
31128     if(!this.handles){ // no handles passed, must be legacy style
31129         this.handles = 's,e,se';
31130         if(this.multiDirectional){
31131             this.handles += ',n,w';
31132         }
31133     }
31134     if(this.handles == "all"){
31135         this.handles = "n s e w ne nw se sw";
31136     }
31137     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31138     var ps = Roo.Resizable.positions;
31139     for(var i = 0, len = hs.length; i < len; i++){
31140         if(hs[i] && ps[hs[i]]){
31141             var pos = ps[hs[i]];
31142             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31143         }
31144     }
31145     // legacy
31146     this.corner = this.southeast;
31147     
31148     // updateBox = the box can move..
31149     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31150         this.updateBox = true;
31151     }
31152
31153     this.activeHandle = null;
31154
31155     if(this.resizeChild){
31156         if(typeof this.resizeChild == "boolean"){
31157             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31158         }else{
31159             this.resizeChild = Roo.get(this.resizeChild, true);
31160         }
31161     }
31162     
31163     if(this.adjustments == "auto"){
31164         var rc = this.resizeChild;
31165         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31166         if(rc && (hw || hn)){
31167             rc.position("relative");
31168             rc.setLeft(hw ? hw.el.getWidth() : 0);
31169             rc.setTop(hn ? hn.el.getHeight() : 0);
31170         }
31171         this.adjustments = [
31172             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31173             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31174         ];
31175     }
31176
31177     if(this.draggable){
31178         this.dd = this.dynamic ?
31179             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31180         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31181     }
31182
31183     // public events
31184     this.addEvents({
31185         /**
31186          * @event beforeresize
31187          * Fired before resize is allowed. Set enabled to false to cancel resize.
31188          * @param {Roo.Resizable} this
31189          * @param {Roo.EventObject} e The mousedown event
31190          */
31191         "beforeresize" : true,
31192         /**
31193          * @event resizing
31194          * Fired a resizing.
31195          * @param {Roo.Resizable} this
31196          * @param {Number} x The new x position
31197          * @param {Number} y The new y position
31198          * @param {Number} w The new w width
31199          * @param {Number} h The new h hight
31200          * @param {Roo.EventObject} e The mouseup event
31201          */
31202         "resizing" : true,
31203         /**
31204          * @event resize
31205          * Fired after a resize.
31206          * @param {Roo.Resizable} this
31207          * @param {Number} width The new width
31208          * @param {Number} height The new height
31209          * @param {Roo.EventObject} e The mouseup event
31210          */
31211         "resize" : true
31212     });
31213
31214     if(this.width !== null && this.height !== null){
31215         this.resizeTo(this.width, this.height);
31216     }else{
31217         this.updateChildSize();
31218     }
31219     if(Roo.isIE){
31220         this.el.dom.style.zoom = 1;
31221     }
31222     Roo.Resizable.superclass.constructor.call(this);
31223 };
31224
31225 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31226         resizeChild : false,
31227         adjustments : [0, 0],
31228         minWidth : 5,
31229         minHeight : 5,
31230         maxWidth : 10000,
31231         maxHeight : 10000,
31232         enabled : true,
31233         animate : false,
31234         duration : .35,
31235         dynamic : false,
31236         handles : false,
31237         multiDirectional : false,
31238         disableTrackOver : false,
31239         easing : 'easeOutStrong',
31240         widthIncrement : 0,
31241         heightIncrement : 0,
31242         pinned : false,
31243         width : null,
31244         height : null,
31245         preserveRatio : false,
31246         transparent: false,
31247         minX: 0,
31248         minY: 0,
31249         draggable: false,
31250
31251         /**
31252          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31253          */
31254         constrainTo: undefined,
31255         /**
31256          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31257          */
31258         resizeRegion: undefined,
31259
31260
31261     /**
31262      * Perform a manual resize
31263      * @param {Number} width
31264      * @param {Number} height
31265      */
31266     resizeTo : function(width, height){
31267         this.el.setSize(width, height);
31268         this.updateChildSize();
31269         this.fireEvent("resize", this, width, height, null);
31270     },
31271
31272     // private
31273     startSizing : function(e, handle){
31274         this.fireEvent("beforeresize", this, e);
31275         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31276
31277             if(!this.overlay){
31278                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31279                 this.overlay.unselectable();
31280                 this.overlay.enableDisplayMode("block");
31281                 this.overlay.on("mousemove", this.onMouseMove, this);
31282                 this.overlay.on("mouseup", this.onMouseUp, this);
31283             }
31284             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31285
31286             this.resizing = true;
31287             this.startBox = this.el.getBox();
31288             this.startPoint = e.getXY();
31289             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31290                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31291
31292             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31293             this.overlay.show();
31294
31295             if(this.constrainTo) {
31296                 var ct = Roo.get(this.constrainTo);
31297                 this.resizeRegion = ct.getRegion().adjust(
31298                     ct.getFrameWidth('t'),
31299                     ct.getFrameWidth('l'),
31300                     -ct.getFrameWidth('b'),
31301                     -ct.getFrameWidth('r')
31302                 );
31303             }
31304
31305             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31306             this.proxy.show();
31307             this.proxy.setBox(this.startBox);
31308             if(!this.dynamic){
31309                 this.proxy.setStyle('visibility', 'visible');
31310             }
31311         }
31312     },
31313
31314     // private
31315     onMouseDown : function(handle, e){
31316         if(this.enabled){
31317             e.stopEvent();
31318             this.activeHandle = handle;
31319             this.startSizing(e, handle);
31320         }
31321     },
31322
31323     // private
31324     onMouseUp : function(e){
31325         var size = this.resizeElement();
31326         this.resizing = false;
31327         this.handleOut();
31328         this.overlay.hide();
31329         this.proxy.hide();
31330         this.fireEvent("resize", this, size.width, size.height, e);
31331     },
31332
31333     // private
31334     updateChildSize : function(){
31335         
31336         if(this.resizeChild){
31337             var el = this.el;
31338             var child = this.resizeChild;
31339             var adj = this.adjustments;
31340             if(el.dom.offsetWidth){
31341                 var b = el.getSize(true);
31342                 child.setSize(b.width+adj[0], b.height+adj[1]);
31343             }
31344             // Second call here for IE
31345             // The first call enables instant resizing and
31346             // the second call corrects scroll bars if they
31347             // exist
31348             if(Roo.isIE){
31349                 setTimeout(function(){
31350                     if(el.dom.offsetWidth){
31351                         var b = el.getSize(true);
31352                         child.setSize(b.width+adj[0], b.height+adj[1]);
31353                     }
31354                 }, 10);
31355             }
31356         }
31357     },
31358
31359     // private
31360     snap : function(value, inc, min){
31361         if(!inc || !value) {
31362             return value;
31363         }
31364         var newValue = value;
31365         var m = value % inc;
31366         if(m > 0){
31367             if(m > (inc/2)){
31368                 newValue = value + (inc-m);
31369             }else{
31370                 newValue = value - m;
31371             }
31372         }
31373         return Math.max(min, newValue);
31374     },
31375
31376     // private
31377     resizeElement : function(){
31378         var box = this.proxy.getBox();
31379         if(this.updateBox){
31380             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31381         }else{
31382             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31383         }
31384         this.updateChildSize();
31385         if(!this.dynamic){
31386             this.proxy.hide();
31387         }
31388         return box;
31389     },
31390
31391     // private
31392     constrain : function(v, diff, m, mx){
31393         if(v - diff < m){
31394             diff = v - m;
31395         }else if(v - diff > mx){
31396             diff = mx - v;
31397         }
31398         return diff;
31399     },
31400
31401     // private
31402     onMouseMove : function(e){
31403         
31404         if(this.enabled){
31405             try{// try catch so if something goes wrong the user doesn't get hung
31406
31407             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31408                 return;
31409             }
31410
31411             //var curXY = this.startPoint;
31412             var curSize = this.curSize || this.startBox;
31413             var x = this.startBox.x, y = this.startBox.y;
31414             var ox = x, oy = y;
31415             var w = curSize.width, h = curSize.height;
31416             var ow = w, oh = h;
31417             var mw = this.minWidth, mh = this.minHeight;
31418             var mxw = this.maxWidth, mxh = this.maxHeight;
31419             var wi = this.widthIncrement;
31420             var hi = this.heightIncrement;
31421
31422             var eventXY = e.getXY();
31423             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31424             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31425
31426             var pos = this.activeHandle.position;
31427
31428             switch(pos){
31429                 case "east":
31430                     w += diffX;
31431                     w = Math.min(Math.max(mw, w), mxw);
31432                     break;
31433              
31434                 case "south":
31435                     h += diffY;
31436                     h = Math.min(Math.max(mh, h), mxh);
31437                     break;
31438                 case "southeast":
31439                     w += diffX;
31440                     h += diffY;
31441                     w = Math.min(Math.max(mw, w), mxw);
31442                     h = Math.min(Math.max(mh, h), mxh);
31443                     break;
31444                 case "north":
31445                     diffY = this.constrain(h, diffY, mh, mxh);
31446                     y += diffY;
31447                     h -= diffY;
31448                     break;
31449                 case "hdrag":
31450                     
31451                     if (wi) {
31452                         var adiffX = Math.abs(diffX);
31453                         var sub = (adiffX % wi); // how much 
31454                         if (sub > (wi/2)) { // far enough to snap
31455                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31456                         } else {
31457                             // remove difference.. 
31458                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31459                         }
31460                     }
31461                     x += diffX;
31462                     x = Math.max(this.minX, x);
31463                     break;
31464                 case "west":
31465                     diffX = this.constrain(w, diffX, mw, mxw);
31466                     x += diffX;
31467                     w -= diffX;
31468                     break;
31469                 case "northeast":
31470                     w += diffX;
31471                     w = Math.min(Math.max(mw, w), mxw);
31472                     diffY = this.constrain(h, diffY, mh, mxh);
31473                     y += diffY;
31474                     h -= diffY;
31475                     break;
31476                 case "northwest":
31477                     diffX = this.constrain(w, diffX, mw, mxw);
31478                     diffY = this.constrain(h, diffY, mh, mxh);
31479                     y += diffY;
31480                     h -= diffY;
31481                     x += diffX;
31482                     w -= diffX;
31483                     break;
31484                case "southwest":
31485                     diffX = this.constrain(w, diffX, mw, mxw);
31486                     h += diffY;
31487                     h = Math.min(Math.max(mh, h), mxh);
31488                     x += diffX;
31489                     w -= diffX;
31490                     break;
31491             }
31492
31493             var sw = this.snap(w, wi, mw);
31494             var sh = this.snap(h, hi, mh);
31495             if(sw != w || sh != h){
31496                 switch(pos){
31497                     case "northeast":
31498                         y -= sh - h;
31499                     break;
31500                     case "north":
31501                         y -= sh - h;
31502                         break;
31503                     case "southwest":
31504                         x -= sw - w;
31505                     break;
31506                     case "west":
31507                         x -= sw - w;
31508                         break;
31509                     case "northwest":
31510                         x -= sw - w;
31511                         y -= sh - h;
31512                     break;
31513                 }
31514                 w = sw;
31515                 h = sh;
31516             }
31517
31518             if(this.preserveRatio){
31519                 switch(pos){
31520                     case "southeast":
31521                     case "east":
31522                         h = oh * (w/ow);
31523                         h = Math.min(Math.max(mh, h), mxh);
31524                         w = ow * (h/oh);
31525                        break;
31526                     case "south":
31527                         w = ow * (h/oh);
31528                         w = Math.min(Math.max(mw, w), mxw);
31529                         h = oh * (w/ow);
31530                         break;
31531                     case "northeast":
31532                         w = ow * (h/oh);
31533                         w = Math.min(Math.max(mw, w), mxw);
31534                         h = oh * (w/ow);
31535                     break;
31536                     case "north":
31537                         var tw = w;
31538                         w = ow * (h/oh);
31539                         w = Math.min(Math.max(mw, w), mxw);
31540                         h = oh * (w/ow);
31541                         x += (tw - w) / 2;
31542                         break;
31543                     case "southwest":
31544                         h = oh * (w/ow);
31545                         h = Math.min(Math.max(mh, h), mxh);
31546                         var tw = w;
31547                         w = ow * (h/oh);
31548                         x += tw - w;
31549                         break;
31550                     case "west":
31551                         var th = h;
31552                         h = oh * (w/ow);
31553                         h = Math.min(Math.max(mh, h), mxh);
31554                         y += (th - h) / 2;
31555                         var tw = w;
31556                         w = ow * (h/oh);
31557                         x += tw - w;
31558                        break;
31559                     case "northwest":
31560                         var tw = w;
31561                         var th = h;
31562                         h = oh * (w/ow);
31563                         h = Math.min(Math.max(mh, h), mxh);
31564                         w = ow * (h/oh);
31565                         y += th - h;
31566                         x += tw - w;
31567                        break;
31568
31569                 }
31570             }
31571             if (pos == 'hdrag') {
31572                 w = ow;
31573             }
31574             this.proxy.setBounds(x, y, w, h);
31575             if(this.dynamic){
31576                 this.resizeElement();
31577             }
31578             }catch(e){}
31579         }
31580         this.fireEvent("resizing", this, x, y, w, h, e);
31581     },
31582
31583     // private
31584     handleOver : function(){
31585         if(this.enabled){
31586             this.el.addClass("x-resizable-over");
31587         }
31588     },
31589
31590     // private
31591     handleOut : function(){
31592         if(!this.resizing){
31593             this.el.removeClass("x-resizable-over");
31594         }
31595     },
31596
31597     /**
31598      * Returns the element this component is bound to.
31599      * @return {Roo.Element}
31600      */
31601     getEl : function(){
31602         return this.el;
31603     },
31604
31605     /**
31606      * Returns the resizeChild element (or null).
31607      * @return {Roo.Element}
31608      */
31609     getResizeChild : function(){
31610         return this.resizeChild;
31611     },
31612     groupHandler : function()
31613     {
31614         
31615     },
31616     /**
31617      * Destroys this resizable. If the element was wrapped and
31618      * removeEl is not true then the element remains.
31619      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31620      */
31621     destroy : function(removeEl){
31622         this.proxy.remove();
31623         if(this.overlay){
31624             this.overlay.removeAllListeners();
31625             this.overlay.remove();
31626         }
31627         var ps = Roo.Resizable.positions;
31628         for(var k in ps){
31629             if(typeof ps[k] != "function" && this[ps[k]]){
31630                 var h = this[ps[k]];
31631                 h.el.removeAllListeners();
31632                 h.el.remove();
31633             }
31634         }
31635         if(removeEl){
31636             this.el.update("");
31637             this.el.remove();
31638         }
31639     }
31640 });
31641
31642 // private
31643 // hash to map config positions to true positions
31644 Roo.Resizable.positions = {
31645     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31646     hd: "hdrag"
31647 };
31648
31649 // private
31650 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31651     if(!this.tpl){
31652         // only initialize the template if resizable is used
31653         var tpl = Roo.DomHelper.createTemplate(
31654             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31655         );
31656         tpl.compile();
31657         Roo.Resizable.Handle.prototype.tpl = tpl;
31658     }
31659     this.position = pos;
31660     this.rz = rz;
31661     // show north drag fro topdra
31662     var handlepos = pos == 'hdrag' ? 'north' : pos;
31663     
31664     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31665     if (pos == 'hdrag') {
31666         this.el.setStyle('cursor', 'pointer');
31667     }
31668     this.el.unselectable();
31669     if(transparent){
31670         this.el.setOpacity(0);
31671     }
31672     this.el.on("mousedown", this.onMouseDown, this);
31673     if(!disableTrackOver){
31674         this.el.on("mouseover", this.onMouseOver, this);
31675         this.el.on("mouseout", this.onMouseOut, this);
31676     }
31677 };
31678
31679 // private
31680 Roo.Resizable.Handle.prototype = {
31681     afterResize : function(rz){
31682         Roo.log('after?');
31683         // do nothing
31684     },
31685     // private
31686     onMouseDown : function(e){
31687         this.rz.onMouseDown(this, e);
31688     },
31689     // private
31690     onMouseOver : function(e){
31691         this.rz.handleOver(this, e);
31692     },
31693     // private
31694     onMouseOut : function(e){
31695         this.rz.handleOut(this, e);
31696     }
31697 };/*
31698  * Based on:
31699  * Ext JS Library 1.1.1
31700  * Copyright(c) 2006-2007, Ext JS, LLC.
31701  *
31702  * Originally Released Under LGPL - original licence link has changed is not relivant.
31703  *
31704  * Fork - LGPL
31705  * <script type="text/javascript">
31706  */
31707
31708 /**
31709  * @class Roo.Editor
31710  * @extends Roo.Component
31711  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31712  * @constructor
31713  * Create a new Editor
31714  * @param {Roo.form.Field} field The Field object (or descendant)
31715  * @param {Object} config The config object
31716  */
31717 Roo.Editor = function(field, config){
31718     Roo.Editor.superclass.constructor.call(this, config);
31719     this.field = field;
31720     this.addEvents({
31721         /**
31722              * @event beforestartedit
31723              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31724              * false from the handler of this event.
31725              * @param {Editor} this
31726              * @param {Roo.Element} boundEl The underlying element bound to this editor
31727              * @param {Mixed} value The field value being set
31728              */
31729         "beforestartedit" : true,
31730         /**
31731              * @event startedit
31732              * Fires when this editor is displayed
31733              * @param {Roo.Element} boundEl The underlying element bound to this editor
31734              * @param {Mixed} value The starting field value
31735              */
31736         "startedit" : true,
31737         /**
31738              * @event beforecomplete
31739              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31740              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31741              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31742              * event will not fire since no edit actually occurred.
31743              * @param {Editor} this
31744              * @param {Mixed} value The current field value
31745              * @param {Mixed} startValue The original field value
31746              */
31747         "beforecomplete" : true,
31748         /**
31749              * @event complete
31750              * Fires after editing is complete and any changed value has been written to the underlying field.
31751              * @param {Editor} this
31752              * @param {Mixed} value The current field value
31753              * @param {Mixed} startValue The original field value
31754              */
31755         "complete" : true,
31756         /**
31757          * @event specialkey
31758          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31759          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31760          * @param {Roo.form.Field} this
31761          * @param {Roo.EventObject} e The event object
31762          */
31763         "specialkey" : true
31764     });
31765 };
31766
31767 Roo.extend(Roo.Editor, Roo.Component, {
31768     /**
31769      * @cfg {Boolean/String} autosize
31770      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31771      * or "height" to adopt the height only (defaults to false)
31772      */
31773     /**
31774      * @cfg {Boolean} revertInvalid
31775      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31776      * validation fails (defaults to true)
31777      */
31778     /**
31779      * @cfg {Boolean} ignoreNoChange
31780      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31781      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31782      * will never be ignored.
31783      */
31784     /**
31785      * @cfg {Boolean} hideEl
31786      * False to keep the bound element visible while the editor is displayed (defaults to true)
31787      */
31788     /**
31789      * @cfg {Mixed} value
31790      * The data value of the underlying field (defaults to "")
31791      */
31792     value : "",
31793     /**
31794      * @cfg {String} alignment
31795      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31796      */
31797     alignment: "c-c?",
31798     /**
31799      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31800      * for bottom-right shadow (defaults to "frame")
31801      */
31802     shadow : "frame",
31803     /**
31804      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31805      */
31806     constrain : false,
31807     /**
31808      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31809      */
31810     completeOnEnter : false,
31811     /**
31812      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31813      */
31814     cancelOnEsc : false,
31815     /**
31816      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31817      */
31818     updateEl : false,
31819
31820     // private
31821     onRender : function(ct, position){
31822         this.el = new Roo.Layer({
31823             shadow: this.shadow,
31824             cls: "x-editor",
31825             parentEl : ct,
31826             shim : this.shim,
31827             shadowOffset:4,
31828             id: this.id,
31829             constrain: this.constrain
31830         });
31831         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31832         if(this.field.msgTarget != 'title'){
31833             this.field.msgTarget = 'qtip';
31834         }
31835         this.field.render(this.el);
31836         if(Roo.isGecko){
31837             this.field.el.dom.setAttribute('autocomplete', 'off');
31838         }
31839         this.field.on("specialkey", this.onSpecialKey, this);
31840         if(this.swallowKeys){
31841             this.field.el.swallowEvent(['keydown','keypress']);
31842         }
31843         this.field.show();
31844         this.field.on("blur", this.onBlur, this);
31845         if(this.field.grow){
31846             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31847         }
31848     },
31849
31850     onSpecialKey : function(field, e)
31851     {
31852         //Roo.log('editor onSpecialKey');
31853         if(this.completeOnEnter && e.getKey() == e.ENTER){
31854             e.stopEvent();
31855             this.completeEdit();
31856             return;
31857         }
31858         // do not fire special key otherwise it might hide close the editor...
31859         if(e.getKey() == e.ENTER){    
31860             return;
31861         }
31862         if(this.cancelOnEsc && e.getKey() == e.ESC){
31863             this.cancelEdit();
31864             return;
31865         } 
31866         this.fireEvent('specialkey', field, e);
31867     
31868     },
31869
31870     /**
31871      * Starts the editing process and shows the editor.
31872      * @param {String/HTMLElement/Element} el The element to edit
31873      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31874       * to the innerHTML of el.
31875      */
31876     startEdit : function(el, value){
31877         if(this.editing){
31878             this.completeEdit();
31879         }
31880         this.boundEl = Roo.get(el);
31881         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31882         if(!this.rendered){
31883             this.render(this.parentEl || document.body);
31884         }
31885         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31886             return;
31887         }
31888         this.startValue = v;
31889         this.field.setValue(v);
31890         if(this.autoSize){
31891             var sz = this.boundEl.getSize();
31892             switch(this.autoSize){
31893                 case "width":
31894                 this.setSize(sz.width,  "");
31895                 break;
31896                 case "height":
31897                 this.setSize("",  sz.height);
31898                 break;
31899                 default:
31900                 this.setSize(sz.width,  sz.height);
31901             }
31902         }
31903         this.el.alignTo(this.boundEl, this.alignment);
31904         this.editing = true;
31905         if(Roo.QuickTips){
31906             Roo.QuickTips.disable();
31907         }
31908         this.show();
31909     },
31910
31911     /**
31912      * Sets the height and width of this editor.
31913      * @param {Number} width The new width
31914      * @param {Number} height The new height
31915      */
31916     setSize : function(w, h){
31917         this.field.setSize(w, h);
31918         if(this.el){
31919             this.el.sync();
31920         }
31921     },
31922
31923     /**
31924      * Realigns the editor to the bound field based on the current alignment config value.
31925      */
31926     realign : function(){
31927         this.el.alignTo(this.boundEl, this.alignment);
31928     },
31929
31930     /**
31931      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31932      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31933      */
31934     completeEdit : function(remainVisible){
31935         if(!this.editing){
31936             return;
31937         }
31938         var v = this.getValue();
31939         if(this.revertInvalid !== false && !this.field.isValid()){
31940             v = this.startValue;
31941             this.cancelEdit(true);
31942         }
31943         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31944             this.editing = false;
31945             this.hide();
31946             return;
31947         }
31948         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31949             this.editing = false;
31950             if(this.updateEl && this.boundEl){
31951                 this.boundEl.update(v);
31952             }
31953             if(remainVisible !== true){
31954                 this.hide();
31955             }
31956             this.fireEvent("complete", this, v, this.startValue);
31957         }
31958     },
31959
31960     // private
31961     onShow : function(){
31962         this.el.show();
31963         if(this.hideEl !== false){
31964             this.boundEl.hide();
31965         }
31966         this.field.show();
31967         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31968             this.fixIEFocus = true;
31969             this.deferredFocus.defer(50, this);
31970         }else{
31971             this.field.focus();
31972         }
31973         this.fireEvent("startedit", this.boundEl, this.startValue);
31974     },
31975
31976     deferredFocus : function(){
31977         if(this.editing){
31978             this.field.focus();
31979         }
31980     },
31981
31982     /**
31983      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31984      * reverted to the original starting value.
31985      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31986      * cancel (defaults to false)
31987      */
31988     cancelEdit : function(remainVisible){
31989         if(this.editing){
31990             this.setValue(this.startValue);
31991             if(remainVisible !== true){
31992                 this.hide();
31993             }
31994         }
31995     },
31996
31997     // private
31998     onBlur : function(){
31999         if(this.allowBlur !== true && this.editing){
32000             this.completeEdit();
32001         }
32002     },
32003
32004     // private
32005     onHide : function(){
32006         if(this.editing){
32007             this.completeEdit();
32008             return;
32009         }
32010         this.field.blur();
32011         if(this.field.collapse){
32012             this.field.collapse();
32013         }
32014         this.el.hide();
32015         if(this.hideEl !== false){
32016             this.boundEl.show();
32017         }
32018         if(Roo.QuickTips){
32019             Roo.QuickTips.enable();
32020         }
32021     },
32022
32023     /**
32024      * Sets the data value of the editor
32025      * @param {Mixed} value Any valid value supported by the underlying field
32026      */
32027     setValue : function(v){
32028         this.field.setValue(v);
32029     },
32030
32031     /**
32032      * Gets the data value of the editor
32033      * @return {Mixed} The data value
32034      */
32035     getValue : function(){
32036         return this.field.getValue();
32037     }
32038 });/*
32039  * Based on:
32040  * Ext JS Library 1.1.1
32041  * Copyright(c) 2006-2007, Ext JS, LLC.
32042  *
32043  * Originally Released Under LGPL - original licence link has changed is not relivant.
32044  *
32045  * Fork - LGPL
32046  * <script type="text/javascript">
32047  */
32048  
32049 /**
32050  * @class Roo.BasicDialog
32051  * @extends Roo.util.Observable
32052  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
32053  * <pre><code>
32054 var dlg = new Roo.BasicDialog("my-dlg", {
32055     height: 200,
32056     width: 300,
32057     minHeight: 100,
32058     minWidth: 150,
32059     modal: true,
32060     proxyDrag: true,
32061     shadow: true
32062 });
32063 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32064 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32065 dlg.addButton('Cancel', dlg.hide, dlg);
32066 dlg.show();
32067 </code></pre>
32068   <b>A Dialog should always be a direct child of the body element.</b>
32069  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32070  * @cfg {String} title Default text to display in the title bar (defaults to null)
32071  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32072  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32073  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32074  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32075  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32076  * (defaults to null with no animation)
32077  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32078  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32079  * property for valid values (defaults to 'all')
32080  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32081  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32082  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32083  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32084  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32085  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32086  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32087  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32088  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32089  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32090  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32091  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32092  * draggable = true (defaults to false)
32093  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32094  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32095  * shadow (defaults to false)
32096  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32097  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32098  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32099  * @cfg {Array} buttons Array of buttons
32100  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32101  * @constructor
32102  * Create a new BasicDialog.
32103  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32104  * @param {Object} config Configuration options
32105  */
32106 Roo.BasicDialog = function(el, config){
32107     this.el = Roo.get(el);
32108     var dh = Roo.DomHelper;
32109     if(!this.el && config && config.autoCreate){
32110         if(typeof config.autoCreate == "object"){
32111             if(!config.autoCreate.id){
32112                 config.autoCreate.id = el;
32113             }
32114             this.el = dh.append(document.body,
32115                         config.autoCreate, true);
32116         }else{
32117             this.el = dh.append(document.body,
32118                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32119         }
32120     }
32121     el = this.el;
32122     el.setDisplayed(true);
32123     el.hide = this.hideAction;
32124     this.id = el.id;
32125     el.addClass("x-dlg");
32126
32127     Roo.apply(this, config);
32128
32129     this.proxy = el.createProxy("x-dlg-proxy");
32130     this.proxy.hide = this.hideAction;
32131     this.proxy.setOpacity(.5);
32132     this.proxy.hide();
32133
32134     if(config.width){
32135         el.setWidth(config.width);
32136     }
32137     if(config.height){
32138         el.setHeight(config.height);
32139     }
32140     this.size = el.getSize();
32141     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32142         this.xy = [config.x,config.y];
32143     }else{
32144         this.xy = el.getCenterXY(true);
32145     }
32146     /** The header element @type Roo.Element */
32147     this.header = el.child("> .x-dlg-hd");
32148     /** The body element @type Roo.Element */
32149     this.body = el.child("> .x-dlg-bd");
32150     /** The footer element @type Roo.Element */
32151     this.footer = el.child("> .x-dlg-ft");
32152
32153     if(!this.header){
32154         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32155     }
32156     if(!this.body){
32157         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32158     }
32159
32160     this.header.unselectable();
32161     if(this.title){
32162         this.header.update(this.title);
32163     }
32164     // this element allows the dialog to be focused for keyboard event
32165     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32166     this.focusEl.swallowEvent("click", true);
32167
32168     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32169
32170     // wrap the body and footer for special rendering
32171     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32172     if(this.footer){
32173         this.bwrap.dom.appendChild(this.footer.dom);
32174     }
32175
32176     this.bg = this.el.createChild({
32177         tag: "div", cls:"x-dlg-bg",
32178         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32179     });
32180     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32181
32182
32183     if(this.autoScroll !== false && !this.autoTabs){
32184         this.body.setStyle("overflow", "auto");
32185     }
32186
32187     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32188
32189     if(this.closable !== false){
32190         this.el.addClass("x-dlg-closable");
32191         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32192         this.close.on("click", this.closeClick, this);
32193         this.close.addClassOnOver("x-dlg-close-over");
32194     }
32195     if(this.collapsible !== false){
32196         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32197         this.collapseBtn.on("click", this.collapseClick, this);
32198         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32199         this.header.on("dblclick", this.collapseClick, this);
32200     }
32201     if(this.resizable !== false){
32202         this.el.addClass("x-dlg-resizable");
32203         this.resizer = new Roo.Resizable(el, {
32204             minWidth: this.minWidth || 80,
32205             minHeight:this.minHeight || 80,
32206             handles: this.resizeHandles || "all",
32207             pinned: true
32208         });
32209         this.resizer.on("beforeresize", this.beforeResize, this);
32210         this.resizer.on("resize", this.onResize, this);
32211     }
32212     if(this.draggable !== false){
32213         el.addClass("x-dlg-draggable");
32214         if (!this.proxyDrag) {
32215             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32216         }
32217         else {
32218             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32219         }
32220         dd.setHandleElId(this.header.id);
32221         dd.endDrag = this.endMove.createDelegate(this);
32222         dd.startDrag = this.startMove.createDelegate(this);
32223         dd.onDrag = this.onDrag.createDelegate(this);
32224         dd.scroll = false;
32225         this.dd = dd;
32226     }
32227     if(this.modal){
32228         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32229         this.mask.enableDisplayMode("block");
32230         this.mask.hide();
32231         this.el.addClass("x-dlg-modal");
32232     }
32233     if(this.shadow){
32234         this.shadow = new Roo.Shadow({
32235             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32236             offset : this.shadowOffset
32237         });
32238     }else{
32239         this.shadowOffset = 0;
32240     }
32241     if(Roo.useShims && this.shim !== false){
32242         this.shim = this.el.createShim();
32243         this.shim.hide = this.hideAction;
32244         this.shim.hide();
32245     }else{
32246         this.shim = false;
32247     }
32248     if(this.autoTabs){
32249         this.initTabs();
32250     }
32251     if (this.buttons) { 
32252         var bts= this.buttons;
32253         this.buttons = [];
32254         Roo.each(bts, function(b) {
32255             this.addButton(b);
32256         }, this);
32257     }
32258     
32259     
32260     this.addEvents({
32261         /**
32262          * @event keydown
32263          * Fires when a key is pressed
32264          * @param {Roo.BasicDialog} this
32265          * @param {Roo.EventObject} e
32266          */
32267         "keydown" : true,
32268         /**
32269          * @event move
32270          * Fires when this dialog is moved by the user.
32271          * @param {Roo.BasicDialog} this
32272          * @param {Number} x The new page X
32273          * @param {Number} y The new page Y
32274          */
32275         "move" : true,
32276         /**
32277          * @event resize
32278          * Fires when this dialog is resized by the user.
32279          * @param {Roo.BasicDialog} this
32280          * @param {Number} width The new width
32281          * @param {Number} height The new height
32282          */
32283         "resize" : true,
32284         /**
32285          * @event beforehide
32286          * Fires before this dialog is hidden.
32287          * @param {Roo.BasicDialog} this
32288          */
32289         "beforehide" : true,
32290         /**
32291          * @event hide
32292          * Fires when this dialog is hidden.
32293          * @param {Roo.BasicDialog} this
32294          */
32295         "hide" : true,
32296         /**
32297          * @event beforeshow
32298          * Fires before this dialog is shown.
32299          * @param {Roo.BasicDialog} this
32300          */
32301         "beforeshow" : true,
32302         /**
32303          * @event show
32304          * Fires when this dialog is shown.
32305          * @param {Roo.BasicDialog} this
32306          */
32307         "show" : true
32308     });
32309     el.on("keydown", this.onKeyDown, this);
32310     el.on("mousedown", this.toFront, this);
32311     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32312     this.el.hide();
32313     Roo.DialogManager.register(this);
32314     Roo.BasicDialog.superclass.constructor.call(this);
32315 };
32316
32317 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32318     shadowOffset: Roo.isIE ? 6 : 5,
32319     minHeight: 80,
32320     minWidth: 200,
32321     minButtonWidth: 75,
32322     defaultButton: null,
32323     buttonAlign: "right",
32324     tabTag: 'div',
32325     firstShow: true,
32326
32327     /**
32328      * Sets the dialog title text
32329      * @param {String} text The title text to display
32330      * @return {Roo.BasicDialog} this
32331      */
32332     setTitle : function(text){
32333         this.header.update(text);
32334         return this;
32335     },
32336
32337     // private
32338     closeClick : function(){
32339         this.hide();
32340     },
32341
32342     // private
32343     collapseClick : function(){
32344         this[this.collapsed ? "expand" : "collapse"]();
32345     },
32346
32347     /**
32348      * Collapses the dialog to its minimized state (only the title bar is visible).
32349      * Equivalent to the user clicking the collapse dialog button.
32350      */
32351     collapse : function(){
32352         if(!this.collapsed){
32353             this.collapsed = true;
32354             this.el.addClass("x-dlg-collapsed");
32355             this.restoreHeight = this.el.getHeight();
32356             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32357         }
32358     },
32359
32360     /**
32361      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32362      * clicking the expand dialog button.
32363      */
32364     expand : function(){
32365         if(this.collapsed){
32366             this.collapsed = false;
32367             this.el.removeClass("x-dlg-collapsed");
32368             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32369         }
32370     },
32371
32372     /**
32373      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32374      * @return {Roo.TabPanel} The tabs component
32375      */
32376     initTabs : function(){
32377         var tabs = this.getTabs();
32378         while(tabs.getTab(0)){
32379             tabs.removeTab(0);
32380         }
32381         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32382             var dom = el.dom;
32383             tabs.addTab(Roo.id(dom), dom.title);
32384             dom.title = "";
32385         });
32386         tabs.activate(0);
32387         return tabs;
32388     },
32389
32390     // private
32391     beforeResize : function(){
32392         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32393     },
32394
32395     // private
32396     onResize : function(){
32397         this.refreshSize();
32398         this.syncBodyHeight();
32399         this.adjustAssets();
32400         this.focus();
32401         this.fireEvent("resize", this, this.size.width, this.size.height);
32402     },
32403
32404     // private
32405     onKeyDown : function(e){
32406         if(this.isVisible()){
32407             this.fireEvent("keydown", this, e);
32408         }
32409     },
32410
32411     /**
32412      * Resizes the dialog.
32413      * @param {Number} width
32414      * @param {Number} height
32415      * @return {Roo.BasicDialog} this
32416      */
32417     resizeTo : function(width, height){
32418         this.el.setSize(width, height);
32419         this.size = {width: width, height: height};
32420         this.syncBodyHeight();
32421         if(this.fixedcenter){
32422             this.center();
32423         }
32424         if(this.isVisible()){
32425             this.constrainXY();
32426             this.adjustAssets();
32427         }
32428         this.fireEvent("resize", this, width, height);
32429         return this;
32430     },
32431
32432
32433     /**
32434      * Resizes the dialog to fit the specified content size.
32435      * @param {Number} width
32436      * @param {Number} height
32437      * @return {Roo.BasicDialog} this
32438      */
32439     setContentSize : function(w, h){
32440         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32441         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32442         //if(!this.el.isBorderBox()){
32443             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32444             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32445         //}
32446         if(this.tabs){
32447             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32448             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32449         }
32450         this.resizeTo(w, h);
32451         return this;
32452     },
32453
32454     /**
32455      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32456      * executed in response to a particular key being pressed while the dialog is active.
32457      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32458      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32459      * @param {Function} fn The function to call
32460      * @param {Object} scope (optional) The scope of the function
32461      * @return {Roo.BasicDialog} this
32462      */
32463     addKeyListener : function(key, fn, scope){
32464         var keyCode, shift, ctrl, alt;
32465         if(typeof key == "object" && !(key instanceof Array)){
32466             keyCode = key["key"];
32467             shift = key["shift"];
32468             ctrl = key["ctrl"];
32469             alt = key["alt"];
32470         }else{
32471             keyCode = key;
32472         }
32473         var handler = function(dlg, e){
32474             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32475                 var k = e.getKey();
32476                 if(keyCode instanceof Array){
32477                     for(var i = 0, len = keyCode.length; i < len; i++){
32478                         if(keyCode[i] == k){
32479                           fn.call(scope || window, dlg, k, e);
32480                           return;
32481                         }
32482                     }
32483                 }else{
32484                     if(k == keyCode){
32485                         fn.call(scope || window, dlg, k, e);
32486                     }
32487                 }
32488             }
32489         };
32490         this.on("keydown", handler);
32491         return this;
32492     },
32493
32494     /**
32495      * Returns the TabPanel component (creates it if it doesn't exist).
32496      * Note: If you wish to simply check for the existence of tabs without creating them,
32497      * check for a null 'tabs' property.
32498      * @return {Roo.TabPanel} The tabs component
32499      */
32500     getTabs : function(){
32501         if(!this.tabs){
32502             this.el.addClass("x-dlg-auto-tabs");
32503             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32504             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32505         }
32506         return this.tabs;
32507     },
32508
32509     /**
32510      * Adds a button to the footer section of the dialog.
32511      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32512      * object or a valid Roo.DomHelper element config
32513      * @param {Function} handler The function called when the button is clicked
32514      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32515      * @return {Roo.Button} The new button
32516      */
32517     addButton : function(config, handler, scope){
32518         var dh = Roo.DomHelper;
32519         if(!this.footer){
32520             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32521         }
32522         if(!this.btnContainer){
32523             var tb = this.footer.createChild({
32524
32525                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32526                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32527             }, null, true);
32528             this.btnContainer = tb.firstChild.firstChild.firstChild;
32529         }
32530         var bconfig = {
32531             handler: handler,
32532             scope: scope,
32533             minWidth: this.minButtonWidth,
32534             hideParent:true
32535         };
32536         if(typeof config == "string"){
32537             bconfig.text = config;
32538         }else{
32539             if(config.tag){
32540                 bconfig.dhconfig = config;
32541             }else{
32542                 Roo.apply(bconfig, config);
32543             }
32544         }
32545         var fc = false;
32546         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32547             bconfig.position = Math.max(0, bconfig.position);
32548             fc = this.btnContainer.childNodes[bconfig.position];
32549         }
32550          
32551         var btn = new Roo.Button(
32552             fc ? 
32553                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32554                 : this.btnContainer.appendChild(document.createElement("td")),
32555             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32556             bconfig
32557         );
32558         this.syncBodyHeight();
32559         if(!this.buttons){
32560             /**
32561              * Array of all the buttons that have been added to this dialog via addButton
32562              * @type Array
32563              */
32564             this.buttons = [];
32565         }
32566         this.buttons.push(btn);
32567         return btn;
32568     },
32569
32570     /**
32571      * Sets the default button to be focused when the dialog is displayed.
32572      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32573      * @return {Roo.BasicDialog} this
32574      */
32575     setDefaultButton : function(btn){
32576         this.defaultButton = btn;
32577         return this;
32578     },
32579
32580     // private
32581     getHeaderFooterHeight : function(safe){
32582         var height = 0;
32583         if(this.header){
32584            height += this.header.getHeight();
32585         }
32586         if(this.footer){
32587            var fm = this.footer.getMargins();
32588             height += (this.footer.getHeight()+fm.top+fm.bottom);
32589         }
32590         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32591         height += this.centerBg.getPadding("tb");
32592         return height;
32593     },
32594
32595     // private
32596     syncBodyHeight : function()
32597     {
32598         var bd = this.body, // the text
32599             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32600             bw = this.bwrap;
32601         var height = this.size.height - this.getHeaderFooterHeight(false);
32602         bd.setHeight(height-bd.getMargins("tb"));
32603         var hh = this.header.getHeight();
32604         var h = this.size.height-hh;
32605         cb.setHeight(h);
32606         
32607         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32608         bw.setHeight(h-cb.getPadding("tb"));
32609         
32610         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32611         bd.setWidth(bw.getWidth(true));
32612         if(this.tabs){
32613             this.tabs.syncHeight();
32614             if(Roo.isIE){
32615                 this.tabs.el.repaint();
32616             }
32617         }
32618     },
32619
32620     /**
32621      * Restores the previous state of the dialog if Roo.state is configured.
32622      * @return {Roo.BasicDialog} this
32623      */
32624     restoreState : function(){
32625         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32626         if(box && box.width){
32627             this.xy = [box.x, box.y];
32628             this.resizeTo(box.width, box.height);
32629         }
32630         return this;
32631     },
32632
32633     // private
32634     beforeShow : function(){
32635         this.expand();
32636         if(this.fixedcenter){
32637             this.xy = this.el.getCenterXY(true);
32638         }
32639         if(this.modal){
32640             Roo.get(document.body).addClass("x-body-masked");
32641             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32642             this.mask.show();
32643         }
32644         this.constrainXY();
32645     },
32646
32647     // private
32648     animShow : function(){
32649         var b = Roo.get(this.animateTarget).getBox();
32650         this.proxy.setSize(b.width, b.height);
32651         this.proxy.setLocation(b.x, b.y);
32652         this.proxy.show();
32653         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32654                     true, .35, this.showEl.createDelegate(this));
32655     },
32656
32657     /**
32658      * Shows the dialog.
32659      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32660      * @return {Roo.BasicDialog} this
32661      */
32662     show : function(animateTarget){
32663         if (this.fireEvent("beforeshow", this) === false){
32664             return;
32665         }
32666         if(this.syncHeightBeforeShow){
32667             this.syncBodyHeight();
32668         }else if(this.firstShow){
32669             this.firstShow = false;
32670             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32671         }
32672         this.animateTarget = animateTarget || this.animateTarget;
32673         if(!this.el.isVisible()){
32674             this.beforeShow();
32675             if(this.animateTarget && Roo.get(this.animateTarget)){
32676                 this.animShow();
32677             }else{
32678                 this.showEl();
32679             }
32680         }
32681         return this;
32682     },
32683
32684     // private
32685     showEl : function(){
32686         this.proxy.hide();
32687         this.el.setXY(this.xy);
32688         this.el.show();
32689         this.adjustAssets(true);
32690         this.toFront();
32691         this.focus();
32692         // IE peekaboo bug - fix found by Dave Fenwick
32693         if(Roo.isIE){
32694             this.el.repaint();
32695         }
32696         this.fireEvent("show", this);
32697     },
32698
32699     /**
32700      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32701      * dialog itself will receive focus.
32702      */
32703     focus : function(){
32704         if(this.defaultButton){
32705             this.defaultButton.focus();
32706         }else{
32707             this.focusEl.focus();
32708         }
32709     },
32710
32711     // private
32712     constrainXY : function(){
32713         if(this.constraintoviewport !== false){
32714             if(!this.viewSize){
32715                 if(this.container){
32716                     var s = this.container.getSize();
32717                     this.viewSize = [s.width, s.height];
32718                 }else{
32719                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32720                 }
32721             }
32722             var s = Roo.get(this.container||document).getScroll();
32723
32724             var x = this.xy[0], y = this.xy[1];
32725             var w = this.size.width, h = this.size.height;
32726             var vw = this.viewSize[0], vh = this.viewSize[1];
32727             // only move it if it needs it
32728             var moved = false;
32729             // first validate right/bottom
32730             if(x + w > vw+s.left){
32731                 x = vw - w;
32732                 moved = true;
32733             }
32734             if(y + h > vh+s.top){
32735                 y = vh - h;
32736                 moved = true;
32737             }
32738             // then make sure top/left isn't negative
32739             if(x < s.left){
32740                 x = s.left;
32741                 moved = true;
32742             }
32743             if(y < s.top){
32744                 y = s.top;
32745                 moved = true;
32746             }
32747             if(moved){
32748                 // cache xy
32749                 this.xy = [x, y];
32750                 if(this.isVisible()){
32751                     this.el.setLocation(x, y);
32752                     this.adjustAssets();
32753                 }
32754             }
32755         }
32756     },
32757
32758     // private
32759     onDrag : function(){
32760         if(!this.proxyDrag){
32761             this.xy = this.el.getXY();
32762             this.adjustAssets();
32763         }
32764     },
32765
32766     // private
32767     adjustAssets : function(doShow){
32768         var x = this.xy[0], y = this.xy[1];
32769         var w = this.size.width, h = this.size.height;
32770         if(doShow === true){
32771             if(this.shadow){
32772                 this.shadow.show(this.el);
32773             }
32774             if(this.shim){
32775                 this.shim.show();
32776             }
32777         }
32778         if(this.shadow && this.shadow.isVisible()){
32779             this.shadow.show(this.el);
32780         }
32781         if(this.shim && this.shim.isVisible()){
32782             this.shim.setBounds(x, y, w, h);
32783         }
32784     },
32785
32786     // private
32787     adjustViewport : function(w, h){
32788         if(!w || !h){
32789             w = Roo.lib.Dom.getViewWidth();
32790             h = Roo.lib.Dom.getViewHeight();
32791         }
32792         // cache the size
32793         this.viewSize = [w, h];
32794         if(this.modal && this.mask.isVisible()){
32795             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32796             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32797         }
32798         if(this.isVisible()){
32799             this.constrainXY();
32800         }
32801     },
32802
32803     /**
32804      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32805      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32806      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32807      */
32808     destroy : function(removeEl){
32809         if(this.isVisible()){
32810             this.animateTarget = null;
32811             this.hide();
32812         }
32813         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32814         if(this.tabs){
32815             this.tabs.destroy(removeEl);
32816         }
32817         Roo.destroy(
32818              this.shim,
32819              this.proxy,
32820              this.resizer,
32821              this.close,
32822              this.mask
32823         );
32824         if(this.dd){
32825             this.dd.unreg();
32826         }
32827         if(this.buttons){
32828            for(var i = 0, len = this.buttons.length; i < len; i++){
32829                this.buttons[i].destroy();
32830            }
32831         }
32832         this.el.removeAllListeners();
32833         if(removeEl === true){
32834             this.el.update("");
32835             this.el.remove();
32836         }
32837         Roo.DialogManager.unregister(this);
32838     },
32839
32840     // private
32841     startMove : function(){
32842         if(this.proxyDrag){
32843             this.proxy.show();
32844         }
32845         if(this.constraintoviewport !== false){
32846             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32847         }
32848     },
32849
32850     // private
32851     endMove : function(){
32852         if(!this.proxyDrag){
32853             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32854         }else{
32855             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32856             this.proxy.hide();
32857         }
32858         this.refreshSize();
32859         this.adjustAssets();
32860         this.focus();
32861         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32862     },
32863
32864     /**
32865      * Brings this dialog to the front of any other visible dialogs
32866      * @return {Roo.BasicDialog} this
32867      */
32868     toFront : function(){
32869         Roo.DialogManager.bringToFront(this);
32870         return this;
32871     },
32872
32873     /**
32874      * Sends this dialog to the back (under) of any other visible dialogs
32875      * @return {Roo.BasicDialog} this
32876      */
32877     toBack : function(){
32878         Roo.DialogManager.sendToBack(this);
32879         return this;
32880     },
32881
32882     /**
32883      * Centers this dialog in the viewport
32884      * @return {Roo.BasicDialog} this
32885      */
32886     center : function(){
32887         var xy = this.el.getCenterXY(true);
32888         this.moveTo(xy[0], xy[1]);
32889         return this;
32890     },
32891
32892     /**
32893      * Moves the dialog's top-left corner to the specified point
32894      * @param {Number} x
32895      * @param {Number} y
32896      * @return {Roo.BasicDialog} this
32897      */
32898     moveTo : function(x, y){
32899         this.xy = [x,y];
32900         if(this.isVisible()){
32901             this.el.setXY(this.xy);
32902             this.adjustAssets();
32903         }
32904         return this;
32905     },
32906
32907     /**
32908      * Aligns the dialog to the specified element
32909      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32910      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32911      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32912      * @return {Roo.BasicDialog} this
32913      */
32914     alignTo : function(element, position, offsets){
32915         this.xy = this.el.getAlignToXY(element, position, offsets);
32916         if(this.isVisible()){
32917             this.el.setXY(this.xy);
32918             this.adjustAssets();
32919         }
32920         return this;
32921     },
32922
32923     /**
32924      * Anchors an element to another element and realigns it when the window is resized.
32925      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32926      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32927      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32928      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32929      * is a number, it is used as the buffer delay (defaults to 50ms).
32930      * @return {Roo.BasicDialog} this
32931      */
32932     anchorTo : function(el, alignment, offsets, monitorScroll){
32933         var action = function(){
32934             this.alignTo(el, alignment, offsets);
32935         };
32936         Roo.EventManager.onWindowResize(action, this);
32937         var tm = typeof monitorScroll;
32938         if(tm != 'undefined'){
32939             Roo.EventManager.on(window, 'scroll', action, this,
32940                 {buffer: tm == 'number' ? monitorScroll : 50});
32941         }
32942         action.call(this);
32943         return this;
32944     },
32945
32946     /**
32947      * Returns true if the dialog is visible
32948      * @return {Boolean}
32949      */
32950     isVisible : function(){
32951         return this.el.isVisible();
32952     },
32953
32954     // private
32955     animHide : function(callback){
32956         var b = Roo.get(this.animateTarget).getBox();
32957         this.proxy.show();
32958         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32959         this.el.hide();
32960         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32961                     this.hideEl.createDelegate(this, [callback]));
32962     },
32963
32964     /**
32965      * Hides the dialog.
32966      * @param {Function} callback (optional) Function to call when the dialog is hidden
32967      * @return {Roo.BasicDialog} this
32968      */
32969     hide : function(callback){
32970         if (this.fireEvent("beforehide", this) === false){
32971             return;
32972         }
32973         if(this.shadow){
32974             this.shadow.hide();
32975         }
32976         if(this.shim) {
32977           this.shim.hide();
32978         }
32979         // sometimes animateTarget seems to get set.. causing problems...
32980         // this just double checks..
32981         if(this.animateTarget && Roo.get(this.animateTarget)) {
32982            this.animHide(callback);
32983         }else{
32984             this.el.hide();
32985             this.hideEl(callback);
32986         }
32987         return this;
32988     },
32989
32990     // private
32991     hideEl : function(callback){
32992         this.proxy.hide();
32993         if(this.modal){
32994             this.mask.hide();
32995             Roo.get(document.body).removeClass("x-body-masked");
32996         }
32997         this.fireEvent("hide", this);
32998         if(typeof callback == "function"){
32999             callback();
33000         }
33001     },
33002
33003     // private
33004     hideAction : function(){
33005         this.setLeft("-10000px");
33006         this.setTop("-10000px");
33007         this.setStyle("visibility", "hidden");
33008     },
33009
33010     // private
33011     refreshSize : function(){
33012         this.size = this.el.getSize();
33013         this.xy = this.el.getXY();
33014         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
33015     },
33016
33017     // private
33018     // z-index is managed by the DialogManager and may be overwritten at any time
33019     setZIndex : function(index){
33020         if(this.modal){
33021             this.mask.setStyle("z-index", index);
33022         }
33023         if(this.shim){
33024             this.shim.setStyle("z-index", ++index);
33025         }
33026         if(this.shadow){
33027             this.shadow.setZIndex(++index);
33028         }
33029         this.el.setStyle("z-index", ++index);
33030         if(this.proxy){
33031             this.proxy.setStyle("z-index", ++index);
33032         }
33033         if(this.resizer){
33034             this.resizer.proxy.setStyle("z-index", ++index);
33035         }
33036
33037         this.lastZIndex = index;
33038     },
33039
33040     /**
33041      * Returns the element for this dialog
33042      * @return {Roo.Element} The underlying dialog Element
33043      */
33044     getEl : function(){
33045         return this.el;
33046     }
33047 });
33048
33049 /**
33050  * @class Roo.DialogManager
33051  * Provides global access to BasicDialogs that have been created and
33052  * support for z-indexing (layering) multiple open dialogs.
33053  */
33054 Roo.DialogManager = function(){
33055     var list = {};
33056     var accessList = [];
33057     var front = null;
33058
33059     // private
33060     var sortDialogs = function(d1, d2){
33061         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
33062     };
33063
33064     // private
33065     var orderDialogs = function(){
33066         accessList.sort(sortDialogs);
33067         var seed = Roo.DialogManager.zseed;
33068         for(var i = 0, len = accessList.length; i < len; i++){
33069             var dlg = accessList[i];
33070             if(dlg){
33071                 dlg.setZIndex(seed + (i*10));
33072             }
33073         }
33074     };
33075
33076     return {
33077         /**
33078          * The starting z-index for BasicDialogs (defaults to 9000)
33079          * @type Number The z-index value
33080          */
33081         zseed : 9000,
33082
33083         // private
33084         register : function(dlg){
33085             list[dlg.id] = dlg;
33086             accessList.push(dlg);
33087         },
33088
33089         // private
33090         unregister : function(dlg){
33091             delete list[dlg.id];
33092             var i=0;
33093             var len=0;
33094             if(!accessList.indexOf){
33095                 for(  i = 0, len = accessList.length; i < len; i++){
33096                     if(accessList[i] == dlg){
33097                         accessList.splice(i, 1);
33098                         return;
33099                     }
33100                 }
33101             }else{
33102                  i = accessList.indexOf(dlg);
33103                 if(i != -1){
33104                     accessList.splice(i, 1);
33105                 }
33106             }
33107         },
33108
33109         /**
33110          * Gets a registered dialog by id
33111          * @param {String/Object} id The id of the dialog or a dialog
33112          * @return {Roo.BasicDialog} this
33113          */
33114         get : function(id){
33115             return typeof id == "object" ? id : list[id];
33116         },
33117
33118         /**
33119          * Brings the specified dialog to the front
33120          * @param {String/Object} dlg The id of the dialog or a dialog
33121          * @return {Roo.BasicDialog} this
33122          */
33123         bringToFront : function(dlg){
33124             dlg = this.get(dlg);
33125             if(dlg != front){
33126                 front = dlg;
33127                 dlg._lastAccess = new Date().getTime();
33128                 orderDialogs();
33129             }
33130             return dlg;
33131         },
33132
33133         /**
33134          * Sends the specified dialog to the back
33135          * @param {String/Object} dlg The id of the dialog or a dialog
33136          * @return {Roo.BasicDialog} this
33137          */
33138         sendToBack : function(dlg){
33139             dlg = this.get(dlg);
33140             dlg._lastAccess = -(new Date().getTime());
33141             orderDialogs();
33142             return dlg;
33143         },
33144
33145         /**
33146          * Hides all dialogs
33147          */
33148         hideAll : function(){
33149             for(var id in list){
33150                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33151                     list[id].hide();
33152                 }
33153             }
33154         }
33155     };
33156 }();
33157
33158 /**
33159  * @class Roo.LayoutDialog
33160  * @extends Roo.BasicDialog
33161  * Dialog which provides adjustments for working with a layout in a Dialog.
33162  * Add your necessary layout config options to the dialog's config.<br>
33163  * Example usage (including a nested layout):
33164  * <pre><code>
33165 if(!dialog){
33166     dialog = new Roo.LayoutDialog("download-dlg", {
33167         modal: true,
33168         width:600,
33169         height:450,
33170         shadow:true,
33171         minWidth:500,
33172         minHeight:350,
33173         autoTabs:true,
33174         proxyDrag:true,
33175         // layout config merges with the dialog config
33176         center:{
33177             tabPosition: "top",
33178             alwaysShowTabs: true
33179         }
33180     });
33181     dialog.addKeyListener(27, dialog.hide, dialog);
33182     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33183     dialog.addButton("Build It!", this.getDownload, this);
33184
33185     // we can even add nested layouts
33186     var innerLayout = new Roo.BorderLayout("dl-inner", {
33187         east: {
33188             initialSize: 200,
33189             autoScroll:true,
33190             split:true
33191         },
33192         center: {
33193             autoScroll:true
33194         }
33195     });
33196     innerLayout.beginUpdate();
33197     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33198     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33199     innerLayout.endUpdate(true);
33200
33201     var layout = dialog.getLayout();
33202     layout.beginUpdate();
33203     layout.add("center", new Roo.ContentPanel("standard-panel",
33204                         {title: "Download the Source", fitToFrame:true}));
33205     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33206                {title: "Build your own roo.js"}));
33207     layout.getRegion("center").showPanel(sp);
33208     layout.endUpdate();
33209 }
33210 </code></pre>
33211     * @constructor
33212     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33213     * @param {Object} config configuration options
33214   */
33215 Roo.LayoutDialog = function(el, cfg){
33216     
33217     var config=  cfg;
33218     if (typeof(cfg) == 'undefined') {
33219         config = Roo.apply({}, el);
33220         // not sure why we use documentElement here.. - it should always be body.
33221         // IE7 borks horribly if we use documentElement.
33222         // webkit also does not like documentElement - it creates a body element...
33223         el = Roo.get( document.body || document.documentElement ).createChild();
33224         //config.autoCreate = true;
33225     }
33226     
33227     
33228     config.autoTabs = false;
33229     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33230     this.body.setStyle({overflow:"hidden", position:"relative"});
33231     this.layout = new Roo.BorderLayout(this.body.dom, config);
33232     this.layout.monitorWindowResize = false;
33233     this.el.addClass("x-dlg-auto-layout");
33234     // fix case when center region overwrites center function
33235     this.center = Roo.BasicDialog.prototype.center;
33236     this.on("show", this.layout.layout, this.layout, true);
33237     if (config.items) {
33238         var xitems = config.items;
33239         delete config.items;
33240         Roo.each(xitems, this.addxtype, this);
33241     }
33242     
33243     
33244 };
33245 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33246     /**
33247      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33248      * @deprecated
33249      */
33250     endUpdate : function(){
33251         this.layout.endUpdate();
33252     },
33253
33254     /**
33255      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33256      *  @deprecated
33257      */
33258     beginUpdate : function(){
33259         this.layout.beginUpdate();
33260     },
33261
33262     /**
33263      * Get the BorderLayout for this dialog
33264      * @return {Roo.BorderLayout}
33265      */
33266     getLayout : function(){
33267         return this.layout;
33268     },
33269
33270     showEl : function(){
33271         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33272         if(Roo.isIE7){
33273             this.layout.layout();
33274         }
33275     },
33276
33277     // private
33278     // Use the syncHeightBeforeShow config option to control this automatically
33279     syncBodyHeight : function(){
33280         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33281         if(this.layout){this.layout.layout();}
33282     },
33283     
33284       /**
33285      * Add an xtype element (actually adds to the layout.)
33286      * @return {Object} xdata xtype object data.
33287      */
33288     
33289     addxtype : function(c) {
33290         return this.layout.addxtype(c);
33291     }
33292 });/*
33293  * Based on:
33294  * Ext JS Library 1.1.1
33295  * Copyright(c) 2006-2007, Ext JS, LLC.
33296  *
33297  * Originally Released Under LGPL - original licence link has changed is not relivant.
33298  *
33299  * Fork - LGPL
33300  * <script type="text/javascript">
33301  */
33302  
33303 /**
33304  * @class Roo.MessageBox
33305  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33306  * Example usage:
33307  *<pre><code>
33308 // Basic alert:
33309 Roo.Msg.alert('Status', 'Changes saved successfully.');
33310
33311 // Prompt for user data:
33312 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33313     if (btn == 'ok'){
33314         // process text value...
33315     }
33316 });
33317
33318 // Show a dialog using config options:
33319 Roo.Msg.show({
33320    title:'Save Changes?',
33321    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33322    buttons: Roo.Msg.YESNOCANCEL,
33323    fn: processResult,
33324    animEl: 'elId'
33325 });
33326 </code></pre>
33327  * @singleton
33328  */
33329 Roo.MessageBox = function(){
33330     var dlg, opt, mask, waitTimer;
33331     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33332     var buttons, activeTextEl, bwidth;
33333
33334     // private
33335     var handleButton = function(button){
33336         dlg.hide();
33337         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33338     };
33339
33340     // private
33341     var handleHide = function(){
33342         if(opt && opt.cls){
33343             dlg.el.removeClass(opt.cls);
33344         }
33345         if(waitTimer){
33346             Roo.TaskMgr.stop(waitTimer);
33347             waitTimer = null;
33348         }
33349     };
33350
33351     // private
33352     var updateButtons = function(b){
33353         var width = 0;
33354         if(!b){
33355             buttons["ok"].hide();
33356             buttons["cancel"].hide();
33357             buttons["yes"].hide();
33358             buttons["no"].hide();
33359             dlg.footer.dom.style.display = 'none';
33360             return width;
33361         }
33362         dlg.footer.dom.style.display = '';
33363         for(var k in buttons){
33364             if(typeof buttons[k] != "function"){
33365                 if(b[k]){
33366                     buttons[k].show();
33367                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33368                     width += buttons[k].el.getWidth()+15;
33369                 }else{
33370                     buttons[k].hide();
33371                 }
33372             }
33373         }
33374         return width;
33375     };
33376
33377     // private
33378     var handleEsc = function(d, k, e){
33379         if(opt && opt.closable !== false){
33380             dlg.hide();
33381         }
33382         if(e){
33383             e.stopEvent();
33384         }
33385     };
33386
33387     return {
33388         /**
33389          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33390          * @return {Roo.BasicDialog} The BasicDialog element
33391          */
33392         getDialog : function(){
33393            if(!dlg){
33394                 dlg = new Roo.BasicDialog("x-msg-box", {
33395                     autoCreate : true,
33396                     shadow: true,
33397                     draggable: true,
33398                     resizable:false,
33399                     constraintoviewport:false,
33400                     fixedcenter:true,
33401                     collapsible : false,
33402                     shim:true,
33403                     modal: true,
33404                     width:400, height:100,
33405                     buttonAlign:"center",
33406                     closeClick : function(){
33407                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33408                             handleButton("no");
33409                         }else{
33410                             handleButton("cancel");
33411                         }
33412                     }
33413                 });
33414                 dlg.on("hide", handleHide);
33415                 mask = dlg.mask;
33416                 dlg.addKeyListener(27, handleEsc);
33417                 buttons = {};
33418                 var bt = this.buttonText;
33419                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33420                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33421                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33422                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33423                 bodyEl = dlg.body.createChild({
33424
33425                     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>'
33426                 });
33427                 msgEl = bodyEl.dom.firstChild;
33428                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33429                 textboxEl.enableDisplayMode();
33430                 textboxEl.addKeyListener([10,13], function(){
33431                     if(dlg.isVisible() && opt && opt.buttons){
33432                         if(opt.buttons.ok){
33433                             handleButton("ok");
33434                         }else if(opt.buttons.yes){
33435                             handleButton("yes");
33436                         }
33437                     }
33438                 });
33439                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33440                 textareaEl.enableDisplayMode();
33441                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33442                 progressEl.enableDisplayMode();
33443                 var pf = progressEl.dom.firstChild;
33444                 if (pf) {
33445                     pp = Roo.get(pf.firstChild);
33446                     pp.setHeight(pf.offsetHeight);
33447                 }
33448                 
33449             }
33450             return dlg;
33451         },
33452
33453         /**
33454          * Updates the message box body text
33455          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33456          * the XHTML-compliant non-breaking space character '&amp;#160;')
33457          * @return {Roo.MessageBox} This message box
33458          */
33459         updateText : function(text){
33460             if(!dlg.isVisible() && !opt.width){
33461                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33462             }
33463             msgEl.innerHTML = text || '&#160;';
33464       
33465             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33466             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33467             var w = Math.max(
33468                     Math.min(opt.width || cw , this.maxWidth), 
33469                     Math.max(opt.minWidth || this.minWidth, bwidth)
33470             );
33471             if(opt.prompt){
33472                 activeTextEl.setWidth(w);
33473             }
33474             if(dlg.isVisible()){
33475                 dlg.fixedcenter = false;
33476             }
33477             // to big, make it scroll. = But as usual stupid IE does not support
33478             // !important..
33479             
33480             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33481                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33482                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33483             } else {
33484                 bodyEl.dom.style.height = '';
33485                 bodyEl.dom.style.overflowY = '';
33486             }
33487             if (cw > w) {
33488                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33489             } else {
33490                 bodyEl.dom.style.overflowX = '';
33491             }
33492             
33493             dlg.setContentSize(w, bodyEl.getHeight());
33494             if(dlg.isVisible()){
33495                 dlg.fixedcenter = true;
33496             }
33497             return this;
33498         },
33499
33500         /**
33501          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33502          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33503          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33504          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33505          * @return {Roo.MessageBox} This message box
33506          */
33507         updateProgress : function(value, text){
33508             if(text){
33509                 this.updateText(text);
33510             }
33511             if (pp) { // weird bug on my firefox - for some reason this is not defined
33512                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33513             }
33514             return this;
33515         },        
33516
33517         /**
33518          * Returns true if the message box is currently displayed
33519          * @return {Boolean} True if the message box is visible, else false
33520          */
33521         isVisible : function(){
33522             return dlg && dlg.isVisible();  
33523         },
33524
33525         /**
33526          * Hides the message box if it is displayed
33527          */
33528         hide : function(){
33529             if(this.isVisible()){
33530                 dlg.hide();
33531             }  
33532         },
33533
33534         /**
33535          * Displays a new message box, or reinitializes an existing message box, based on the config options
33536          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33537          * The following config object properties are supported:
33538          * <pre>
33539 Property    Type             Description
33540 ----------  ---------------  ------------------------------------------------------------------------------------
33541 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33542                                    closes (defaults to undefined)
33543 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33544                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33545 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33546                                    progress and wait dialogs will ignore this property and always hide the
33547                                    close button as they can only be closed programmatically.
33548 cls               String           A custom CSS class to apply to the message box element
33549 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33550                                    displayed (defaults to 75)
33551 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33552                                    function will be btn (the name of the button that was clicked, if applicable,
33553                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33554                                    Progress and wait dialogs will ignore this option since they do not respond to
33555                                    user actions and can only be closed programmatically, so any required function
33556                                    should be called by the same code after it closes the dialog.
33557 icon              String           A CSS class that provides a background image to be used as an icon for
33558                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33559 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33560 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33561 modal             Boolean          False to allow user interaction with the page while the message box is
33562                                    displayed (defaults to true)
33563 msg               String           A string that will replace the existing message box body text (defaults
33564                                    to the XHTML-compliant non-breaking space character '&#160;')
33565 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33566 progress          Boolean          True to display a progress bar (defaults to false)
33567 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33568 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33569 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33570 title             String           The title text
33571 value             String           The string value to set into the active textbox element if displayed
33572 wait              Boolean          True to display a progress bar (defaults to false)
33573 width             Number           The width of the dialog in pixels
33574 </pre>
33575          *
33576          * Example usage:
33577          * <pre><code>
33578 Roo.Msg.show({
33579    title: 'Address',
33580    msg: 'Please enter your address:',
33581    width: 300,
33582    buttons: Roo.MessageBox.OKCANCEL,
33583    multiline: true,
33584    fn: saveAddress,
33585    animEl: 'addAddressBtn'
33586 });
33587 </code></pre>
33588          * @param {Object} config Configuration options
33589          * @return {Roo.MessageBox} This message box
33590          */
33591         show : function(options)
33592         {
33593             
33594             // this causes nightmares if you show one dialog after another
33595             // especially on callbacks..
33596              
33597             if(this.isVisible()){
33598                 
33599                 this.hide();
33600                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33601                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33602                 Roo.log("New Dialog Message:" +  options.msg )
33603                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33604                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33605                 
33606             }
33607             var d = this.getDialog();
33608             opt = options;
33609             d.setTitle(opt.title || "&#160;");
33610             d.close.setDisplayed(opt.closable !== false);
33611             activeTextEl = textboxEl;
33612             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33613             if(opt.prompt){
33614                 if(opt.multiline){
33615                     textboxEl.hide();
33616                     textareaEl.show();
33617                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33618                         opt.multiline : this.defaultTextHeight);
33619                     activeTextEl = textareaEl;
33620                 }else{
33621                     textboxEl.show();
33622                     textareaEl.hide();
33623                 }
33624             }else{
33625                 textboxEl.hide();
33626                 textareaEl.hide();
33627             }
33628             progressEl.setDisplayed(opt.progress === true);
33629             this.updateProgress(0);
33630             activeTextEl.dom.value = opt.value || "";
33631             if(opt.prompt){
33632                 dlg.setDefaultButton(activeTextEl);
33633             }else{
33634                 var bs = opt.buttons;
33635                 var db = null;
33636                 if(bs && bs.ok){
33637                     db = buttons["ok"];
33638                 }else if(bs && bs.yes){
33639                     db = buttons["yes"];
33640                 }
33641                 dlg.setDefaultButton(db);
33642             }
33643             bwidth = updateButtons(opt.buttons);
33644             this.updateText(opt.msg);
33645             if(opt.cls){
33646                 d.el.addClass(opt.cls);
33647             }
33648             d.proxyDrag = opt.proxyDrag === true;
33649             d.modal = opt.modal !== false;
33650             d.mask = opt.modal !== false ? mask : false;
33651             if(!d.isVisible()){
33652                 // force it to the end of the z-index stack so it gets a cursor in FF
33653                 document.body.appendChild(dlg.el.dom);
33654                 d.animateTarget = null;
33655                 d.show(options.animEl);
33656             }
33657             return this;
33658         },
33659
33660         /**
33661          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33662          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33663          * and closing the message box when the process is complete.
33664          * @param {String} title The title bar text
33665          * @param {String} msg The message box body text
33666          * @return {Roo.MessageBox} This message box
33667          */
33668         progress : function(title, msg){
33669             this.show({
33670                 title : title,
33671                 msg : msg,
33672                 buttons: false,
33673                 progress:true,
33674                 closable:false,
33675                 minWidth: this.minProgressWidth,
33676                 modal : true
33677             });
33678             return this;
33679         },
33680
33681         /**
33682          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33683          * If a callback function is passed it will be called after the user clicks the button, and the
33684          * id of the button that was clicked will be passed as the only parameter to the callback
33685          * (could also be the top-right close button).
33686          * @param {String} title The title bar text
33687          * @param {String} msg The message box body text
33688          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33689          * @param {Object} scope (optional) The scope of the callback function
33690          * @return {Roo.MessageBox} This message box
33691          */
33692         alert : function(title, msg, fn, scope){
33693             this.show({
33694                 title : title,
33695                 msg : msg,
33696                 buttons: this.OK,
33697                 fn: fn,
33698                 scope : scope,
33699                 modal : true
33700             });
33701             return this;
33702         },
33703
33704         /**
33705          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33706          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33707          * You are responsible for closing the message box when the process is complete.
33708          * @param {String} msg The message box body text
33709          * @param {String} title (optional) The title bar text
33710          * @return {Roo.MessageBox} This message box
33711          */
33712         wait : function(msg, title){
33713             this.show({
33714                 title : title,
33715                 msg : msg,
33716                 buttons: false,
33717                 closable:false,
33718                 progress:true,
33719                 modal:true,
33720                 width:300,
33721                 wait:true
33722             });
33723             waitTimer = Roo.TaskMgr.start({
33724                 run: function(i){
33725                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33726                 },
33727                 interval: 1000
33728             });
33729             return this;
33730         },
33731
33732         /**
33733          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33734          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33735          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33736          * @param {String} title The title bar text
33737          * @param {String} msg The message box body text
33738          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33739          * @param {Object} scope (optional) The scope of the callback function
33740          * @return {Roo.MessageBox} This message box
33741          */
33742         confirm : function(title, msg, fn, scope){
33743             this.show({
33744                 title : title,
33745                 msg : msg,
33746                 buttons: this.YESNO,
33747                 fn: fn,
33748                 scope : scope,
33749                 modal : true
33750             });
33751             return this;
33752         },
33753
33754         /**
33755          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33756          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33757          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33758          * (could also be the top-right close button) and the text that was entered will be passed as the two
33759          * parameters to the callback.
33760          * @param {String} title The title bar text
33761          * @param {String} msg The message box body text
33762          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33763          * @param {Object} scope (optional) The scope of the callback function
33764          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33765          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33766          * @return {Roo.MessageBox} This message box
33767          */
33768         prompt : function(title, msg, fn, scope, multiline){
33769             this.show({
33770                 title : title,
33771                 msg : msg,
33772                 buttons: this.OKCANCEL,
33773                 fn: fn,
33774                 minWidth:250,
33775                 scope : scope,
33776                 prompt:true,
33777                 multiline: multiline,
33778                 modal : true
33779             });
33780             return this;
33781         },
33782
33783         /**
33784          * Button config that displays a single OK button
33785          * @type Object
33786          */
33787         OK : {ok:true},
33788         /**
33789          * Button config that displays Yes and No buttons
33790          * @type Object
33791          */
33792         YESNO : {yes:true, no:true},
33793         /**
33794          * Button config that displays OK and Cancel buttons
33795          * @type Object
33796          */
33797         OKCANCEL : {ok:true, cancel:true},
33798         /**
33799          * Button config that displays Yes, No and Cancel buttons
33800          * @type Object
33801          */
33802         YESNOCANCEL : {yes:true, no:true, cancel:true},
33803
33804         /**
33805          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33806          * @type Number
33807          */
33808         defaultTextHeight : 75,
33809         /**
33810          * The maximum width in pixels of the message box (defaults to 600)
33811          * @type Number
33812          */
33813         maxWidth : 600,
33814         /**
33815          * The minimum width in pixels of the message box (defaults to 100)
33816          * @type Number
33817          */
33818         minWidth : 100,
33819         /**
33820          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33821          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33822          * @type Number
33823          */
33824         minProgressWidth : 250,
33825         /**
33826          * An object containing the default button text strings that can be overriden for localized language support.
33827          * Supported properties are: ok, cancel, yes and no.
33828          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33829          * @type Object
33830          */
33831         buttonText : {
33832             ok : "OK",
33833             cancel : "Cancel",
33834             yes : "Yes",
33835             no : "No"
33836         }
33837     };
33838 }();
33839
33840 /**
33841  * Shorthand for {@link Roo.MessageBox}
33842  */
33843 Roo.Msg = Roo.MessageBox;/*
33844  * Based on:
33845  * Ext JS Library 1.1.1
33846  * Copyright(c) 2006-2007, Ext JS, LLC.
33847  *
33848  * Originally Released Under LGPL - original licence link has changed is not relivant.
33849  *
33850  * Fork - LGPL
33851  * <script type="text/javascript">
33852  */
33853 /**
33854  * @class Roo.QuickTips
33855  * Provides attractive and customizable tooltips for any element.
33856  * @singleton
33857  */
33858 Roo.QuickTips = function(){
33859     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33860     var ce, bd, xy, dd;
33861     var visible = false, disabled = true, inited = false;
33862     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33863     
33864     var onOver = function(e){
33865         if(disabled){
33866             return;
33867         }
33868         var t = e.getTarget();
33869         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33870             return;
33871         }
33872         if(ce && t == ce.el){
33873             clearTimeout(hideProc);
33874             return;
33875         }
33876         if(t && tagEls[t.id]){
33877             tagEls[t.id].el = t;
33878             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33879             return;
33880         }
33881         var ttp, et = Roo.fly(t);
33882         var ns = cfg.namespace;
33883         if(tm.interceptTitles && t.title){
33884             ttp = t.title;
33885             t.qtip = ttp;
33886             t.removeAttribute("title");
33887             e.preventDefault();
33888         }else{
33889             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33890         }
33891         if(ttp){
33892             showProc = show.defer(tm.showDelay, tm, [{
33893                 el: t, 
33894                 text: ttp.replace(/\\n/g,'<br/>'),
33895                 width: et.getAttributeNS(ns, cfg.width),
33896                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33897                 title: et.getAttributeNS(ns, cfg.title),
33898                     cls: et.getAttributeNS(ns, cfg.cls)
33899             }]);
33900         }
33901     };
33902     
33903     var onOut = function(e){
33904         clearTimeout(showProc);
33905         var t = e.getTarget();
33906         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33907             hideProc = setTimeout(hide, tm.hideDelay);
33908         }
33909     };
33910     
33911     var onMove = function(e){
33912         if(disabled){
33913             return;
33914         }
33915         xy = e.getXY();
33916         xy[1] += 18;
33917         if(tm.trackMouse && ce){
33918             el.setXY(xy);
33919         }
33920     };
33921     
33922     var onDown = function(e){
33923         clearTimeout(showProc);
33924         clearTimeout(hideProc);
33925         if(!e.within(el)){
33926             if(tm.hideOnClick){
33927                 hide();
33928                 tm.disable();
33929                 tm.enable.defer(100, tm);
33930             }
33931         }
33932     };
33933     
33934     var getPad = function(){
33935         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33936     };
33937
33938     var show = function(o){
33939         if(disabled){
33940             return;
33941         }
33942         clearTimeout(dismissProc);
33943         ce = o;
33944         if(removeCls){ // in case manually hidden
33945             el.removeClass(removeCls);
33946             removeCls = null;
33947         }
33948         if(ce.cls){
33949             el.addClass(ce.cls);
33950             removeCls = ce.cls;
33951         }
33952         if(ce.title){
33953             tipTitle.update(ce.title);
33954             tipTitle.show();
33955         }else{
33956             tipTitle.update('');
33957             tipTitle.hide();
33958         }
33959         el.dom.style.width  = tm.maxWidth+'px';
33960         //tipBody.dom.style.width = '';
33961         tipBodyText.update(o.text);
33962         var p = getPad(), w = ce.width;
33963         if(!w){
33964             var td = tipBodyText.dom;
33965             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33966             if(aw > tm.maxWidth){
33967                 w = tm.maxWidth;
33968             }else if(aw < tm.minWidth){
33969                 w = tm.minWidth;
33970             }else{
33971                 w = aw;
33972             }
33973         }
33974         //tipBody.setWidth(w);
33975         el.setWidth(parseInt(w, 10) + p);
33976         if(ce.autoHide === false){
33977             close.setDisplayed(true);
33978             if(dd){
33979                 dd.unlock();
33980             }
33981         }else{
33982             close.setDisplayed(false);
33983             if(dd){
33984                 dd.lock();
33985             }
33986         }
33987         if(xy){
33988             el.avoidY = xy[1]-18;
33989             el.setXY(xy);
33990         }
33991         if(tm.animate){
33992             el.setOpacity(.1);
33993             el.setStyle("visibility", "visible");
33994             el.fadeIn({callback: afterShow});
33995         }else{
33996             afterShow();
33997         }
33998     };
33999     
34000     var afterShow = function(){
34001         if(ce){
34002             el.show();
34003             esc.enable();
34004             if(tm.autoDismiss && ce.autoHide !== false){
34005                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
34006             }
34007         }
34008     };
34009     
34010     var hide = function(noanim){
34011         clearTimeout(dismissProc);
34012         clearTimeout(hideProc);
34013         ce = null;
34014         if(el.isVisible()){
34015             esc.disable();
34016             if(noanim !== true && tm.animate){
34017                 el.fadeOut({callback: afterHide});
34018             }else{
34019                 afterHide();
34020             } 
34021         }
34022     };
34023     
34024     var afterHide = function(){
34025         el.hide();
34026         if(removeCls){
34027             el.removeClass(removeCls);
34028             removeCls = null;
34029         }
34030     };
34031     
34032     return {
34033         /**
34034         * @cfg {Number} minWidth
34035         * The minimum width of the quick tip (defaults to 40)
34036         */
34037        minWidth : 40,
34038         /**
34039         * @cfg {Number} maxWidth
34040         * The maximum width of the quick tip (defaults to 300)
34041         */
34042        maxWidth : 300,
34043         /**
34044         * @cfg {Boolean} interceptTitles
34045         * True to automatically use the element's DOM title value if available (defaults to false)
34046         */
34047        interceptTitles : false,
34048         /**
34049         * @cfg {Boolean} trackMouse
34050         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
34051         */
34052        trackMouse : false,
34053         /**
34054         * @cfg {Boolean} hideOnClick
34055         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
34056         */
34057        hideOnClick : true,
34058         /**
34059         * @cfg {Number} showDelay
34060         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
34061         */
34062        showDelay : 500,
34063         /**
34064         * @cfg {Number} hideDelay
34065         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34066         */
34067        hideDelay : 200,
34068         /**
34069         * @cfg {Boolean} autoHide
34070         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34071         * Used in conjunction with hideDelay.
34072         */
34073        autoHide : true,
34074         /**
34075         * @cfg {Boolean}
34076         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34077         * (defaults to true).  Used in conjunction with autoDismissDelay.
34078         */
34079        autoDismiss : true,
34080         /**
34081         * @cfg {Number}
34082         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34083         */
34084        autoDismissDelay : 5000,
34085        /**
34086         * @cfg {Boolean} animate
34087         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34088         */
34089        animate : false,
34090
34091        /**
34092         * @cfg {String} title
34093         * Title text to display (defaults to '').  This can be any valid HTML markup.
34094         */
34095         title: '',
34096        /**
34097         * @cfg {String} text
34098         * Body text to display (defaults to '').  This can be any valid HTML markup.
34099         */
34100         text : '',
34101        /**
34102         * @cfg {String} cls
34103         * A CSS class to apply to the base quick tip element (defaults to '').
34104         */
34105         cls : '',
34106        /**
34107         * @cfg {Number} width
34108         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34109         * minWidth or maxWidth.
34110         */
34111         width : null,
34112
34113     /**
34114      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34115      * or display QuickTips in a page.
34116      */
34117        init : function(){
34118           tm = Roo.QuickTips;
34119           cfg = tm.tagConfig;
34120           if(!inited){
34121               if(!Roo.isReady){ // allow calling of init() before onReady
34122                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34123                   return;
34124               }
34125               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34126               el.fxDefaults = {stopFx: true};
34127               // maximum custom styling
34128               //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>');
34129               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>');              
34130               tipTitle = el.child('h3');
34131               tipTitle.enableDisplayMode("block");
34132               tipBody = el.child('div.x-tip-bd');
34133               tipBodyText = el.child('div.x-tip-bd-inner');
34134               //bdLeft = el.child('div.x-tip-bd-left');
34135               //bdRight = el.child('div.x-tip-bd-right');
34136               close = el.child('div.x-tip-close');
34137               close.enableDisplayMode("block");
34138               close.on("click", hide);
34139               var d = Roo.get(document);
34140               d.on("mousedown", onDown);
34141               d.on("mouseover", onOver);
34142               d.on("mouseout", onOut);
34143               d.on("mousemove", onMove);
34144               esc = d.addKeyListener(27, hide);
34145               esc.disable();
34146               if(Roo.dd.DD){
34147                   dd = el.initDD("default", null, {
34148                       onDrag : function(){
34149                           el.sync();  
34150                       }
34151                   });
34152                   dd.setHandleElId(tipTitle.id);
34153                   dd.lock();
34154               }
34155               inited = true;
34156           }
34157           this.enable(); 
34158        },
34159
34160     /**
34161      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34162      * are supported:
34163      * <pre>
34164 Property    Type                   Description
34165 ----------  ---------------------  ------------------------------------------------------------------------
34166 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34167      * </ul>
34168      * @param {Object} config The config object
34169      */
34170        register : function(config){
34171            var cs = config instanceof Array ? config : arguments;
34172            for(var i = 0, len = cs.length; i < len; i++) {
34173                var c = cs[i];
34174                var target = c.target;
34175                if(target){
34176                    if(target instanceof Array){
34177                        for(var j = 0, jlen = target.length; j < jlen; j++){
34178                            tagEls[target[j]] = c;
34179                        }
34180                    }else{
34181                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34182                    }
34183                }
34184            }
34185        },
34186
34187     /**
34188      * Removes this quick tip from its element and destroys it.
34189      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34190      */
34191        unregister : function(el){
34192            delete tagEls[Roo.id(el)];
34193        },
34194
34195     /**
34196      * Enable this quick tip.
34197      */
34198        enable : function(){
34199            if(inited && disabled){
34200                locks.pop();
34201                if(locks.length < 1){
34202                    disabled = false;
34203                }
34204            }
34205        },
34206
34207     /**
34208      * Disable this quick tip.
34209      */
34210        disable : function(){
34211           disabled = true;
34212           clearTimeout(showProc);
34213           clearTimeout(hideProc);
34214           clearTimeout(dismissProc);
34215           if(ce){
34216               hide(true);
34217           }
34218           locks.push(1);
34219        },
34220
34221     /**
34222      * Returns true if the quick tip is enabled, else false.
34223      */
34224        isEnabled : function(){
34225             return !disabled;
34226        },
34227
34228         // private
34229        tagConfig : {
34230            namespace : "roo", // was ext?? this may break..
34231            alt_namespace : "ext",
34232            attribute : "qtip",
34233            width : "width",
34234            target : "target",
34235            title : "qtitle",
34236            hide : "hide",
34237            cls : "qclass"
34238        }
34239    };
34240 }();
34241
34242 // backwards compat
34243 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34244  * Based on:
34245  * Ext JS Library 1.1.1
34246  * Copyright(c) 2006-2007, Ext JS, LLC.
34247  *
34248  * Originally Released Under LGPL - original licence link has changed is not relivant.
34249  *
34250  * Fork - LGPL
34251  * <script type="text/javascript">
34252  */
34253  
34254
34255 /**
34256  * @class Roo.tree.TreePanel
34257  * @extends Roo.data.Tree
34258
34259  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34260  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34261  * @cfg {Boolean} enableDD true to enable drag and drop
34262  * @cfg {Boolean} enableDrag true to enable just drag
34263  * @cfg {Boolean} enableDrop true to enable just drop
34264  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34265  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34266  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34267  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34268  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34269  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34270  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34271  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34272  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34273  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34274  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34275  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34276  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34277  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34278  * @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>
34279  * @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>
34280  * 
34281  * @constructor
34282  * @param {String/HTMLElement/Element} el The container element
34283  * @param {Object} config
34284  */
34285 Roo.tree.TreePanel = function(el, config){
34286     var root = false;
34287     var loader = false;
34288     if (config.root) {
34289         root = config.root;
34290         delete config.root;
34291     }
34292     if (config.loader) {
34293         loader = config.loader;
34294         delete config.loader;
34295     }
34296     
34297     Roo.apply(this, config);
34298     Roo.tree.TreePanel.superclass.constructor.call(this);
34299     this.el = Roo.get(el);
34300     this.el.addClass('x-tree');
34301     //console.log(root);
34302     if (root) {
34303         this.setRootNode( Roo.factory(root, Roo.tree));
34304     }
34305     if (loader) {
34306         this.loader = Roo.factory(loader, Roo.tree);
34307     }
34308    /**
34309     * Read-only. The id of the container element becomes this TreePanel's id.
34310     */
34311     this.id = this.el.id;
34312     this.addEvents({
34313         /**
34314         * @event beforeload
34315         * Fires before a node is loaded, return false to cancel
34316         * @param {Node} node The node being loaded
34317         */
34318         "beforeload" : true,
34319         /**
34320         * @event load
34321         * Fires when a node is loaded
34322         * @param {Node} node The node that was loaded
34323         */
34324         "load" : true,
34325         /**
34326         * @event textchange
34327         * Fires when the text for a node is changed
34328         * @param {Node} node The node
34329         * @param {String} text The new text
34330         * @param {String} oldText The old text
34331         */
34332         "textchange" : true,
34333         /**
34334         * @event beforeexpand
34335         * Fires before a node is expanded, return false to cancel.
34336         * @param {Node} node The node
34337         * @param {Boolean} deep
34338         * @param {Boolean} anim
34339         */
34340         "beforeexpand" : true,
34341         /**
34342         * @event beforecollapse
34343         * Fires before a node is collapsed, return false to cancel.
34344         * @param {Node} node The node
34345         * @param {Boolean} deep
34346         * @param {Boolean} anim
34347         */
34348         "beforecollapse" : true,
34349         /**
34350         * @event expand
34351         * Fires when a node is expanded
34352         * @param {Node} node The node
34353         */
34354         "expand" : true,
34355         /**
34356         * @event disabledchange
34357         * Fires when the disabled status of a node changes
34358         * @param {Node} node The node
34359         * @param {Boolean} disabled
34360         */
34361         "disabledchange" : true,
34362         /**
34363         * @event collapse
34364         * Fires when a node is collapsed
34365         * @param {Node} node The node
34366         */
34367         "collapse" : true,
34368         /**
34369         * @event beforeclick
34370         * Fires before click processing on a node. Return false to cancel the default action.
34371         * @param {Node} node The node
34372         * @param {Roo.EventObject} e The event object
34373         */
34374         "beforeclick":true,
34375         /**
34376         * @event checkchange
34377         * Fires when a node with a checkbox's checked property changes
34378         * @param {Node} this This node
34379         * @param {Boolean} checked
34380         */
34381         "checkchange":true,
34382         /**
34383         * @event click
34384         * Fires when a node is clicked
34385         * @param {Node} node The node
34386         * @param {Roo.EventObject} e The event object
34387         */
34388         "click":true,
34389         /**
34390         * @event dblclick
34391         * Fires when a node is double clicked
34392         * @param {Node} node The node
34393         * @param {Roo.EventObject} e The event object
34394         */
34395         "dblclick":true,
34396         /**
34397         * @event contextmenu
34398         * Fires when a node is right clicked
34399         * @param {Node} node The node
34400         * @param {Roo.EventObject} e The event object
34401         */
34402         "contextmenu":true,
34403         /**
34404         * @event beforechildrenrendered
34405         * Fires right before the child nodes for a node are rendered
34406         * @param {Node} node The node
34407         */
34408         "beforechildrenrendered":true,
34409         /**
34410         * @event startdrag
34411         * Fires when a node starts being dragged
34412         * @param {Roo.tree.TreePanel} this
34413         * @param {Roo.tree.TreeNode} node
34414         * @param {event} e The raw browser event
34415         */ 
34416        "startdrag" : true,
34417        /**
34418         * @event enddrag
34419         * Fires when a drag operation is complete
34420         * @param {Roo.tree.TreePanel} this
34421         * @param {Roo.tree.TreeNode} node
34422         * @param {event} e The raw browser event
34423         */
34424        "enddrag" : true,
34425        /**
34426         * @event dragdrop
34427         * Fires when a dragged node is dropped on a valid DD target
34428         * @param {Roo.tree.TreePanel} this
34429         * @param {Roo.tree.TreeNode} node
34430         * @param {DD} dd The dd it was dropped on
34431         * @param {event} e The raw browser event
34432         */
34433        "dragdrop" : true,
34434        /**
34435         * @event beforenodedrop
34436         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34437         * passed to handlers has the following properties:<br />
34438         * <ul style="padding:5px;padding-left:16px;">
34439         * <li>tree - The TreePanel</li>
34440         * <li>target - The node being targeted for the drop</li>
34441         * <li>data - The drag data from the drag source</li>
34442         * <li>point - The point of the drop - append, above or below</li>
34443         * <li>source - The drag source</li>
34444         * <li>rawEvent - Raw mouse event</li>
34445         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34446         * to be inserted by setting them on this object.</li>
34447         * <li>cancel - Set this to true to cancel the drop.</li>
34448         * </ul>
34449         * @param {Object} dropEvent
34450         */
34451        "beforenodedrop" : true,
34452        /**
34453         * @event nodedrop
34454         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34455         * passed to handlers has the following properties:<br />
34456         * <ul style="padding:5px;padding-left:16px;">
34457         * <li>tree - The TreePanel</li>
34458         * <li>target - The node being targeted for the drop</li>
34459         * <li>data - The drag data from the drag source</li>
34460         * <li>point - The point of the drop - append, above or below</li>
34461         * <li>source - The drag source</li>
34462         * <li>rawEvent - Raw mouse event</li>
34463         * <li>dropNode - Dropped node(s).</li>
34464         * </ul>
34465         * @param {Object} dropEvent
34466         */
34467        "nodedrop" : true,
34468         /**
34469         * @event nodedragover
34470         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34471         * passed to handlers has the following properties:<br />
34472         * <ul style="padding:5px;padding-left:16px;">
34473         * <li>tree - The TreePanel</li>
34474         * <li>target - The node being targeted for the drop</li>
34475         * <li>data - The drag data from the drag source</li>
34476         * <li>point - The point of the drop - append, above or below</li>
34477         * <li>source - The drag source</li>
34478         * <li>rawEvent - Raw mouse event</li>
34479         * <li>dropNode - Drop node(s) provided by the source.</li>
34480         * <li>cancel - Set this to true to signal drop not allowed.</li>
34481         * </ul>
34482         * @param {Object} dragOverEvent
34483         */
34484        "nodedragover" : true,
34485        /**
34486         * @event appendnode
34487         * Fires when append node to the tree
34488         * @param {Roo.tree.TreePanel} this
34489         * @param {Roo.tree.TreeNode} node
34490         * @param {Number} index The index of the newly appended node
34491         */
34492        "appendnode" : true
34493         
34494     });
34495     if(this.singleExpand){
34496        this.on("beforeexpand", this.restrictExpand, this);
34497     }
34498     if (this.editor) {
34499         this.editor.tree = this;
34500         this.editor = Roo.factory(this.editor, Roo.tree);
34501     }
34502     
34503     if (this.selModel) {
34504         this.selModel = Roo.factory(this.selModel, Roo.tree);
34505     }
34506    
34507 };
34508 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34509     rootVisible : true,
34510     animate: Roo.enableFx,
34511     lines : true,
34512     enableDD : false,
34513     hlDrop : Roo.enableFx,
34514   
34515     renderer: false,
34516     
34517     rendererTip: false,
34518     // private
34519     restrictExpand : function(node){
34520         var p = node.parentNode;
34521         if(p){
34522             if(p.expandedChild && p.expandedChild.parentNode == p){
34523                 p.expandedChild.collapse();
34524             }
34525             p.expandedChild = node;
34526         }
34527     },
34528
34529     // private override
34530     setRootNode : function(node){
34531         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34532         if(!this.rootVisible){
34533             node.ui = new Roo.tree.RootTreeNodeUI(node);
34534         }
34535         return node;
34536     },
34537
34538     /**
34539      * Returns the container element for this TreePanel
34540      */
34541     getEl : function(){
34542         return this.el;
34543     },
34544
34545     /**
34546      * Returns the default TreeLoader for this TreePanel
34547      */
34548     getLoader : function(){
34549         return this.loader;
34550     },
34551
34552     /**
34553      * Expand all nodes
34554      */
34555     expandAll : function(){
34556         this.root.expand(true);
34557     },
34558
34559     /**
34560      * Collapse all nodes
34561      */
34562     collapseAll : function(){
34563         this.root.collapse(true);
34564     },
34565
34566     /**
34567      * Returns the selection model used by this TreePanel
34568      */
34569     getSelectionModel : function(){
34570         if(!this.selModel){
34571             this.selModel = new Roo.tree.DefaultSelectionModel();
34572         }
34573         return this.selModel;
34574     },
34575
34576     /**
34577      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34578      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34579      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34580      * @return {Array}
34581      */
34582     getChecked : function(a, startNode){
34583         startNode = startNode || this.root;
34584         var r = [];
34585         var f = function(){
34586             if(this.attributes.checked){
34587                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34588             }
34589         }
34590         startNode.cascade(f);
34591         return r;
34592     },
34593
34594     /**
34595      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34596      * @param {String} path
34597      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34598      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34599      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34600      */
34601     expandPath : function(path, attr, callback){
34602         attr = attr || "id";
34603         var keys = path.split(this.pathSeparator);
34604         var curNode = this.root;
34605         if(curNode.attributes[attr] != keys[1]){ // invalid root
34606             if(callback){
34607                 callback(false, null);
34608             }
34609             return;
34610         }
34611         var index = 1;
34612         var f = function(){
34613             if(++index == keys.length){
34614                 if(callback){
34615                     callback(true, curNode);
34616                 }
34617                 return;
34618             }
34619             var c = curNode.findChild(attr, keys[index]);
34620             if(!c){
34621                 if(callback){
34622                     callback(false, curNode);
34623                 }
34624                 return;
34625             }
34626             curNode = c;
34627             c.expand(false, false, f);
34628         };
34629         curNode.expand(false, false, f);
34630     },
34631
34632     /**
34633      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34634      * @param {String} path
34635      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34636      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34637      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34638      */
34639     selectPath : function(path, attr, callback){
34640         attr = attr || "id";
34641         var keys = path.split(this.pathSeparator);
34642         var v = keys.pop();
34643         if(keys.length > 0){
34644             var f = function(success, node){
34645                 if(success && node){
34646                     var n = node.findChild(attr, v);
34647                     if(n){
34648                         n.select();
34649                         if(callback){
34650                             callback(true, n);
34651                         }
34652                     }else if(callback){
34653                         callback(false, n);
34654                     }
34655                 }else{
34656                     if(callback){
34657                         callback(false, n);
34658                     }
34659                 }
34660             };
34661             this.expandPath(keys.join(this.pathSeparator), attr, f);
34662         }else{
34663             this.root.select();
34664             if(callback){
34665                 callback(true, this.root);
34666             }
34667         }
34668     },
34669
34670     getTreeEl : function(){
34671         return this.el;
34672     },
34673
34674     /**
34675      * Trigger rendering of this TreePanel
34676      */
34677     render : function(){
34678         if (this.innerCt) {
34679             return this; // stop it rendering more than once!!
34680         }
34681         
34682         this.innerCt = this.el.createChild({tag:"ul",
34683                cls:"x-tree-root-ct " +
34684                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34685
34686         if(this.containerScroll){
34687             Roo.dd.ScrollManager.register(this.el);
34688         }
34689         if((this.enableDD || this.enableDrop) && !this.dropZone){
34690            /**
34691             * The dropZone used by this tree if drop is enabled
34692             * @type Roo.tree.TreeDropZone
34693             */
34694              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34695                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34696            });
34697         }
34698         if((this.enableDD || this.enableDrag) && !this.dragZone){
34699            /**
34700             * The dragZone used by this tree if drag is enabled
34701             * @type Roo.tree.TreeDragZone
34702             */
34703             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34704                ddGroup: this.ddGroup || "TreeDD",
34705                scroll: this.ddScroll
34706            });
34707         }
34708         this.getSelectionModel().init(this);
34709         if (!this.root) {
34710             Roo.log("ROOT not set in tree");
34711             return this;
34712         }
34713         this.root.render();
34714         if(!this.rootVisible){
34715             this.root.renderChildren();
34716         }
34717         return this;
34718     }
34719 });/*
34720  * Based on:
34721  * Ext JS Library 1.1.1
34722  * Copyright(c) 2006-2007, Ext JS, LLC.
34723  *
34724  * Originally Released Under LGPL - original licence link has changed is not relivant.
34725  *
34726  * Fork - LGPL
34727  * <script type="text/javascript">
34728  */
34729  
34730
34731 /**
34732  * @class Roo.tree.DefaultSelectionModel
34733  * @extends Roo.util.Observable
34734  * The default single selection for a TreePanel.
34735  * @param {Object} cfg Configuration
34736  */
34737 Roo.tree.DefaultSelectionModel = function(cfg){
34738    this.selNode = null;
34739    
34740    
34741    
34742    this.addEvents({
34743        /**
34744         * @event selectionchange
34745         * Fires when the selected node changes
34746         * @param {DefaultSelectionModel} this
34747         * @param {TreeNode} node the new selection
34748         */
34749        "selectionchange" : true,
34750
34751        /**
34752         * @event beforeselect
34753         * Fires before the selected node changes, return false to cancel the change
34754         * @param {DefaultSelectionModel} this
34755         * @param {TreeNode} node the new selection
34756         * @param {TreeNode} node the old selection
34757         */
34758        "beforeselect" : true
34759    });
34760    
34761     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34762 };
34763
34764 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34765     init : function(tree){
34766         this.tree = tree;
34767         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34768         tree.on("click", this.onNodeClick, this);
34769     },
34770     
34771     onNodeClick : function(node, e){
34772         if (e.ctrlKey && this.selNode == node)  {
34773             this.unselect(node);
34774             return;
34775         }
34776         this.select(node);
34777     },
34778     
34779     /**
34780      * Select a node.
34781      * @param {TreeNode} node The node to select
34782      * @return {TreeNode} The selected node
34783      */
34784     select : function(node){
34785         var last = this.selNode;
34786         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34787             if(last){
34788                 last.ui.onSelectedChange(false);
34789             }
34790             this.selNode = node;
34791             node.ui.onSelectedChange(true);
34792             this.fireEvent("selectionchange", this, node, last);
34793         }
34794         return node;
34795     },
34796     
34797     /**
34798      * Deselect a node.
34799      * @param {TreeNode} node The node to unselect
34800      */
34801     unselect : function(node){
34802         if(this.selNode == node){
34803             this.clearSelections();
34804         }    
34805     },
34806     
34807     /**
34808      * Clear all selections
34809      */
34810     clearSelections : function(){
34811         var n = this.selNode;
34812         if(n){
34813             n.ui.onSelectedChange(false);
34814             this.selNode = null;
34815             this.fireEvent("selectionchange", this, null);
34816         }
34817         return n;
34818     },
34819     
34820     /**
34821      * Get the selected node
34822      * @return {TreeNode} The selected node
34823      */
34824     getSelectedNode : function(){
34825         return this.selNode;    
34826     },
34827     
34828     /**
34829      * Returns true if the node is selected
34830      * @param {TreeNode} node The node to check
34831      * @return {Boolean}
34832      */
34833     isSelected : function(node){
34834         return this.selNode == node;  
34835     },
34836
34837     /**
34838      * Selects the node above the selected node in the tree, intelligently walking the nodes
34839      * @return TreeNode The new selection
34840      */
34841     selectPrevious : function(){
34842         var s = this.selNode || this.lastSelNode;
34843         if(!s){
34844             return null;
34845         }
34846         var ps = s.previousSibling;
34847         if(ps){
34848             if(!ps.isExpanded() || ps.childNodes.length < 1){
34849                 return this.select(ps);
34850             } else{
34851                 var lc = ps.lastChild;
34852                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34853                     lc = lc.lastChild;
34854                 }
34855                 return this.select(lc);
34856             }
34857         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34858             return this.select(s.parentNode);
34859         }
34860         return null;
34861     },
34862
34863     /**
34864      * Selects the node above the selected node in the tree, intelligently walking the nodes
34865      * @return TreeNode The new selection
34866      */
34867     selectNext : function(){
34868         var s = this.selNode || this.lastSelNode;
34869         if(!s){
34870             return null;
34871         }
34872         if(s.firstChild && s.isExpanded()){
34873              return this.select(s.firstChild);
34874          }else if(s.nextSibling){
34875              return this.select(s.nextSibling);
34876          }else if(s.parentNode){
34877             var newS = null;
34878             s.parentNode.bubble(function(){
34879                 if(this.nextSibling){
34880                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34881                     return false;
34882                 }
34883             });
34884             return newS;
34885          }
34886         return null;
34887     },
34888
34889     onKeyDown : function(e){
34890         var s = this.selNode || this.lastSelNode;
34891         // undesirable, but required
34892         var sm = this;
34893         if(!s){
34894             return;
34895         }
34896         var k = e.getKey();
34897         switch(k){
34898              case e.DOWN:
34899                  e.stopEvent();
34900                  this.selectNext();
34901              break;
34902              case e.UP:
34903                  e.stopEvent();
34904                  this.selectPrevious();
34905              break;
34906              case e.RIGHT:
34907                  e.preventDefault();
34908                  if(s.hasChildNodes()){
34909                      if(!s.isExpanded()){
34910                          s.expand();
34911                      }else if(s.firstChild){
34912                          this.select(s.firstChild, e);
34913                      }
34914                  }
34915              break;
34916              case e.LEFT:
34917                  e.preventDefault();
34918                  if(s.hasChildNodes() && s.isExpanded()){
34919                      s.collapse();
34920                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34921                      this.select(s.parentNode, e);
34922                  }
34923              break;
34924         };
34925     }
34926 });
34927
34928 /**
34929  * @class Roo.tree.MultiSelectionModel
34930  * @extends Roo.util.Observable
34931  * Multi selection for a TreePanel.
34932  * @param {Object} cfg Configuration
34933  */
34934 Roo.tree.MultiSelectionModel = function(){
34935    this.selNodes = [];
34936    this.selMap = {};
34937    this.addEvents({
34938        /**
34939         * @event selectionchange
34940         * Fires when the selected nodes change
34941         * @param {MultiSelectionModel} this
34942         * @param {Array} nodes Array of the selected nodes
34943         */
34944        "selectionchange" : true
34945    });
34946    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34947    
34948 };
34949
34950 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34951     init : function(tree){
34952         this.tree = tree;
34953         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34954         tree.on("click", this.onNodeClick, this);
34955     },
34956     
34957     onNodeClick : function(node, e){
34958         this.select(node, e, e.ctrlKey);
34959     },
34960     
34961     /**
34962      * Select a node.
34963      * @param {TreeNode} node The node to select
34964      * @param {EventObject} e (optional) An event associated with the selection
34965      * @param {Boolean} keepExisting True to retain existing selections
34966      * @return {TreeNode} The selected node
34967      */
34968     select : function(node, e, keepExisting){
34969         if(keepExisting !== true){
34970             this.clearSelections(true);
34971         }
34972         if(this.isSelected(node)){
34973             this.lastSelNode = node;
34974             return node;
34975         }
34976         this.selNodes.push(node);
34977         this.selMap[node.id] = node;
34978         this.lastSelNode = node;
34979         node.ui.onSelectedChange(true);
34980         this.fireEvent("selectionchange", this, this.selNodes);
34981         return node;
34982     },
34983     
34984     /**
34985      * Deselect a node.
34986      * @param {TreeNode} node The node to unselect
34987      */
34988     unselect : function(node){
34989         if(this.selMap[node.id]){
34990             node.ui.onSelectedChange(false);
34991             var sn = this.selNodes;
34992             var index = -1;
34993             if(sn.indexOf){
34994                 index = sn.indexOf(node);
34995             }else{
34996                 for(var i = 0, len = sn.length; i < len; i++){
34997                     if(sn[i] == node){
34998                         index = i;
34999                         break;
35000                     }
35001                 }
35002             }
35003             if(index != -1){
35004                 this.selNodes.splice(index, 1);
35005             }
35006             delete this.selMap[node.id];
35007             this.fireEvent("selectionchange", this, this.selNodes);
35008         }
35009     },
35010     
35011     /**
35012      * Clear all selections
35013      */
35014     clearSelections : function(suppressEvent){
35015         var sn = this.selNodes;
35016         if(sn.length > 0){
35017             for(var i = 0, len = sn.length; i < len; i++){
35018                 sn[i].ui.onSelectedChange(false);
35019             }
35020             this.selNodes = [];
35021             this.selMap = {};
35022             if(suppressEvent !== true){
35023                 this.fireEvent("selectionchange", this, this.selNodes);
35024             }
35025         }
35026     },
35027     
35028     /**
35029      * Returns true if the node is selected
35030      * @param {TreeNode} node The node to check
35031      * @return {Boolean}
35032      */
35033     isSelected : function(node){
35034         return this.selMap[node.id] ? true : false;  
35035     },
35036     
35037     /**
35038      * Returns an array of the selected nodes
35039      * @return {Array}
35040      */
35041     getSelectedNodes : function(){
35042         return this.selNodes;    
35043     },
35044
35045     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
35046
35047     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
35048
35049     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
35050 });/*
35051  * Based on:
35052  * Ext JS Library 1.1.1
35053  * Copyright(c) 2006-2007, Ext JS, LLC.
35054  *
35055  * Originally Released Under LGPL - original licence link has changed is not relivant.
35056  *
35057  * Fork - LGPL
35058  * <script type="text/javascript">
35059  */
35060  
35061 /**
35062  * @class Roo.tree.TreeNode
35063  * @extends Roo.data.Node
35064  * @cfg {String} text The text for this node
35065  * @cfg {Boolean} expanded true to start the node expanded
35066  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35067  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35068  * @cfg {Boolean} disabled true to start the node disabled
35069  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35070  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35071  * @cfg {String} cls A css class to be added to the node
35072  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35073  * @cfg {String} href URL of the link used for the node (defaults to #)
35074  * @cfg {String} hrefTarget target frame for the link
35075  * @cfg {String} qtip An Ext QuickTip for the node
35076  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35077  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35078  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35079  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35080  * (defaults to undefined with no checkbox rendered)
35081  * @constructor
35082  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35083  */
35084 Roo.tree.TreeNode = function(attributes){
35085     attributes = attributes || {};
35086     if(typeof attributes == "string"){
35087         attributes = {text: attributes};
35088     }
35089     this.childrenRendered = false;
35090     this.rendered = false;
35091     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35092     this.expanded = attributes.expanded === true;
35093     this.isTarget = attributes.isTarget !== false;
35094     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35095     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35096
35097     /**
35098      * Read-only. The text for this node. To change it use setText().
35099      * @type String
35100      */
35101     this.text = attributes.text;
35102     /**
35103      * True if this node is disabled.
35104      * @type Boolean
35105      */
35106     this.disabled = attributes.disabled === true;
35107
35108     this.addEvents({
35109         /**
35110         * @event textchange
35111         * Fires when the text for this node is changed
35112         * @param {Node} this This node
35113         * @param {String} text The new text
35114         * @param {String} oldText The old text
35115         */
35116         "textchange" : true,
35117         /**
35118         * @event beforeexpand
35119         * Fires before this node is expanded, return false to cancel.
35120         * @param {Node} this This node
35121         * @param {Boolean} deep
35122         * @param {Boolean} anim
35123         */
35124         "beforeexpand" : true,
35125         /**
35126         * @event beforecollapse
35127         * Fires before this node is collapsed, return false to cancel.
35128         * @param {Node} this This node
35129         * @param {Boolean} deep
35130         * @param {Boolean} anim
35131         */
35132         "beforecollapse" : true,
35133         /**
35134         * @event expand
35135         * Fires when this node is expanded
35136         * @param {Node} this This node
35137         */
35138         "expand" : true,
35139         /**
35140         * @event disabledchange
35141         * Fires when the disabled status of this node changes
35142         * @param {Node} this This node
35143         * @param {Boolean} disabled
35144         */
35145         "disabledchange" : true,
35146         /**
35147         * @event collapse
35148         * Fires when this node is collapsed
35149         * @param {Node} this This node
35150         */
35151         "collapse" : true,
35152         /**
35153         * @event beforeclick
35154         * Fires before click processing. Return false to cancel the default action.
35155         * @param {Node} this This node
35156         * @param {Roo.EventObject} e The event object
35157         */
35158         "beforeclick":true,
35159         /**
35160         * @event checkchange
35161         * Fires when a node with a checkbox's checked property changes
35162         * @param {Node} this This node
35163         * @param {Boolean} checked
35164         */
35165         "checkchange":true,
35166         /**
35167         * @event click
35168         * Fires when this node is clicked
35169         * @param {Node} this This node
35170         * @param {Roo.EventObject} e The event object
35171         */
35172         "click":true,
35173         /**
35174         * @event dblclick
35175         * Fires when this node is double clicked
35176         * @param {Node} this This node
35177         * @param {Roo.EventObject} e The event object
35178         */
35179         "dblclick":true,
35180         /**
35181         * @event contextmenu
35182         * Fires when this node is right clicked
35183         * @param {Node} this This node
35184         * @param {Roo.EventObject} e The event object
35185         */
35186         "contextmenu":true,
35187         /**
35188         * @event beforechildrenrendered
35189         * Fires right before the child nodes for this node are rendered
35190         * @param {Node} this This node
35191         */
35192         "beforechildrenrendered":true
35193     });
35194
35195     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35196
35197     /**
35198      * Read-only. The UI for this node
35199      * @type TreeNodeUI
35200      */
35201     this.ui = new uiClass(this);
35202     
35203     // finally support items[]
35204     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35205         return;
35206     }
35207     
35208     
35209     Roo.each(this.attributes.items, function(c) {
35210         this.appendChild(Roo.factory(c,Roo.Tree));
35211     }, this);
35212     delete this.attributes.items;
35213     
35214     
35215     
35216 };
35217 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35218     preventHScroll: true,
35219     /**
35220      * Returns true if this node is expanded
35221      * @return {Boolean}
35222      */
35223     isExpanded : function(){
35224         return this.expanded;
35225     },
35226
35227     /**
35228      * Returns the UI object for this node
35229      * @return {TreeNodeUI}
35230      */
35231     getUI : function(){
35232         return this.ui;
35233     },
35234
35235     // private override
35236     setFirstChild : function(node){
35237         var of = this.firstChild;
35238         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35239         if(this.childrenRendered && of && node != of){
35240             of.renderIndent(true, true);
35241         }
35242         if(this.rendered){
35243             this.renderIndent(true, true);
35244         }
35245     },
35246
35247     // private override
35248     setLastChild : function(node){
35249         var ol = this.lastChild;
35250         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35251         if(this.childrenRendered && ol && node != ol){
35252             ol.renderIndent(true, true);
35253         }
35254         if(this.rendered){
35255             this.renderIndent(true, true);
35256         }
35257     },
35258
35259     // these methods are overridden to provide lazy rendering support
35260     // private override
35261     appendChild : function()
35262     {
35263         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35264         if(node && this.childrenRendered){
35265             node.render();
35266         }
35267         this.ui.updateExpandIcon();
35268         return node;
35269     },
35270
35271     // private override
35272     removeChild : function(node){
35273         this.ownerTree.getSelectionModel().unselect(node);
35274         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35275         // if it's been rendered remove dom node
35276         if(this.childrenRendered){
35277             node.ui.remove();
35278         }
35279         if(this.childNodes.length < 1){
35280             this.collapse(false, false);
35281         }else{
35282             this.ui.updateExpandIcon();
35283         }
35284         if(!this.firstChild) {
35285             this.childrenRendered = false;
35286         }
35287         return node;
35288     },
35289
35290     // private override
35291     insertBefore : function(node, refNode){
35292         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35293         if(newNode && refNode && this.childrenRendered){
35294             node.render();
35295         }
35296         this.ui.updateExpandIcon();
35297         return newNode;
35298     },
35299
35300     /**
35301      * Sets the text for this node
35302      * @param {String} text
35303      */
35304     setText : function(text){
35305         var oldText = this.text;
35306         this.text = text;
35307         this.attributes.text = text;
35308         if(this.rendered){ // event without subscribing
35309             this.ui.onTextChange(this, text, oldText);
35310         }
35311         this.fireEvent("textchange", this, text, oldText);
35312     },
35313
35314     /**
35315      * Triggers selection of this node
35316      */
35317     select : function(){
35318         this.getOwnerTree().getSelectionModel().select(this);
35319     },
35320
35321     /**
35322      * Triggers deselection of this node
35323      */
35324     unselect : function(){
35325         this.getOwnerTree().getSelectionModel().unselect(this);
35326     },
35327
35328     /**
35329      * Returns true if this node is selected
35330      * @return {Boolean}
35331      */
35332     isSelected : function(){
35333         return this.getOwnerTree().getSelectionModel().isSelected(this);
35334     },
35335
35336     /**
35337      * Expand this node.
35338      * @param {Boolean} deep (optional) True to expand all children as well
35339      * @param {Boolean} anim (optional) false to cancel the default animation
35340      * @param {Function} callback (optional) A callback to be called when
35341      * expanding this node completes (does not wait for deep expand to complete).
35342      * Called with 1 parameter, this node.
35343      */
35344     expand : function(deep, anim, callback){
35345         if(!this.expanded){
35346             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35347                 return;
35348             }
35349             if(!this.childrenRendered){
35350                 this.renderChildren();
35351             }
35352             this.expanded = true;
35353             
35354             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35355                 this.ui.animExpand(function(){
35356                     this.fireEvent("expand", this);
35357                     if(typeof callback == "function"){
35358                         callback(this);
35359                     }
35360                     if(deep === true){
35361                         this.expandChildNodes(true);
35362                     }
35363                 }.createDelegate(this));
35364                 return;
35365             }else{
35366                 this.ui.expand();
35367                 this.fireEvent("expand", this);
35368                 if(typeof callback == "function"){
35369                     callback(this);
35370                 }
35371             }
35372         }else{
35373            if(typeof callback == "function"){
35374                callback(this);
35375            }
35376         }
35377         if(deep === true){
35378             this.expandChildNodes(true);
35379         }
35380     },
35381
35382     isHiddenRoot : function(){
35383         return this.isRoot && !this.getOwnerTree().rootVisible;
35384     },
35385
35386     /**
35387      * Collapse this node.
35388      * @param {Boolean} deep (optional) True to collapse all children as well
35389      * @param {Boolean} anim (optional) false to cancel the default animation
35390      */
35391     collapse : function(deep, anim){
35392         if(this.expanded && !this.isHiddenRoot()){
35393             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35394                 return;
35395             }
35396             this.expanded = false;
35397             if((this.getOwnerTree().animate && anim !== false) || anim){
35398                 this.ui.animCollapse(function(){
35399                     this.fireEvent("collapse", this);
35400                     if(deep === true){
35401                         this.collapseChildNodes(true);
35402                     }
35403                 }.createDelegate(this));
35404                 return;
35405             }else{
35406                 this.ui.collapse();
35407                 this.fireEvent("collapse", this);
35408             }
35409         }
35410         if(deep === true){
35411             var cs = this.childNodes;
35412             for(var i = 0, len = cs.length; i < len; i++) {
35413                 cs[i].collapse(true, false);
35414             }
35415         }
35416     },
35417
35418     // private
35419     delayedExpand : function(delay){
35420         if(!this.expandProcId){
35421             this.expandProcId = this.expand.defer(delay, this);
35422         }
35423     },
35424
35425     // private
35426     cancelExpand : function(){
35427         if(this.expandProcId){
35428             clearTimeout(this.expandProcId);
35429         }
35430         this.expandProcId = false;
35431     },
35432
35433     /**
35434      * Toggles expanded/collapsed state of the node
35435      */
35436     toggle : function(){
35437         if(this.expanded){
35438             this.collapse();
35439         }else{
35440             this.expand();
35441         }
35442     },
35443
35444     /**
35445      * Ensures all parent nodes are expanded
35446      */
35447     ensureVisible : function(callback){
35448         var tree = this.getOwnerTree();
35449         tree.expandPath(this.parentNode.getPath(), false, function(){
35450             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35451             Roo.callback(callback);
35452         }.createDelegate(this));
35453     },
35454
35455     /**
35456      * Expand all child nodes
35457      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35458      */
35459     expandChildNodes : function(deep){
35460         var cs = this.childNodes;
35461         for(var i = 0, len = cs.length; i < len; i++) {
35462                 cs[i].expand(deep);
35463         }
35464     },
35465
35466     /**
35467      * Collapse all child nodes
35468      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35469      */
35470     collapseChildNodes : function(deep){
35471         var cs = this.childNodes;
35472         for(var i = 0, len = cs.length; i < len; i++) {
35473                 cs[i].collapse(deep);
35474         }
35475     },
35476
35477     /**
35478      * Disables this node
35479      */
35480     disable : function(){
35481         this.disabled = true;
35482         this.unselect();
35483         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35484             this.ui.onDisableChange(this, true);
35485         }
35486         this.fireEvent("disabledchange", this, true);
35487     },
35488
35489     /**
35490      * Enables this node
35491      */
35492     enable : function(){
35493         this.disabled = false;
35494         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35495             this.ui.onDisableChange(this, false);
35496         }
35497         this.fireEvent("disabledchange", this, false);
35498     },
35499
35500     // private
35501     renderChildren : function(suppressEvent){
35502         if(suppressEvent !== false){
35503             this.fireEvent("beforechildrenrendered", this);
35504         }
35505         var cs = this.childNodes;
35506         for(var i = 0, len = cs.length; i < len; i++){
35507             cs[i].render(true);
35508         }
35509         this.childrenRendered = true;
35510     },
35511
35512     // private
35513     sort : function(fn, scope){
35514         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35515         if(this.childrenRendered){
35516             var cs = this.childNodes;
35517             for(var i = 0, len = cs.length; i < len; i++){
35518                 cs[i].render(true);
35519             }
35520         }
35521     },
35522
35523     // private
35524     render : function(bulkRender){
35525         this.ui.render(bulkRender);
35526         if(!this.rendered){
35527             this.rendered = true;
35528             if(this.expanded){
35529                 this.expanded = false;
35530                 this.expand(false, false);
35531             }
35532         }
35533     },
35534
35535     // private
35536     renderIndent : function(deep, refresh){
35537         if(refresh){
35538             this.ui.childIndent = null;
35539         }
35540         this.ui.renderIndent();
35541         if(deep === true && this.childrenRendered){
35542             var cs = this.childNodes;
35543             for(var i = 0, len = cs.length; i < len; i++){
35544                 cs[i].renderIndent(true, refresh);
35545             }
35546         }
35547     }
35548 });/*
35549  * Based on:
35550  * Ext JS Library 1.1.1
35551  * Copyright(c) 2006-2007, Ext JS, LLC.
35552  *
35553  * Originally Released Under LGPL - original licence link has changed is not relivant.
35554  *
35555  * Fork - LGPL
35556  * <script type="text/javascript">
35557  */
35558  
35559 /**
35560  * @class Roo.tree.AsyncTreeNode
35561  * @extends Roo.tree.TreeNode
35562  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35563  * @constructor
35564  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35565  */
35566  Roo.tree.AsyncTreeNode = function(config){
35567     this.loaded = false;
35568     this.loading = false;
35569     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35570     /**
35571     * @event beforeload
35572     * Fires before this node is loaded, return false to cancel
35573     * @param {Node} this This node
35574     */
35575     this.addEvents({'beforeload':true, 'load': true});
35576     /**
35577     * @event load
35578     * Fires when this node is loaded
35579     * @param {Node} this This node
35580     */
35581     /**
35582      * The loader used by this node (defaults to using the tree's defined loader)
35583      * @type TreeLoader
35584      * @property loader
35585      */
35586 };
35587 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35588     expand : function(deep, anim, callback){
35589         if(this.loading){ // if an async load is already running, waiting til it's done
35590             var timer;
35591             var f = function(){
35592                 if(!this.loading){ // done loading
35593                     clearInterval(timer);
35594                     this.expand(deep, anim, callback);
35595                 }
35596             }.createDelegate(this);
35597             timer = setInterval(f, 200);
35598             return;
35599         }
35600         if(!this.loaded){
35601             if(this.fireEvent("beforeload", this) === false){
35602                 return;
35603             }
35604             this.loading = true;
35605             this.ui.beforeLoad(this);
35606             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35607             if(loader){
35608                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35609                 return;
35610             }
35611         }
35612         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35613     },
35614     
35615     /**
35616      * Returns true if this node is currently loading
35617      * @return {Boolean}
35618      */
35619     isLoading : function(){
35620         return this.loading;  
35621     },
35622     
35623     loadComplete : function(deep, anim, callback){
35624         this.loading = false;
35625         this.loaded = true;
35626         this.ui.afterLoad(this);
35627         this.fireEvent("load", this);
35628         this.expand(deep, anim, callback);
35629     },
35630     
35631     /**
35632      * Returns true if this node has been loaded
35633      * @return {Boolean}
35634      */
35635     isLoaded : function(){
35636         return this.loaded;
35637     },
35638     
35639     hasChildNodes : function(){
35640         if(!this.isLeaf() && !this.loaded){
35641             return true;
35642         }else{
35643             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35644         }
35645     },
35646
35647     /**
35648      * Trigger a reload for this node
35649      * @param {Function} callback
35650      */
35651     reload : function(callback){
35652         this.collapse(false, false);
35653         while(this.firstChild){
35654             this.removeChild(this.firstChild);
35655         }
35656         this.childrenRendered = false;
35657         this.loaded = false;
35658         if(this.isHiddenRoot()){
35659             this.expanded = false;
35660         }
35661         this.expand(false, false, callback);
35662     }
35663 });/*
35664  * Based on:
35665  * Ext JS Library 1.1.1
35666  * Copyright(c) 2006-2007, Ext JS, LLC.
35667  *
35668  * Originally Released Under LGPL - original licence link has changed is not relivant.
35669  *
35670  * Fork - LGPL
35671  * <script type="text/javascript">
35672  */
35673  
35674 /**
35675  * @class Roo.tree.TreeNodeUI
35676  * @constructor
35677  * @param {Object} node The node to render
35678  * The TreeNode UI implementation is separate from the
35679  * tree implementation. Unless you are customizing the tree UI,
35680  * you should never have to use this directly.
35681  */
35682 Roo.tree.TreeNodeUI = function(node){
35683     this.node = node;
35684     this.rendered = false;
35685     this.animating = false;
35686     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35687 };
35688
35689 Roo.tree.TreeNodeUI.prototype = {
35690     removeChild : function(node){
35691         if(this.rendered){
35692             this.ctNode.removeChild(node.ui.getEl());
35693         }
35694     },
35695
35696     beforeLoad : function(){
35697          this.addClass("x-tree-node-loading");
35698     },
35699
35700     afterLoad : function(){
35701          this.removeClass("x-tree-node-loading");
35702     },
35703
35704     onTextChange : function(node, text, oldText){
35705         if(this.rendered){
35706             this.textNode.innerHTML = text;
35707         }
35708     },
35709
35710     onDisableChange : function(node, state){
35711         this.disabled = state;
35712         if(state){
35713             this.addClass("x-tree-node-disabled");
35714         }else{
35715             this.removeClass("x-tree-node-disabled");
35716         }
35717     },
35718
35719     onSelectedChange : function(state){
35720         if(state){
35721             this.focus();
35722             this.addClass("x-tree-selected");
35723         }else{
35724             //this.blur();
35725             this.removeClass("x-tree-selected");
35726         }
35727     },
35728
35729     onMove : function(tree, node, oldParent, newParent, index, refNode){
35730         this.childIndent = null;
35731         if(this.rendered){
35732             var targetNode = newParent.ui.getContainer();
35733             if(!targetNode){//target not rendered
35734                 this.holder = document.createElement("div");
35735                 this.holder.appendChild(this.wrap);
35736                 return;
35737             }
35738             var insertBefore = refNode ? refNode.ui.getEl() : null;
35739             if(insertBefore){
35740                 targetNode.insertBefore(this.wrap, insertBefore);
35741             }else{
35742                 targetNode.appendChild(this.wrap);
35743             }
35744             this.node.renderIndent(true);
35745         }
35746     },
35747
35748     addClass : function(cls){
35749         if(this.elNode){
35750             Roo.fly(this.elNode).addClass(cls);
35751         }
35752     },
35753
35754     removeClass : function(cls){
35755         if(this.elNode){
35756             Roo.fly(this.elNode).removeClass(cls);
35757         }
35758     },
35759
35760     remove : function(){
35761         if(this.rendered){
35762             this.holder = document.createElement("div");
35763             this.holder.appendChild(this.wrap);
35764         }
35765     },
35766
35767     fireEvent : function(){
35768         return this.node.fireEvent.apply(this.node, arguments);
35769     },
35770
35771     initEvents : function(){
35772         this.node.on("move", this.onMove, this);
35773         var E = Roo.EventManager;
35774         var a = this.anchor;
35775
35776         var el = Roo.fly(a, '_treeui');
35777
35778         if(Roo.isOpera){ // opera render bug ignores the CSS
35779             el.setStyle("text-decoration", "none");
35780         }
35781
35782         el.on("click", this.onClick, this);
35783         el.on("dblclick", this.onDblClick, this);
35784
35785         if(this.checkbox){
35786             Roo.EventManager.on(this.checkbox,
35787                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35788         }
35789
35790         el.on("contextmenu", this.onContextMenu, this);
35791
35792         var icon = Roo.fly(this.iconNode);
35793         icon.on("click", this.onClick, this);
35794         icon.on("dblclick", this.onDblClick, this);
35795         icon.on("contextmenu", this.onContextMenu, this);
35796         E.on(this.ecNode, "click", this.ecClick, this, true);
35797
35798         if(this.node.disabled){
35799             this.addClass("x-tree-node-disabled");
35800         }
35801         if(this.node.hidden){
35802             this.addClass("x-tree-node-disabled");
35803         }
35804         var ot = this.node.getOwnerTree();
35805         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35806         if(dd && (!this.node.isRoot || ot.rootVisible)){
35807             Roo.dd.Registry.register(this.elNode, {
35808                 node: this.node,
35809                 handles: this.getDDHandles(),
35810                 isHandle: false
35811             });
35812         }
35813     },
35814
35815     getDDHandles : function(){
35816         return [this.iconNode, this.textNode];
35817     },
35818
35819     hide : function(){
35820         if(this.rendered){
35821             this.wrap.style.display = "none";
35822         }
35823     },
35824
35825     show : function(){
35826         if(this.rendered){
35827             this.wrap.style.display = "";
35828         }
35829     },
35830
35831     onContextMenu : function(e){
35832         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35833             e.preventDefault();
35834             this.focus();
35835             this.fireEvent("contextmenu", this.node, e);
35836         }
35837     },
35838
35839     onClick : function(e){
35840         if(this.dropping){
35841             e.stopEvent();
35842             return;
35843         }
35844         if(this.fireEvent("beforeclick", this.node, e) !== false){
35845             if(!this.disabled && this.node.attributes.href){
35846                 this.fireEvent("click", this.node, e);
35847                 return;
35848             }
35849             e.preventDefault();
35850             if(this.disabled){
35851                 return;
35852             }
35853
35854             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35855                 this.node.toggle();
35856             }
35857
35858             this.fireEvent("click", this.node, e);
35859         }else{
35860             e.stopEvent();
35861         }
35862     },
35863
35864     onDblClick : function(e){
35865         e.preventDefault();
35866         if(this.disabled){
35867             return;
35868         }
35869         if(this.checkbox){
35870             this.toggleCheck();
35871         }
35872         if(!this.animating && this.node.hasChildNodes()){
35873             this.node.toggle();
35874         }
35875         this.fireEvent("dblclick", this.node, e);
35876     },
35877
35878     onCheckChange : function(){
35879         var checked = this.checkbox.checked;
35880         this.node.attributes.checked = checked;
35881         this.fireEvent('checkchange', this.node, checked);
35882     },
35883
35884     ecClick : function(e){
35885         if(!this.animating && this.node.hasChildNodes()){
35886             this.node.toggle();
35887         }
35888     },
35889
35890     startDrop : function(){
35891         this.dropping = true;
35892     },
35893
35894     // delayed drop so the click event doesn't get fired on a drop
35895     endDrop : function(){
35896        setTimeout(function(){
35897            this.dropping = false;
35898        }.createDelegate(this), 50);
35899     },
35900
35901     expand : function(){
35902         this.updateExpandIcon();
35903         this.ctNode.style.display = "";
35904     },
35905
35906     focus : function(){
35907         if(!this.node.preventHScroll){
35908             try{this.anchor.focus();
35909             }catch(e){}
35910         }else if(!Roo.isIE){
35911             try{
35912                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35913                 var l = noscroll.scrollLeft;
35914                 this.anchor.focus();
35915                 noscroll.scrollLeft = l;
35916             }catch(e){}
35917         }
35918     },
35919
35920     toggleCheck : function(value){
35921         var cb = this.checkbox;
35922         if(cb){
35923             cb.checked = (value === undefined ? !cb.checked : value);
35924         }
35925     },
35926
35927     blur : function(){
35928         try{
35929             this.anchor.blur();
35930         }catch(e){}
35931     },
35932
35933     animExpand : function(callback){
35934         var ct = Roo.get(this.ctNode);
35935         ct.stopFx();
35936         if(!this.node.hasChildNodes()){
35937             this.updateExpandIcon();
35938             this.ctNode.style.display = "";
35939             Roo.callback(callback);
35940             return;
35941         }
35942         this.animating = true;
35943         this.updateExpandIcon();
35944
35945         ct.slideIn('t', {
35946            callback : function(){
35947                this.animating = false;
35948                Roo.callback(callback);
35949             },
35950             scope: this,
35951             duration: this.node.ownerTree.duration || .25
35952         });
35953     },
35954
35955     highlight : function(){
35956         var tree = this.node.getOwnerTree();
35957         Roo.fly(this.wrap).highlight(
35958             tree.hlColor || "C3DAF9",
35959             {endColor: tree.hlBaseColor}
35960         );
35961     },
35962
35963     collapse : function(){
35964         this.updateExpandIcon();
35965         this.ctNode.style.display = "none";
35966     },
35967
35968     animCollapse : function(callback){
35969         var ct = Roo.get(this.ctNode);
35970         ct.enableDisplayMode('block');
35971         ct.stopFx();
35972
35973         this.animating = true;
35974         this.updateExpandIcon();
35975
35976         ct.slideOut('t', {
35977             callback : function(){
35978                this.animating = false;
35979                Roo.callback(callback);
35980             },
35981             scope: this,
35982             duration: this.node.ownerTree.duration || .25
35983         });
35984     },
35985
35986     getContainer : function(){
35987         return this.ctNode;
35988     },
35989
35990     getEl : function(){
35991         return this.wrap;
35992     },
35993
35994     appendDDGhost : function(ghostNode){
35995         ghostNode.appendChild(this.elNode.cloneNode(true));
35996     },
35997
35998     getDDRepairXY : function(){
35999         return Roo.lib.Dom.getXY(this.iconNode);
36000     },
36001
36002     onRender : function(){
36003         this.render();
36004     },
36005
36006     render : function(bulkRender){
36007         var n = this.node, a = n.attributes;
36008         var targetNode = n.parentNode ?
36009               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
36010
36011         if(!this.rendered){
36012             this.rendered = true;
36013
36014             this.renderElements(n, a, targetNode, bulkRender);
36015
36016             if(a.qtip){
36017                if(this.textNode.setAttributeNS){
36018                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
36019                    if(a.qtipTitle){
36020                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
36021                    }
36022                }else{
36023                    this.textNode.setAttribute("ext:qtip", a.qtip);
36024                    if(a.qtipTitle){
36025                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
36026                    }
36027                }
36028             }else if(a.qtipCfg){
36029                 a.qtipCfg.target = Roo.id(this.textNode);
36030                 Roo.QuickTips.register(a.qtipCfg);
36031             }
36032             this.initEvents();
36033             if(!this.node.expanded){
36034                 this.updateExpandIcon();
36035             }
36036         }else{
36037             if(bulkRender === true) {
36038                 targetNode.appendChild(this.wrap);
36039             }
36040         }
36041     },
36042
36043     renderElements : function(n, a, targetNode, bulkRender)
36044     {
36045         // add some indent caching, this helps performance when rendering a large tree
36046         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36047         var t = n.getOwnerTree();
36048         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
36049         if (typeof(n.attributes.html) != 'undefined') {
36050             txt = n.attributes.html;
36051         }
36052         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
36053         var cb = typeof a.checked == 'boolean';
36054         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36055         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
36056             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
36057             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
36058             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
36059             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
36060             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
36061              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
36062                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36063             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36064             "</li>"];
36065
36066         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36067             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36068                                 n.nextSibling.ui.getEl(), buf.join(""));
36069         }else{
36070             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36071         }
36072
36073         this.elNode = this.wrap.childNodes[0];
36074         this.ctNode = this.wrap.childNodes[1];
36075         var cs = this.elNode.childNodes;
36076         this.indentNode = cs[0];
36077         this.ecNode = cs[1];
36078         this.iconNode = cs[2];
36079         var index = 3;
36080         if(cb){
36081             this.checkbox = cs[3];
36082             index++;
36083         }
36084         this.anchor = cs[index];
36085         this.textNode = cs[index].firstChild;
36086     },
36087
36088     getAnchor : function(){
36089         return this.anchor;
36090     },
36091
36092     getTextEl : function(){
36093         return this.textNode;
36094     },
36095
36096     getIconEl : function(){
36097         return this.iconNode;
36098     },
36099
36100     isChecked : function(){
36101         return this.checkbox ? this.checkbox.checked : false;
36102     },
36103
36104     updateExpandIcon : function(){
36105         if(this.rendered){
36106             var n = this.node, c1, c2;
36107             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36108             var hasChild = n.hasChildNodes();
36109             if(hasChild){
36110                 if(n.expanded){
36111                     cls += "-minus";
36112                     c1 = "x-tree-node-collapsed";
36113                     c2 = "x-tree-node-expanded";
36114                 }else{
36115                     cls += "-plus";
36116                     c1 = "x-tree-node-expanded";
36117                     c2 = "x-tree-node-collapsed";
36118                 }
36119                 if(this.wasLeaf){
36120                     this.removeClass("x-tree-node-leaf");
36121                     this.wasLeaf = false;
36122                 }
36123                 if(this.c1 != c1 || this.c2 != c2){
36124                     Roo.fly(this.elNode).replaceClass(c1, c2);
36125                     this.c1 = c1; this.c2 = c2;
36126                 }
36127             }else{
36128                 // this changes non-leafs into leafs if they have no children.
36129                 // it's not very rational behaviour..
36130                 
36131                 if(!this.wasLeaf && this.node.leaf){
36132                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36133                     delete this.c1;
36134                     delete this.c2;
36135                     this.wasLeaf = true;
36136                 }
36137             }
36138             var ecc = "x-tree-ec-icon "+cls;
36139             if(this.ecc != ecc){
36140                 this.ecNode.className = ecc;
36141                 this.ecc = ecc;
36142             }
36143         }
36144     },
36145
36146     getChildIndent : function(){
36147         if(!this.childIndent){
36148             var buf = [];
36149             var p = this.node;
36150             while(p){
36151                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36152                     if(!p.isLast()) {
36153                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36154                     } else {
36155                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36156                     }
36157                 }
36158                 p = p.parentNode;
36159             }
36160             this.childIndent = buf.join("");
36161         }
36162         return this.childIndent;
36163     },
36164
36165     renderIndent : function(){
36166         if(this.rendered){
36167             var indent = "";
36168             var p = this.node.parentNode;
36169             if(p){
36170                 indent = p.ui.getChildIndent();
36171             }
36172             if(this.indentMarkup != indent){ // don't rerender if not required
36173                 this.indentNode.innerHTML = indent;
36174                 this.indentMarkup = indent;
36175             }
36176             this.updateExpandIcon();
36177         }
36178     }
36179 };
36180
36181 Roo.tree.RootTreeNodeUI = function(){
36182     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36183 };
36184 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36185     render : function(){
36186         if(!this.rendered){
36187             var targetNode = this.node.ownerTree.innerCt.dom;
36188             this.node.expanded = true;
36189             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36190             this.wrap = this.ctNode = targetNode.firstChild;
36191         }
36192     },
36193     collapse : function(){
36194     },
36195     expand : function(){
36196     }
36197 });/*
36198  * Based on:
36199  * Ext JS Library 1.1.1
36200  * Copyright(c) 2006-2007, Ext JS, LLC.
36201  *
36202  * Originally Released Under LGPL - original licence link has changed is not relivant.
36203  *
36204  * Fork - LGPL
36205  * <script type="text/javascript">
36206  */
36207 /**
36208  * @class Roo.tree.TreeLoader
36209  * @extends Roo.util.Observable
36210  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36211  * nodes from a specified URL. The response must be a javascript Array definition
36212  * who's elements are node definition objects. eg:
36213  * <pre><code>
36214 {  success : true,
36215    data :      [
36216    
36217     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36218     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36219     ]
36220 }
36221
36222
36223 </code></pre>
36224  * <br><br>
36225  * The old style respose with just an array is still supported, but not recommended.
36226  * <br><br>
36227  *
36228  * A server request is sent, and child nodes are loaded only when a node is expanded.
36229  * The loading node's id is passed to the server under the parameter name "node" to
36230  * enable the server to produce the correct child nodes.
36231  * <br><br>
36232  * To pass extra parameters, an event handler may be attached to the "beforeload"
36233  * event, and the parameters specified in the TreeLoader's baseParams property:
36234  * <pre><code>
36235     myTreeLoader.on("beforeload", function(treeLoader, node) {
36236         this.baseParams.category = node.attributes.category;
36237     }, this);
36238     
36239 </code></pre>
36240  *
36241  * This would pass an HTTP parameter called "category" to the server containing
36242  * the value of the Node's "category" attribute.
36243  * @constructor
36244  * Creates a new Treeloader.
36245  * @param {Object} config A config object containing config properties.
36246  */
36247 Roo.tree.TreeLoader = function(config){
36248     this.baseParams = {};
36249     this.requestMethod = "POST";
36250     Roo.apply(this, config);
36251
36252     this.addEvents({
36253     
36254         /**
36255          * @event beforeload
36256          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36257          * @param {Object} This TreeLoader object.
36258          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36259          * @param {Object} callback The callback function specified in the {@link #load} call.
36260          */
36261         beforeload : true,
36262         /**
36263          * @event load
36264          * Fires when the node has been successfuly loaded.
36265          * @param {Object} This TreeLoader object.
36266          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36267          * @param {Object} response The response object containing the data from the server.
36268          */
36269         load : true,
36270         /**
36271          * @event loadexception
36272          * Fires if the network request failed.
36273          * @param {Object} This TreeLoader object.
36274          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36275          * @param {Object} response The response object containing the data from the server.
36276          */
36277         loadexception : true,
36278         /**
36279          * @event create
36280          * Fires before a node is created, enabling you to return custom Node types 
36281          * @param {Object} This TreeLoader object.
36282          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36283          */
36284         create : true
36285     });
36286
36287     Roo.tree.TreeLoader.superclass.constructor.call(this);
36288 };
36289
36290 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36291     /**
36292     * @cfg {String} dataUrl The URL from which to request a Json string which
36293     * specifies an array of node definition object representing the child nodes
36294     * to be loaded.
36295     */
36296     /**
36297     * @cfg {String} requestMethod either GET or POST
36298     * defaults to POST (due to BC)
36299     * to be loaded.
36300     */
36301     /**
36302     * @cfg {Object} baseParams (optional) An object containing properties which
36303     * specify HTTP parameters to be passed to each request for child nodes.
36304     */
36305     /**
36306     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36307     * created by this loader. If the attributes sent by the server have an attribute in this object,
36308     * they take priority.
36309     */
36310     /**
36311     * @cfg {Object} uiProviders (optional) An object containing properties which
36312     * 
36313     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36314     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36315     * <i>uiProvider</i> attribute of a returned child node is a string rather
36316     * than a reference to a TreeNodeUI implementation, this that string value
36317     * is used as a property name in the uiProviders object. You can define the provider named
36318     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36319     */
36320     uiProviders : {},
36321
36322     /**
36323     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36324     * child nodes before loading.
36325     */
36326     clearOnLoad : true,
36327
36328     /**
36329     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36330     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36331     * Grid query { data : [ .....] }
36332     */
36333     
36334     root : false,
36335      /**
36336     * @cfg {String} queryParam (optional) 
36337     * Name of the query as it will be passed on the querystring (defaults to 'node')
36338     * eg. the request will be ?node=[id]
36339     */
36340     
36341     
36342     queryParam: false,
36343     
36344     /**
36345      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36346      * This is called automatically when a node is expanded, but may be used to reload
36347      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36348      * @param {Roo.tree.TreeNode} node
36349      * @param {Function} callback
36350      */
36351     load : function(node, callback){
36352         if(this.clearOnLoad){
36353             while(node.firstChild){
36354                 node.removeChild(node.firstChild);
36355             }
36356         }
36357         if(node.attributes.children){ // preloaded json children
36358             var cs = node.attributes.children;
36359             for(var i = 0, len = cs.length; i < len; i++){
36360                 node.appendChild(this.createNode(cs[i]));
36361             }
36362             if(typeof callback == "function"){
36363                 callback();
36364             }
36365         }else if(this.dataUrl){
36366             this.requestData(node, callback);
36367         }
36368     },
36369
36370     getParams: function(node){
36371         var buf = [], bp = this.baseParams;
36372         for(var key in bp){
36373             if(typeof bp[key] != "function"){
36374                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36375             }
36376         }
36377         var n = this.queryParam === false ? 'node' : this.queryParam;
36378         buf.push(n + "=", encodeURIComponent(node.id));
36379         return buf.join("");
36380     },
36381
36382     requestData : function(node, callback){
36383         if(this.fireEvent("beforeload", this, node, callback) !== false){
36384             this.transId = Roo.Ajax.request({
36385                 method:this.requestMethod,
36386                 url: this.dataUrl||this.url,
36387                 success: this.handleResponse,
36388                 failure: this.handleFailure,
36389                 scope: this,
36390                 argument: {callback: callback, node: node},
36391                 params: this.getParams(node)
36392             });
36393         }else{
36394             // if the load is cancelled, make sure we notify
36395             // the node that we are done
36396             if(typeof callback == "function"){
36397                 callback();
36398             }
36399         }
36400     },
36401
36402     isLoading : function(){
36403         return this.transId ? true : false;
36404     },
36405
36406     abort : function(){
36407         if(this.isLoading()){
36408             Roo.Ajax.abort(this.transId);
36409         }
36410     },
36411
36412     // private
36413     createNode : function(attr)
36414     {
36415         // apply baseAttrs, nice idea Corey!
36416         if(this.baseAttrs){
36417             Roo.applyIf(attr, this.baseAttrs);
36418         }
36419         if(this.applyLoader !== false){
36420             attr.loader = this;
36421         }
36422         // uiProvider = depreciated..
36423         
36424         if(typeof(attr.uiProvider) == 'string'){
36425            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36426                 /**  eval:var:attr */ eval(attr.uiProvider);
36427         }
36428         if(typeof(this.uiProviders['default']) != 'undefined') {
36429             attr.uiProvider = this.uiProviders['default'];
36430         }
36431         
36432         this.fireEvent('create', this, attr);
36433         
36434         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36435         return(attr.leaf ?
36436                         new Roo.tree.TreeNode(attr) :
36437                         new Roo.tree.AsyncTreeNode(attr));
36438     },
36439
36440     processResponse : function(response, node, callback)
36441     {
36442         var json = response.responseText;
36443         try {
36444             
36445             var o = Roo.decode(json);
36446             
36447             if (this.root === false && typeof(o.success) != undefined) {
36448                 this.root = 'data'; // the default behaviour for list like data..
36449                 }
36450                 
36451             if (this.root !== false &&  !o.success) {
36452                 // it's a failure condition.
36453                 var a = response.argument;
36454                 this.fireEvent("loadexception", this, a.node, response);
36455                 Roo.log("Load failed - should have a handler really");
36456                 return;
36457             }
36458             
36459             
36460             
36461             if (this.root !== false) {
36462                  o = o[this.root];
36463             }
36464             
36465             for(var i = 0, len = o.length; i < len; i++){
36466                 var n = this.createNode(o[i]);
36467                 if(n){
36468                     node.appendChild(n);
36469                 }
36470             }
36471             if(typeof callback == "function"){
36472                 callback(this, node);
36473             }
36474         }catch(e){
36475             this.handleFailure(response);
36476         }
36477     },
36478
36479     handleResponse : function(response){
36480         this.transId = false;
36481         var a = response.argument;
36482         this.processResponse(response, a.node, a.callback);
36483         this.fireEvent("load", this, a.node, response);
36484     },
36485
36486     handleFailure : function(response)
36487     {
36488         // should handle failure better..
36489         this.transId = false;
36490         var a = response.argument;
36491         this.fireEvent("loadexception", this, a.node, response);
36492         if(typeof a.callback == "function"){
36493             a.callback(this, a.node);
36494         }
36495     }
36496 });/*
36497  * Based on:
36498  * Ext JS Library 1.1.1
36499  * Copyright(c) 2006-2007, Ext JS, LLC.
36500  *
36501  * Originally Released Under LGPL - original licence link has changed is not relivant.
36502  *
36503  * Fork - LGPL
36504  * <script type="text/javascript">
36505  */
36506
36507 /**
36508 * @class Roo.tree.TreeFilter
36509 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36510 * @param {TreePanel} tree
36511 * @param {Object} config (optional)
36512  */
36513 Roo.tree.TreeFilter = function(tree, config){
36514     this.tree = tree;
36515     this.filtered = {};
36516     Roo.apply(this, config);
36517 };
36518
36519 Roo.tree.TreeFilter.prototype = {
36520     clearBlank:false,
36521     reverse:false,
36522     autoClear:false,
36523     remove:false,
36524
36525      /**
36526      * Filter the data by a specific attribute.
36527      * @param {String/RegExp} value Either string that the attribute value
36528      * should start with or a RegExp to test against the attribute
36529      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36530      * @param {TreeNode} startNode (optional) The node to start the filter at.
36531      */
36532     filter : function(value, attr, startNode){
36533         attr = attr || "text";
36534         var f;
36535         if(typeof value == "string"){
36536             var vlen = value.length;
36537             // auto clear empty filter
36538             if(vlen == 0 && this.clearBlank){
36539                 this.clear();
36540                 return;
36541             }
36542             value = value.toLowerCase();
36543             f = function(n){
36544                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36545             };
36546         }else if(value.exec){ // regex?
36547             f = function(n){
36548                 return value.test(n.attributes[attr]);
36549             };
36550         }else{
36551             throw 'Illegal filter type, must be string or regex';
36552         }
36553         this.filterBy(f, null, startNode);
36554         },
36555
36556     /**
36557      * Filter by a function. The passed function will be called with each
36558      * node in the tree (or from the startNode). If the function returns true, the node is kept
36559      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36560      * @param {Function} fn The filter function
36561      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36562      */
36563     filterBy : function(fn, scope, startNode){
36564         startNode = startNode || this.tree.root;
36565         if(this.autoClear){
36566             this.clear();
36567         }
36568         var af = this.filtered, rv = this.reverse;
36569         var f = function(n){
36570             if(n == startNode){
36571                 return true;
36572             }
36573             if(af[n.id]){
36574                 return false;
36575             }
36576             var m = fn.call(scope || n, n);
36577             if(!m || rv){
36578                 af[n.id] = n;
36579                 n.ui.hide();
36580                 return false;
36581             }
36582             return true;
36583         };
36584         startNode.cascade(f);
36585         if(this.remove){
36586            for(var id in af){
36587                if(typeof id != "function"){
36588                    var n = af[id];
36589                    if(n && n.parentNode){
36590                        n.parentNode.removeChild(n);
36591                    }
36592                }
36593            }
36594         }
36595     },
36596
36597     /**
36598      * Clears the current filter. Note: with the "remove" option
36599      * set a filter cannot be cleared.
36600      */
36601     clear : function(){
36602         var t = this.tree;
36603         var af = this.filtered;
36604         for(var id in af){
36605             if(typeof id != "function"){
36606                 var n = af[id];
36607                 if(n){
36608                     n.ui.show();
36609                 }
36610             }
36611         }
36612         this.filtered = {};
36613     }
36614 };
36615 /*
36616  * Based on:
36617  * Ext JS Library 1.1.1
36618  * Copyright(c) 2006-2007, Ext JS, LLC.
36619  *
36620  * Originally Released Under LGPL - original licence link has changed is not relivant.
36621  *
36622  * Fork - LGPL
36623  * <script type="text/javascript">
36624  */
36625  
36626
36627 /**
36628  * @class Roo.tree.TreeSorter
36629  * Provides sorting of nodes in a TreePanel
36630  * 
36631  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36632  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36633  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36634  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36635  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36636  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36637  * @constructor
36638  * @param {TreePanel} tree
36639  * @param {Object} config
36640  */
36641 Roo.tree.TreeSorter = function(tree, config){
36642     Roo.apply(this, config);
36643     tree.on("beforechildrenrendered", this.doSort, this);
36644     tree.on("append", this.updateSort, this);
36645     tree.on("insert", this.updateSort, this);
36646     
36647     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36648     var p = this.property || "text";
36649     var sortType = this.sortType;
36650     var fs = this.folderSort;
36651     var cs = this.caseSensitive === true;
36652     var leafAttr = this.leafAttr || 'leaf';
36653
36654     this.sortFn = function(n1, n2){
36655         if(fs){
36656             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36657                 return 1;
36658             }
36659             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36660                 return -1;
36661             }
36662         }
36663         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36664         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36665         if(v1 < v2){
36666                         return dsc ? +1 : -1;
36667                 }else if(v1 > v2){
36668                         return dsc ? -1 : +1;
36669         }else{
36670                 return 0;
36671         }
36672     };
36673 };
36674
36675 Roo.tree.TreeSorter.prototype = {
36676     doSort : function(node){
36677         node.sort(this.sortFn);
36678     },
36679     
36680     compareNodes : function(n1, n2){
36681         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36682     },
36683     
36684     updateSort : function(tree, node){
36685         if(node.childrenRendered){
36686             this.doSort.defer(1, this, [node]);
36687         }
36688     }
36689 };/*
36690  * Based on:
36691  * Ext JS Library 1.1.1
36692  * Copyright(c) 2006-2007, Ext JS, LLC.
36693  *
36694  * Originally Released Under LGPL - original licence link has changed is not relivant.
36695  *
36696  * Fork - LGPL
36697  * <script type="text/javascript">
36698  */
36699
36700 if(Roo.dd.DropZone){
36701     
36702 Roo.tree.TreeDropZone = function(tree, config){
36703     this.allowParentInsert = false;
36704     this.allowContainerDrop = false;
36705     this.appendOnly = false;
36706     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36707     this.tree = tree;
36708     this.lastInsertClass = "x-tree-no-status";
36709     this.dragOverData = {};
36710 };
36711
36712 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36713     ddGroup : "TreeDD",
36714     scroll:  true,
36715     
36716     expandDelay : 1000,
36717     
36718     expandNode : function(node){
36719         if(node.hasChildNodes() && !node.isExpanded()){
36720             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36721         }
36722     },
36723     
36724     queueExpand : function(node){
36725         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36726     },
36727     
36728     cancelExpand : function(){
36729         if(this.expandProcId){
36730             clearTimeout(this.expandProcId);
36731             this.expandProcId = false;
36732         }
36733     },
36734     
36735     isValidDropPoint : function(n, pt, dd, e, data){
36736         if(!n || !data){ return false; }
36737         var targetNode = n.node;
36738         var dropNode = data.node;
36739         // default drop rules
36740         if(!(targetNode && targetNode.isTarget && pt)){
36741             return false;
36742         }
36743         if(pt == "append" && targetNode.allowChildren === false){
36744             return false;
36745         }
36746         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36747             return false;
36748         }
36749         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36750             return false;
36751         }
36752         // reuse the object
36753         var overEvent = this.dragOverData;
36754         overEvent.tree = this.tree;
36755         overEvent.target = targetNode;
36756         overEvent.data = data;
36757         overEvent.point = pt;
36758         overEvent.source = dd;
36759         overEvent.rawEvent = e;
36760         overEvent.dropNode = dropNode;
36761         overEvent.cancel = false;  
36762         var result = this.tree.fireEvent("nodedragover", overEvent);
36763         return overEvent.cancel === false && result !== false;
36764     },
36765     
36766     getDropPoint : function(e, n, dd)
36767     {
36768         var tn = n.node;
36769         if(tn.isRoot){
36770             return tn.allowChildren !== false ? "append" : false; // always append for root
36771         }
36772         var dragEl = n.ddel;
36773         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36774         var y = Roo.lib.Event.getPageY(e);
36775         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36776         
36777         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36778         var noAppend = tn.allowChildren === false;
36779         if(this.appendOnly || tn.parentNode.allowChildren === false){
36780             return noAppend ? false : "append";
36781         }
36782         var noBelow = false;
36783         if(!this.allowParentInsert){
36784             noBelow = tn.hasChildNodes() && tn.isExpanded();
36785         }
36786         var q = (b - t) / (noAppend ? 2 : 3);
36787         if(y >= t && y < (t + q)){
36788             return "above";
36789         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36790             return "below";
36791         }else{
36792             return "append";
36793         }
36794     },
36795     
36796     onNodeEnter : function(n, dd, e, data)
36797     {
36798         this.cancelExpand();
36799     },
36800     
36801     onNodeOver : function(n, dd, e, data)
36802     {
36803        
36804         var pt = this.getDropPoint(e, n, dd);
36805         var node = n.node;
36806         
36807         // auto node expand check
36808         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36809             this.queueExpand(node);
36810         }else if(pt != "append"){
36811             this.cancelExpand();
36812         }
36813         
36814         // set the insert point style on the target node
36815         var returnCls = this.dropNotAllowed;
36816         if(this.isValidDropPoint(n, pt, dd, e, data)){
36817            if(pt){
36818                var el = n.ddel;
36819                var cls;
36820                if(pt == "above"){
36821                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36822                    cls = "x-tree-drag-insert-above";
36823                }else if(pt == "below"){
36824                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36825                    cls = "x-tree-drag-insert-below";
36826                }else{
36827                    returnCls = "x-tree-drop-ok-append";
36828                    cls = "x-tree-drag-append";
36829                }
36830                if(this.lastInsertClass != cls){
36831                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36832                    this.lastInsertClass = cls;
36833                }
36834            }
36835        }
36836        return returnCls;
36837     },
36838     
36839     onNodeOut : function(n, dd, e, data){
36840         
36841         this.cancelExpand();
36842         this.removeDropIndicators(n);
36843     },
36844     
36845     onNodeDrop : function(n, dd, e, data){
36846         var point = this.getDropPoint(e, n, dd);
36847         var targetNode = n.node;
36848         targetNode.ui.startDrop();
36849         if(!this.isValidDropPoint(n, point, dd, e, data)){
36850             targetNode.ui.endDrop();
36851             return false;
36852         }
36853         // first try to find the drop node
36854         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36855         var dropEvent = {
36856             tree : this.tree,
36857             target: targetNode,
36858             data: data,
36859             point: point,
36860             source: dd,
36861             rawEvent: e,
36862             dropNode: dropNode,
36863             cancel: !dropNode   
36864         };
36865         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36866         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36867             targetNode.ui.endDrop();
36868             return false;
36869         }
36870         // allow target changing
36871         targetNode = dropEvent.target;
36872         if(point == "append" && !targetNode.isExpanded()){
36873             targetNode.expand(false, null, function(){
36874                 this.completeDrop(dropEvent);
36875             }.createDelegate(this));
36876         }else{
36877             this.completeDrop(dropEvent);
36878         }
36879         return true;
36880     },
36881     
36882     completeDrop : function(de){
36883         var ns = de.dropNode, p = de.point, t = de.target;
36884         if(!(ns instanceof Array)){
36885             ns = [ns];
36886         }
36887         var n;
36888         for(var i = 0, len = ns.length; i < len; i++){
36889             n = ns[i];
36890             if(p == "above"){
36891                 t.parentNode.insertBefore(n, t);
36892             }else if(p == "below"){
36893                 t.parentNode.insertBefore(n, t.nextSibling);
36894             }else{
36895                 t.appendChild(n);
36896             }
36897         }
36898         n.ui.focus();
36899         if(this.tree.hlDrop){
36900             n.ui.highlight();
36901         }
36902         t.ui.endDrop();
36903         this.tree.fireEvent("nodedrop", de);
36904     },
36905     
36906     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36907         if(this.tree.hlDrop){
36908             dropNode.ui.focus();
36909             dropNode.ui.highlight();
36910         }
36911         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36912     },
36913     
36914     getTree : function(){
36915         return this.tree;
36916     },
36917     
36918     removeDropIndicators : function(n){
36919         if(n && n.ddel){
36920             var el = n.ddel;
36921             Roo.fly(el).removeClass([
36922                     "x-tree-drag-insert-above",
36923                     "x-tree-drag-insert-below",
36924                     "x-tree-drag-append"]);
36925             this.lastInsertClass = "_noclass";
36926         }
36927     },
36928     
36929     beforeDragDrop : function(target, e, id){
36930         this.cancelExpand();
36931         return true;
36932     },
36933     
36934     afterRepair : function(data){
36935         if(data && Roo.enableFx){
36936             data.node.ui.highlight();
36937         }
36938         this.hideProxy();
36939     } 
36940     
36941 });
36942
36943 }
36944 /*
36945  * Based on:
36946  * Ext JS Library 1.1.1
36947  * Copyright(c) 2006-2007, Ext JS, LLC.
36948  *
36949  * Originally Released Under LGPL - original licence link has changed is not relivant.
36950  *
36951  * Fork - LGPL
36952  * <script type="text/javascript">
36953  */
36954  
36955
36956 if(Roo.dd.DragZone){
36957 Roo.tree.TreeDragZone = function(tree, config){
36958     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36959     this.tree = tree;
36960 };
36961
36962 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36963     ddGroup : "TreeDD",
36964    
36965     onBeforeDrag : function(data, e){
36966         var n = data.node;
36967         return n && n.draggable && !n.disabled;
36968     },
36969      
36970     
36971     onInitDrag : function(e){
36972         var data = this.dragData;
36973         this.tree.getSelectionModel().select(data.node);
36974         this.proxy.update("");
36975         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36976         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36977     },
36978     
36979     getRepairXY : function(e, data){
36980         return data.node.ui.getDDRepairXY();
36981     },
36982     
36983     onEndDrag : function(data, e){
36984         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36985         
36986         
36987     },
36988     
36989     onValidDrop : function(dd, e, id){
36990         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36991         this.hideProxy();
36992     },
36993     
36994     beforeInvalidDrop : function(e, id){
36995         // this scrolls the original position back into view
36996         var sm = this.tree.getSelectionModel();
36997         sm.clearSelections();
36998         sm.select(this.dragData.node);
36999     }
37000 });
37001 }/*
37002  * Based on:
37003  * Ext JS Library 1.1.1
37004  * Copyright(c) 2006-2007, Ext JS, LLC.
37005  *
37006  * Originally Released Under LGPL - original licence link has changed is not relivant.
37007  *
37008  * Fork - LGPL
37009  * <script type="text/javascript">
37010  */
37011 /**
37012  * @class Roo.tree.TreeEditor
37013  * @extends Roo.Editor
37014  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
37015  * as the editor field.
37016  * @constructor
37017  * @param {Object} config (used to be the tree panel.)
37018  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
37019  * 
37020  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
37021  * @cfg {Roo.form.TextField|Object} field The field configuration
37022  *
37023  * 
37024  */
37025 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
37026     var tree = config;
37027     var field;
37028     if (oldconfig) { // old style..
37029         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
37030     } else {
37031         // new style..
37032         tree = config.tree;
37033         config.field = config.field  || {};
37034         config.field.xtype = 'TextField';
37035         field = Roo.factory(config.field, Roo.form);
37036     }
37037     config = config || {};
37038     
37039     
37040     this.addEvents({
37041         /**
37042          * @event beforenodeedit
37043          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
37044          * false from the handler of this event.
37045          * @param {Editor} this
37046          * @param {Roo.tree.Node} node 
37047          */
37048         "beforenodeedit" : true
37049     });
37050     
37051     //Roo.log(config);
37052     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
37053
37054     this.tree = tree;
37055
37056     tree.on('beforeclick', this.beforeNodeClick, this);
37057     tree.getTreeEl().on('mousedown', this.hide, this);
37058     this.on('complete', this.updateNode, this);
37059     this.on('beforestartedit', this.fitToTree, this);
37060     this.on('startedit', this.bindScroll, this, {delay:10});
37061     this.on('specialkey', this.onSpecialKey, this);
37062 };
37063
37064 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37065     /**
37066      * @cfg {String} alignment
37067      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37068      */
37069     alignment: "l-l",
37070     // inherit
37071     autoSize: false,
37072     /**
37073      * @cfg {Boolean} hideEl
37074      * True to hide the bound element while the editor is displayed (defaults to false)
37075      */
37076     hideEl : false,
37077     /**
37078      * @cfg {String} cls
37079      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37080      */
37081     cls: "x-small-editor x-tree-editor",
37082     /**
37083      * @cfg {Boolean} shim
37084      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37085      */
37086     shim:false,
37087     // inherit
37088     shadow:"frame",
37089     /**
37090      * @cfg {Number} maxWidth
37091      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37092      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37093      * scroll and client offsets into account prior to each edit.
37094      */
37095     maxWidth: 250,
37096
37097     editDelay : 350,
37098
37099     // private
37100     fitToTree : function(ed, el){
37101         var td = this.tree.getTreeEl().dom, nd = el.dom;
37102         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37103             td.scrollLeft = nd.offsetLeft;
37104         }
37105         var w = Math.min(
37106                 this.maxWidth,
37107                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37108         this.setSize(w, '');
37109         
37110         return this.fireEvent('beforenodeedit', this, this.editNode);
37111         
37112     },
37113
37114     // private
37115     triggerEdit : function(node){
37116         this.completeEdit();
37117         this.editNode = node;
37118         this.startEdit(node.ui.textNode, node.text);
37119     },
37120
37121     // private
37122     bindScroll : function(){
37123         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37124     },
37125
37126     // private
37127     beforeNodeClick : function(node, e){
37128         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37129         this.lastClick = new Date();
37130         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37131             e.stopEvent();
37132             this.triggerEdit(node);
37133             return false;
37134         }
37135         return true;
37136     },
37137
37138     // private
37139     updateNode : function(ed, value){
37140         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37141         this.editNode.setText(value);
37142     },
37143
37144     // private
37145     onHide : function(){
37146         Roo.tree.TreeEditor.superclass.onHide.call(this);
37147         if(this.editNode){
37148             this.editNode.ui.focus();
37149         }
37150     },
37151
37152     // private
37153     onSpecialKey : function(field, e){
37154         var k = e.getKey();
37155         if(k == e.ESC){
37156             e.stopEvent();
37157             this.cancelEdit();
37158         }else if(k == e.ENTER && !e.hasModifier()){
37159             e.stopEvent();
37160             this.completeEdit();
37161         }
37162     }
37163 });//<Script type="text/javascript">
37164 /*
37165  * Based on:
37166  * Ext JS Library 1.1.1
37167  * Copyright(c) 2006-2007, Ext JS, LLC.
37168  *
37169  * Originally Released Under LGPL - original licence link has changed is not relivant.
37170  *
37171  * Fork - LGPL
37172  * <script type="text/javascript">
37173  */
37174  
37175 /**
37176  * Not documented??? - probably should be...
37177  */
37178
37179 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37180     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37181     
37182     renderElements : function(n, a, targetNode, bulkRender){
37183         //consel.log("renderElements?");
37184         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37185
37186         var t = n.getOwnerTree();
37187         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37188         
37189         var cols = t.columns;
37190         var bw = t.borderWidth;
37191         var c = cols[0];
37192         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37193          var cb = typeof a.checked == "boolean";
37194         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37195         var colcls = 'x-t-' + tid + '-c0';
37196         var buf = [
37197             '<li class="x-tree-node">',
37198             
37199                 
37200                 '<div class="x-tree-node-el ', a.cls,'">',
37201                     // extran...
37202                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37203                 
37204                 
37205                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37206                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37207                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37208                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37209                            (a.iconCls ? ' '+a.iconCls : ''),
37210                            '" unselectable="on" />',
37211                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37212                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37213                              
37214                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37215                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37216                             '<span unselectable="on" qtip="' + tx + '">',
37217                              tx,
37218                              '</span></a>' ,
37219                     '</div>',
37220                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37221                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37222                  ];
37223         for(var i = 1, len = cols.length; i < len; i++){
37224             c = cols[i];
37225             colcls = 'x-t-' + tid + '-c' +i;
37226             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37227             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37228                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37229                       "</div>");
37230          }
37231          
37232          buf.push(
37233             '</a>',
37234             '<div class="x-clear"></div></div>',
37235             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37236             "</li>");
37237         
37238         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37239             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37240                                 n.nextSibling.ui.getEl(), buf.join(""));
37241         }else{
37242             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37243         }
37244         var el = this.wrap.firstChild;
37245         this.elRow = el;
37246         this.elNode = el.firstChild;
37247         this.ranchor = el.childNodes[1];
37248         this.ctNode = this.wrap.childNodes[1];
37249         var cs = el.firstChild.childNodes;
37250         this.indentNode = cs[0];
37251         this.ecNode = cs[1];
37252         this.iconNode = cs[2];
37253         var index = 3;
37254         if(cb){
37255             this.checkbox = cs[3];
37256             index++;
37257         }
37258         this.anchor = cs[index];
37259         
37260         this.textNode = cs[index].firstChild;
37261         
37262         //el.on("click", this.onClick, this);
37263         //el.on("dblclick", this.onDblClick, this);
37264         
37265         
37266        // console.log(this);
37267     },
37268     initEvents : function(){
37269         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37270         
37271             
37272         var a = this.ranchor;
37273
37274         var el = Roo.get(a);
37275
37276         if(Roo.isOpera){ // opera render bug ignores the CSS
37277             el.setStyle("text-decoration", "none");
37278         }
37279
37280         el.on("click", this.onClick, this);
37281         el.on("dblclick", this.onDblClick, this);
37282         el.on("contextmenu", this.onContextMenu, this);
37283         
37284     },
37285     
37286     /*onSelectedChange : function(state){
37287         if(state){
37288             this.focus();
37289             this.addClass("x-tree-selected");
37290         }else{
37291             //this.blur();
37292             this.removeClass("x-tree-selected");
37293         }
37294     },*/
37295     addClass : function(cls){
37296         if(this.elRow){
37297             Roo.fly(this.elRow).addClass(cls);
37298         }
37299         
37300     },
37301     
37302     
37303     removeClass : function(cls){
37304         if(this.elRow){
37305             Roo.fly(this.elRow).removeClass(cls);
37306         }
37307     }
37308
37309     
37310     
37311 });//<Script type="text/javascript">
37312
37313 /*
37314  * Based on:
37315  * Ext JS Library 1.1.1
37316  * Copyright(c) 2006-2007, Ext JS, LLC.
37317  *
37318  * Originally Released Under LGPL - original licence link has changed is not relivant.
37319  *
37320  * Fork - LGPL
37321  * <script type="text/javascript">
37322  */
37323  
37324
37325 /**
37326  * @class Roo.tree.ColumnTree
37327  * @extends Roo.data.TreePanel
37328  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37329  * @cfg {int} borderWidth  compined right/left border allowance
37330  * @constructor
37331  * @param {String/HTMLElement/Element} el The container element
37332  * @param {Object} config
37333  */
37334 Roo.tree.ColumnTree =  function(el, config)
37335 {
37336    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37337    this.addEvents({
37338         /**
37339         * @event resize
37340         * Fire this event on a container when it resizes
37341         * @param {int} w Width
37342         * @param {int} h Height
37343         */
37344        "resize" : true
37345     });
37346     this.on('resize', this.onResize, this);
37347 };
37348
37349 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37350     //lines:false,
37351     
37352     
37353     borderWidth: Roo.isBorderBox ? 0 : 2, 
37354     headEls : false,
37355     
37356     render : function(){
37357         // add the header.....
37358        
37359         Roo.tree.ColumnTree.superclass.render.apply(this);
37360         
37361         this.el.addClass('x-column-tree');
37362         
37363         this.headers = this.el.createChild(
37364             {cls:'x-tree-headers'},this.innerCt.dom);
37365    
37366         var cols = this.columns, c;
37367         var totalWidth = 0;
37368         this.headEls = [];
37369         var  len = cols.length;
37370         for(var i = 0; i < len; i++){
37371              c = cols[i];
37372              totalWidth += c.width;
37373             this.headEls.push(this.headers.createChild({
37374                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37375                  cn: {
37376                      cls:'x-tree-hd-text',
37377                      html: c.header
37378                  },
37379                  style:'width:'+(c.width-this.borderWidth)+'px;'
37380              }));
37381         }
37382         this.headers.createChild({cls:'x-clear'});
37383         // prevent floats from wrapping when clipped
37384         this.headers.setWidth(totalWidth);
37385         //this.innerCt.setWidth(totalWidth);
37386         this.innerCt.setStyle({ overflow: 'auto' });
37387         this.onResize(this.width, this.height);
37388              
37389         
37390     },
37391     onResize : function(w,h)
37392     {
37393         this.height = h;
37394         this.width = w;
37395         // resize cols..
37396         this.innerCt.setWidth(this.width);
37397         this.innerCt.setHeight(this.height-20);
37398         
37399         // headers...
37400         var cols = this.columns, c;
37401         var totalWidth = 0;
37402         var expEl = false;
37403         var len = cols.length;
37404         for(var i = 0; i < len; i++){
37405             c = cols[i];
37406             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37407                 // it's the expander..
37408                 expEl  = this.headEls[i];
37409                 continue;
37410             }
37411             totalWidth += c.width;
37412             
37413         }
37414         if (expEl) {
37415             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37416         }
37417         this.headers.setWidth(w-20);
37418
37419         
37420         
37421         
37422     }
37423 });
37424 /*
37425  * Based on:
37426  * Ext JS Library 1.1.1
37427  * Copyright(c) 2006-2007, Ext JS, LLC.
37428  *
37429  * Originally Released Under LGPL - original licence link has changed is not relivant.
37430  *
37431  * Fork - LGPL
37432  * <script type="text/javascript">
37433  */
37434  
37435 /**
37436  * @class Roo.menu.Menu
37437  * @extends Roo.util.Observable
37438  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37439  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37440  * @constructor
37441  * Creates a new Menu
37442  * @param {Object} config Configuration options
37443  */
37444 Roo.menu.Menu = function(config){
37445     
37446     Roo.menu.Menu.superclass.constructor.call(this, config);
37447     
37448     this.id = this.id || Roo.id();
37449     this.addEvents({
37450         /**
37451          * @event beforeshow
37452          * Fires before this menu is displayed
37453          * @param {Roo.menu.Menu} this
37454          */
37455         beforeshow : true,
37456         /**
37457          * @event beforehide
37458          * Fires before this menu is hidden
37459          * @param {Roo.menu.Menu} this
37460          */
37461         beforehide : true,
37462         /**
37463          * @event show
37464          * Fires after this menu is displayed
37465          * @param {Roo.menu.Menu} this
37466          */
37467         show : true,
37468         /**
37469          * @event hide
37470          * Fires after this menu is hidden
37471          * @param {Roo.menu.Menu} this
37472          */
37473         hide : true,
37474         /**
37475          * @event click
37476          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37477          * @param {Roo.menu.Menu} this
37478          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37479          * @param {Roo.EventObject} e
37480          */
37481         click : true,
37482         /**
37483          * @event mouseover
37484          * Fires when the mouse is hovering over this menu
37485          * @param {Roo.menu.Menu} this
37486          * @param {Roo.EventObject} e
37487          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37488          */
37489         mouseover : true,
37490         /**
37491          * @event mouseout
37492          * Fires when the mouse exits this menu
37493          * @param {Roo.menu.Menu} this
37494          * @param {Roo.EventObject} e
37495          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37496          */
37497         mouseout : true,
37498         /**
37499          * @event itemclick
37500          * Fires when a menu item contained in this menu is clicked
37501          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37502          * @param {Roo.EventObject} e
37503          */
37504         itemclick: true
37505     });
37506     if (this.registerMenu) {
37507         Roo.menu.MenuMgr.register(this);
37508     }
37509     
37510     var mis = this.items;
37511     this.items = new Roo.util.MixedCollection();
37512     if(mis){
37513         this.add.apply(this, mis);
37514     }
37515 };
37516
37517 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37518     /**
37519      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37520      */
37521     minWidth : 120,
37522     /**
37523      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37524      * for bottom-right shadow (defaults to "sides")
37525      */
37526     shadow : "sides",
37527     /**
37528      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37529      * this menu (defaults to "tl-tr?")
37530      */
37531     subMenuAlign : "tl-tr?",
37532     /**
37533      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37534      * relative to its element of origin (defaults to "tl-bl?")
37535      */
37536     defaultAlign : "tl-bl?",
37537     /**
37538      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37539      */
37540     allowOtherMenus : false,
37541     /**
37542      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37543      */
37544     registerMenu : true,
37545
37546     hidden:true,
37547
37548     // private
37549     render : function(){
37550         if(this.el){
37551             return;
37552         }
37553         var el = this.el = new Roo.Layer({
37554             cls: "x-menu",
37555             shadow:this.shadow,
37556             constrain: false,
37557             parentEl: this.parentEl || document.body,
37558             zindex:15000
37559         });
37560
37561         this.keyNav = new Roo.menu.MenuNav(this);
37562
37563         if(this.plain){
37564             el.addClass("x-menu-plain");
37565         }
37566         if(this.cls){
37567             el.addClass(this.cls);
37568         }
37569         // generic focus element
37570         this.focusEl = el.createChild({
37571             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37572         });
37573         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37574         //disabling touch- as it's causing issues ..
37575         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37576         ul.on('click'   , this.onClick, this);
37577         
37578         
37579         ul.on("mouseover", this.onMouseOver, this);
37580         ul.on("mouseout", this.onMouseOut, this);
37581         this.items.each(function(item){
37582             if (item.hidden) {
37583                 return;
37584             }
37585             
37586             var li = document.createElement("li");
37587             li.className = "x-menu-list-item";
37588             ul.dom.appendChild(li);
37589             item.render(li, this);
37590         }, this);
37591         this.ul = ul;
37592         this.autoWidth();
37593     },
37594
37595     // private
37596     autoWidth : function(){
37597         var el = this.el, ul = this.ul;
37598         if(!el){
37599             return;
37600         }
37601         var w = this.width;
37602         if(w){
37603             el.setWidth(w);
37604         }else if(Roo.isIE){
37605             el.setWidth(this.minWidth);
37606             var t = el.dom.offsetWidth; // force recalc
37607             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37608         }
37609     },
37610
37611     // private
37612     delayAutoWidth : function(){
37613         if(this.rendered){
37614             if(!this.awTask){
37615                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37616             }
37617             this.awTask.delay(20);
37618         }
37619     },
37620
37621     // private
37622     findTargetItem : function(e){
37623         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37624         if(t && t.menuItemId){
37625             return this.items.get(t.menuItemId);
37626         }
37627     },
37628
37629     // private
37630     onClick : function(e){
37631         Roo.log("menu.onClick");
37632         var t = this.findTargetItem(e);
37633         if(!t){
37634             return;
37635         }
37636         Roo.log(e);
37637         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37638             if(t == this.activeItem && t.shouldDeactivate(e)){
37639                 this.activeItem.deactivate();
37640                 delete this.activeItem;
37641                 return;
37642             }
37643             if(t.canActivate){
37644                 this.setActiveItem(t, true);
37645             }
37646             return;
37647             
37648             
37649         }
37650         
37651         t.onClick(e);
37652         this.fireEvent("click", this, t, e);
37653     },
37654
37655     // private
37656     setActiveItem : function(item, autoExpand){
37657         if(item != this.activeItem){
37658             if(this.activeItem){
37659                 this.activeItem.deactivate();
37660             }
37661             this.activeItem = item;
37662             item.activate(autoExpand);
37663         }else if(autoExpand){
37664             item.expandMenu();
37665         }
37666     },
37667
37668     // private
37669     tryActivate : function(start, step){
37670         var items = this.items;
37671         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37672             var item = items.get(i);
37673             if(!item.disabled && item.canActivate){
37674                 this.setActiveItem(item, false);
37675                 return item;
37676             }
37677         }
37678         return false;
37679     },
37680
37681     // private
37682     onMouseOver : function(e){
37683         var t;
37684         if(t = this.findTargetItem(e)){
37685             if(t.canActivate && !t.disabled){
37686                 this.setActiveItem(t, true);
37687             }
37688         }
37689         this.fireEvent("mouseover", this, e, t);
37690     },
37691
37692     // private
37693     onMouseOut : function(e){
37694         var t;
37695         if(t = this.findTargetItem(e)){
37696             if(t == this.activeItem && t.shouldDeactivate(e)){
37697                 this.activeItem.deactivate();
37698                 delete this.activeItem;
37699             }
37700         }
37701         this.fireEvent("mouseout", this, e, t);
37702     },
37703
37704     /**
37705      * Read-only.  Returns true if the menu is currently displayed, else false.
37706      * @type Boolean
37707      */
37708     isVisible : function(){
37709         return this.el && !this.hidden;
37710     },
37711
37712     /**
37713      * Displays this menu relative to another element
37714      * @param {String/HTMLElement/Roo.Element} element The element to align to
37715      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37716      * the element (defaults to this.defaultAlign)
37717      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37718      */
37719     show : function(el, pos, parentMenu){
37720         this.parentMenu = parentMenu;
37721         if(!this.el){
37722             this.render();
37723         }
37724         this.fireEvent("beforeshow", this);
37725         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37726     },
37727
37728     /**
37729      * Displays this menu at a specific xy position
37730      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37731      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37732      */
37733     showAt : function(xy, parentMenu, /* private: */_e){
37734         this.parentMenu = parentMenu;
37735         if(!this.el){
37736             this.render();
37737         }
37738         if(_e !== false){
37739             this.fireEvent("beforeshow", this);
37740             xy = this.el.adjustForConstraints(xy);
37741         }
37742         this.el.setXY(xy);
37743         this.el.show();
37744         this.hidden = false;
37745         this.focus();
37746         this.fireEvent("show", this);
37747     },
37748
37749     focus : function(){
37750         if(!this.hidden){
37751             this.doFocus.defer(50, this);
37752         }
37753     },
37754
37755     doFocus : function(){
37756         if(!this.hidden){
37757             this.focusEl.focus();
37758         }
37759     },
37760
37761     /**
37762      * Hides this menu and optionally all parent menus
37763      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37764      */
37765     hide : function(deep){
37766         if(this.el && this.isVisible()){
37767             this.fireEvent("beforehide", this);
37768             if(this.activeItem){
37769                 this.activeItem.deactivate();
37770                 this.activeItem = null;
37771             }
37772             this.el.hide();
37773             this.hidden = true;
37774             this.fireEvent("hide", this);
37775         }
37776         if(deep === true && this.parentMenu){
37777             this.parentMenu.hide(true);
37778         }
37779     },
37780
37781     /**
37782      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37783      * Any of the following are valid:
37784      * <ul>
37785      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37786      * <li>An HTMLElement object which will be converted to a menu item</li>
37787      * <li>A menu item config object that will be created as a new menu item</li>
37788      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37789      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37790      * </ul>
37791      * Usage:
37792      * <pre><code>
37793 // Create the menu
37794 var menu = new Roo.menu.Menu();
37795
37796 // Create a menu item to add by reference
37797 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37798
37799 // Add a bunch of items at once using different methods.
37800 // Only the last item added will be returned.
37801 var item = menu.add(
37802     menuItem,                // add existing item by ref
37803     'Dynamic Item',          // new TextItem
37804     '-',                     // new separator
37805     { text: 'Config Item' }  // new item by config
37806 );
37807 </code></pre>
37808      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37809      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37810      */
37811     add : function(){
37812         var a = arguments, l = a.length, item;
37813         for(var i = 0; i < l; i++){
37814             var el = a[i];
37815             if ((typeof(el) == "object") && el.xtype && el.xns) {
37816                 el = Roo.factory(el, Roo.menu);
37817             }
37818             
37819             if(el.render){ // some kind of Item
37820                 item = this.addItem(el);
37821             }else if(typeof el == "string"){ // string
37822                 if(el == "separator" || el == "-"){
37823                     item = this.addSeparator();
37824                 }else{
37825                     item = this.addText(el);
37826                 }
37827             }else if(el.tagName || el.el){ // element
37828                 item = this.addElement(el);
37829             }else if(typeof el == "object"){ // must be menu item config?
37830                 item = this.addMenuItem(el);
37831             }
37832         }
37833         return item;
37834     },
37835
37836     /**
37837      * Returns this menu's underlying {@link Roo.Element} object
37838      * @return {Roo.Element} The element
37839      */
37840     getEl : function(){
37841         if(!this.el){
37842             this.render();
37843         }
37844         return this.el;
37845     },
37846
37847     /**
37848      * Adds a separator bar to the menu
37849      * @return {Roo.menu.Item} The menu item that was added
37850      */
37851     addSeparator : function(){
37852         return this.addItem(new Roo.menu.Separator());
37853     },
37854
37855     /**
37856      * Adds an {@link Roo.Element} object to the menu
37857      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37858      * @return {Roo.menu.Item} The menu item that was added
37859      */
37860     addElement : function(el){
37861         return this.addItem(new Roo.menu.BaseItem(el));
37862     },
37863
37864     /**
37865      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37866      * @param {Roo.menu.Item} item The menu item to add
37867      * @return {Roo.menu.Item} The menu item that was added
37868      */
37869     addItem : function(item){
37870         this.items.add(item);
37871         if(this.ul){
37872             var li = document.createElement("li");
37873             li.className = "x-menu-list-item";
37874             this.ul.dom.appendChild(li);
37875             item.render(li, this);
37876             this.delayAutoWidth();
37877         }
37878         return item;
37879     },
37880
37881     /**
37882      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37883      * @param {Object} config A MenuItem config object
37884      * @return {Roo.menu.Item} The menu item that was added
37885      */
37886     addMenuItem : function(config){
37887         if(!(config instanceof Roo.menu.Item)){
37888             if(typeof config.checked == "boolean"){ // must be check menu item config?
37889                 config = new Roo.menu.CheckItem(config);
37890             }else{
37891                 config = new Roo.menu.Item(config);
37892             }
37893         }
37894         return this.addItem(config);
37895     },
37896
37897     /**
37898      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37899      * @param {String} text The text to display in the menu item
37900      * @return {Roo.menu.Item} The menu item that was added
37901      */
37902     addText : function(text){
37903         return this.addItem(new Roo.menu.TextItem({ text : text }));
37904     },
37905
37906     /**
37907      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37908      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37909      * @param {Roo.menu.Item} item The menu item to add
37910      * @return {Roo.menu.Item} The menu item that was added
37911      */
37912     insert : function(index, item){
37913         this.items.insert(index, item);
37914         if(this.ul){
37915             var li = document.createElement("li");
37916             li.className = "x-menu-list-item";
37917             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37918             item.render(li, this);
37919             this.delayAutoWidth();
37920         }
37921         return item;
37922     },
37923
37924     /**
37925      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37926      * @param {Roo.menu.Item} item The menu item to remove
37927      */
37928     remove : function(item){
37929         this.items.removeKey(item.id);
37930         item.destroy();
37931     },
37932
37933     /**
37934      * Removes and destroys all items in the menu
37935      */
37936     removeAll : function(){
37937         var f;
37938         while(f = this.items.first()){
37939             this.remove(f);
37940         }
37941     }
37942 });
37943
37944 // MenuNav is a private utility class used internally by the Menu
37945 Roo.menu.MenuNav = function(menu){
37946     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37947     this.scope = this.menu = menu;
37948 };
37949
37950 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37951     doRelay : function(e, h){
37952         var k = e.getKey();
37953         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37954             this.menu.tryActivate(0, 1);
37955             return false;
37956         }
37957         return h.call(this.scope || this, e, this.menu);
37958     },
37959
37960     up : function(e, m){
37961         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37962             m.tryActivate(m.items.length-1, -1);
37963         }
37964     },
37965
37966     down : function(e, m){
37967         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37968             m.tryActivate(0, 1);
37969         }
37970     },
37971
37972     right : function(e, m){
37973         if(m.activeItem){
37974             m.activeItem.expandMenu(true);
37975         }
37976     },
37977
37978     left : function(e, m){
37979         m.hide();
37980         if(m.parentMenu && m.parentMenu.activeItem){
37981             m.parentMenu.activeItem.activate();
37982         }
37983     },
37984
37985     enter : function(e, m){
37986         if(m.activeItem){
37987             e.stopPropagation();
37988             m.activeItem.onClick(e);
37989             m.fireEvent("click", this, m.activeItem);
37990             return true;
37991         }
37992     }
37993 });/*
37994  * Based on:
37995  * Ext JS Library 1.1.1
37996  * Copyright(c) 2006-2007, Ext JS, LLC.
37997  *
37998  * Originally Released Under LGPL - original licence link has changed is not relivant.
37999  *
38000  * Fork - LGPL
38001  * <script type="text/javascript">
38002  */
38003  
38004 /**
38005  * @class Roo.menu.MenuMgr
38006  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
38007  * @singleton
38008  */
38009 Roo.menu.MenuMgr = function(){
38010    var menus, active, groups = {}, attached = false, lastShow = new Date();
38011
38012    // private - called when first menu is created
38013    function init(){
38014        menus = {};
38015        active = new Roo.util.MixedCollection();
38016        Roo.get(document).addKeyListener(27, function(){
38017            if(active.length > 0){
38018                hideAll();
38019            }
38020        });
38021    }
38022
38023    // private
38024    function hideAll(){
38025        if(active && active.length > 0){
38026            var c = active.clone();
38027            c.each(function(m){
38028                m.hide();
38029            });
38030        }
38031    }
38032
38033    // private
38034    function onHide(m){
38035        active.remove(m);
38036        if(active.length < 1){
38037            Roo.get(document).un("mousedown", onMouseDown);
38038            attached = false;
38039        }
38040    }
38041
38042    // private
38043    function onShow(m){
38044        var last = active.last();
38045        lastShow = new Date();
38046        active.add(m);
38047        if(!attached){
38048            Roo.get(document).on("mousedown", onMouseDown);
38049            attached = true;
38050        }
38051        if(m.parentMenu){
38052           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
38053           m.parentMenu.activeChild = m;
38054        }else if(last && last.isVisible()){
38055           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
38056        }
38057    }
38058
38059    // private
38060    function onBeforeHide(m){
38061        if(m.activeChild){
38062            m.activeChild.hide();
38063        }
38064        if(m.autoHideTimer){
38065            clearTimeout(m.autoHideTimer);
38066            delete m.autoHideTimer;
38067        }
38068    }
38069
38070    // private
38071    function onBeforeShow(m){
38072        var pm = m.parentMenu;
38073        if(!pm && !m.allowOtherMenus){
38074            hideAll();
38075        }else if(pm && pm.activeChild && active != m){
38076            pm.activeChild.hide();
38077        }
38078    }
38079
38080    // private
38081    function onMouseDown(e){
38082        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38083            hideAll();
38084        }
38085    }
38086
38087    // private
38088    function onBeforeCheck(mi, state){
38089        if(state){
38090            var g = groups[mi.group];
38091            for(var i = 0, l = g.length; i < l; i++){
38092                if(g[i] != mi){
38093                    g[i].setChecked(false);
38094                }
38095            }
38096        }
38097    }
38098
38099    return {
38100
38101        /**
38102         * Hides all menus that are currently visible
38103         */
38104        hideAll : function(){
38105             hideAll();  
38106        },
38107
38108        // private
38109        register : function(menu){
38110            if(!menus){
38111                init();
38112            }
38113            menus[menu.id] = menu;
38114            menu.on("beforehide", onBeforeHide);
38115            menu.on("hide", onHide);
38116            menu.on("beforeshow", onBeforeShow);
38117            menu.on("show", onShow);
38118            var g = menu.group;
38119            if(g && menu.events["checkchange"]){
38120                if(!groups[g]){
38121                    groups[g] = [];
38122                }
38123                groups[g].push(menu);
38124                menu.on("checkchange", onCheck);
38125            }
38126        },
38127
38128         /**
38129          * Returns a {@link Roo.menu.Menu} object
38130          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38131          * be used to generate and return a new Menu instance.
38132          */
38133        get : function(menu){
38134            if(typeof menu == "string"){ // menu id
38135                return menus[menu];
38136            }else if(menu.events){  // menu instance
38137                return menu;
38138            }else if(typeof menu.length == 'number'){ // array of menu items?
38139                return new Roo.menu.Menu({items:menu});
38140            }else{ // otherwise, must be a config
38141                return new Roo.menu.Menu(menu);
38142            }
38143        },
38144
38145        // private
38146        unregister : function(menu){
38147            delete menus[menu.id];
38148            menu.un("beforehide", onBeforeHide);
38149            menu.un("hide", onHide);
38150            menu.un("beforeshow", onBeforeShow);
38151            menu.un("show", onShow);
38152            var g = menu.group;
38153            if(g && menu.events["checkchange"]){
38154                groups[g].remove(menu);
38155                menu.un("checkchange", onCheck);
38156            }
38157        },
38158
38159        // private
38160        registerCheckable : function(menuItem){
38161            var g = menuItem.group;
38162            if(g){
38163                if(!groups[g]){
38164                    groups[g] = [];
38165                }
38166                groups[g].push(menuItem);
38167                menuItem.on("beforecheckchange", onBeforeCheck);
38168            }
38169        },
38170
38171        // private
38172        unregisterCheckable : function(menuItem){
38173            var g = menuItem.group;
38174            if(g){
38175                groups[g].remove(menuItem);
38176                menuItem.un("beforecheckchange", onBeforeCheck);
38177            }
38178        }
38179    };
38180 }();/*
38181  * Based on:
38182  * Ext JS Library 1.1.1
38183  * Copyright(c) 2006-2007, Ext JS, LLC.
38184  *
38185  * Originally Released Under LGPL - original licence link has changed is not relivant.
38186  *
38187  * Fork - LGPL
38188  * <script type="text/javascript">
38189  */
38190  
38191
38192 /**
38193  * @class Roo.menu.BaseItem
38194  * @extends Roo.Component
38195  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38196  * management and base configuration options shared by all menu components.
38197  * @constructor
38198  * Creates a new BaseItem
38199  * @param {Object} config Configuration options
38200  */
38201 Roo.menu.BaseItem = function(config){
38202     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38203
38204     this.addEvents({
38205         /**
38206          * @event click
38207          * Fires when this item is clicked
38208          * @param {Roo.menu.BaseItem} this
38209          * @param {Roo.EventObject} e
38210          */
38211         click: true,
38212         /**
38213          * @event activate
38214          * Fires when this item is activated
38215          * @param {Roo.menu.BaseItem} this
38216          */
38217         activate : true,
38218         /**
38219          * @event deactivate
38220          * Fires when this item is deactivated
38221          * @param {Roo.menu.BaseItem} this
38222          */
38223         deactivate : true
38224     });
38225
38226     if(this.handler){
38227         this.on("click", this.handler, this.scope, true);
38228     }
38229 };
38230
38231 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38232     /**
38233      * @cfg {Function} handler
38234      * A function that will handle the click event of this menu item (defaults to undefined)
38235      */
38236     /**
38237      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38238      */
38239     canActivate : false,
38240     
38241      /**
38242      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38243      */
38244     hidden: false,
38245     
38246     /**
38247      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38248      */
38249     activeClass : "x-menu-item-active",
38250     /**
38251      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38252      */
38253     hideOnClick : true,
38254     /**
38255      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38256      */
38257     hideDelay : 100,
38258
38259     // private
38260     ctype: "Roo.menu.BaseItem",
38261
38262     // private
38263     actionMode : "container",
38264
38265     // private
38266     render : function(container, parentMenu){
38267         this.parentMenu = parentMenu;
38268         Roo.menu.BaseItem.superclass.render.call(this, container);
38269         this.container.menuItemId = this.id;
38270     },
38271
38272     // private
38273     onRender : function(container, position){
38274         this.el = Roo.get(this.el);
38275         container.dom.appendChild(this.el.dom);
38276     },
38277
38278     // private
38279     onClick : function(e){
38280         if(!this.disabled && this.fireEvent("click", this, e) !== false
38281                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38282             this.handleClick(e);
38283         }else{
38284             e.stopEvent();
38285         }
38286     },
38287
38288     // private
38289     activate : function(){
38290         if(this.disabled){
38291             return false;
38292         }
38293         var li = this.container;
38294         li.addClass(this.activeClass);
38295         this.region = li.getRegion().adjust(2, 2, -2, -2);
38296         this.fireEvent("activate", this);
38297         return true;
38298     },
38299
38300     // private
38301     deactivate : function(){
38302         this.container.removeClass(this.activeClass);
38303         this.fireEvent("deactivate", this);
38304     },
38305
38306     // private
38307     shouldDeactivate : function(e){
38308         return !this.region || !this.region.contains(e.getPoint());
38309     },
38310
38311     // private
38312     handleClick : function(e){
38313         if(this.hideOnClick){
38314             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38315         }
38316     },
38317
38318     // private
38319     expandMenu : function(autoActivate){
38320         // do nothing
38321     },
38322
38323     // private
38324     hideMenu : function(){
38325         // do nothing
38326     }
38327 });/*
38328  * Based on:
38329  * Ext JS Library 1.1.1
38330  * Copyright(c) 2006-2007, Ext JS, LLC.
38331  *
38332  * Originally Released Under LGPL - original licence link has changed is not relivant.
38333  *
38334  * Fork - LGPL
38335  * <script type="text/javascript">
38336  */
38337  
38338 /**
38339  * @class Roo.menu.Adapter
38340  * @extends Roo.menu.BaseItem
38341  * 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.
38342  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38343  * @constructor
38344  * Creates a new Adapter
38345  * @param {Object} config Configuration options
38346  */
38347 Roo.menu.Adapter = function(component, config){
38348     Roo.menu.Adapter.superclass.constructor.call(this, config);
38349     this.component = component;
38350 };
38351 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38352     // private
38353     canActivate : true,
38354
38355     // private
38356     onRender : function(container, position){
38357         this.component.render(container);
38358         this.el = this.component.getEl();
38359     },
38360
38361     // private
38362     activate : function(){
38363         if(this.disabled){
38364             return false;
38365         }
38366         this.component.focus();
38367         this.fireEvent("activate", this);
38368         return true;
38369     },
38370
38371     // private
38372     deactivate : function(){
38373         this.fireEvent("deactivate", this);
38374     },
38375
38376     // private
38377     disable : function(){
38378         this.component.disable();
38379         Roo.menu.Adapter.superclass.disable.call(this);
38380     },
38381
38382     // private
38383     enable : function(){
38384         this.component.enable();
38385         Roo.menu.Adapter.superclass.enable.call(this);
38386     }
38387 });/*
38388  * Based on:
38389  * Ext JS Library 1.1.1
38390  * Copyright(c) 2006-2007, Ext JS, LLC.
38391  *
38392  * Originally Released Under LGPL - original licence link has changed is not relivant.
38393  *
38394  * Fork - LGPL
38395  * <script type="text/javascript">
38396  */
38397
38398 /**
38399  * @class Roo.menu.TextItem
38400  * @extends Roo.menu.BaseItem
38401  * Adds a static text string to a menu, usually used as either a heading or group separator.
38402  * Note: old style constructor with text is still supported.
38403  * 
38404  * @constructor
38405  * Creates a new TextItem
38406  * @param {Object} cfg Configuration
38407  */
38408 Roo.menu.TextItem = function(cfg){
38409     if (typeof(cfg) == 'string') {
38410         this.text = cfg;
38411     } else {
38412         Roo.apply(this,cfg);
38413     }
38414     
38415     Roo.menu.TextItem.superclass.constructor.call(this);
38416 };
38417
38418 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38419     /**
38420      * @cfg {String} text Text to show on item.
38421      */
38422     text : '',
38423     
38424     /**
38425      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38426      */
38427     hideOnClick : false,
38428     /**
38429      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38430      */
38431     itemCls : "x-menu-text",
38432
38433     // private
38434     onRender : function(){
38435         var s = document.createElement("span");
38436         s.className = this.itemCls;
38437         s.innerHTML = this.text;
38438         this.el = s;
38439         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38440     }
38441 });/*
38442  * Based on:
38443  * Ext JS Library 1.1.1
38444  * Copyright(c) 2006-2007, Ext JS, LLC.
38445  *
38446  * Originally Released Under LGPL - original licence link has changed is not relivant.
38447  *
38448  * Fork - LGPL
38449  * <script type="text/javascript">
38450  */
38451
38452 /**
38453  * @class Roo.menu.Separator
38454  * @extends Roo.menu.BaseItem
38455  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38456  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38457  * @constructor
38458  * @param {Object} config Configuration options
38459  */
38460 Roo.menu.Separator = function(config){
38461     Roo.menu.Separator.superclass.constructor.call(this, config);
38462 };
38463
38464 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38465     /**
38466      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38467      */
38468     itemCls : "x-menu-sep",
38469     /**
38470      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38471      */
38472     hideOnClick : false,
38473
38474     // private
38475     onRender : function(li){
38476         var s = document.createElement("span");
38477         s.className = this.itemCls;
38478         s.innerHTML = "&#160;";
38479         this.el = s;
38480         li.addClass("x-menu-sep-li");
38481         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38482     }
38483 });/*
38484  * Based on:
38485  * Ext JS Library 1.1.1
38486  * Copyright(c) 2006-2007, Ext JS, LLC.
38487  *
38488  * Originally Released Under LGPL - original licence link has changed is not relivant.
38489  *
38490  * Fork - LGPL
38491  * <script type="text/javascript">
38492  */
38493 /**
38494  * @class Roo.menu.Item
38495  * @extends Roo.menu.BaseItem
38496  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38497  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38498  * activation and click handling.
38499  * @constructor
38500  * Creates a new Item
38501  * @param {Object} config Configuration options
38502  */
38503 Roo.menu.Item = function(config){
38504     Roo.menu.Item.superclass.constructor.call(this, config);
38505     if(this.menu){
38506         this.menu = Roo.menu.MenuMgr.get(this.menu);
38507     }
38508 };
38509 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38510     
38511     /**
38512      * @cfg {String} text
38513      * The text to show on the menu item.
38514      */
38515     text: '',
38516      /**
38517      * @cfg {String} HTML to render in menu
38518      * The text to show on the menu item (HTML version).
38519      */
38520     html: '',
38521     /**
38522      * @cfg {String} icon
38523      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38524      */
38525     icon: undefined,
38526     /**
38527      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38528      */
38529     itemCls : "x-menu-item",
38530     /**
38531      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38532      */
38533     canActivate : true,
38534     /**
38535      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38536      */
38537     showDelay: 200,
38538     // doc'd in BaseItem
38539     hideDelay: 200,
38540
38541     // private
38542     ctype: "Roo.menu.Item",
38543     
38544     // private
38545     onRender : function(container, position){
38546         var el = document.createElement("a");
38547         el.hideFocus = true;
38548         el.unselectable = "on";
38549         el.href = this.href || "#";
38550         if(this.hrefTarget){
38551             el.target = this.hrefTarget;
38552         }
38553         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38554         
38555         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38556         
38557         el.innerHTML = String.format(
38558                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38559                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38560         this.el = el;
38561         Roo.menu.Item.superclass.onRender.call(this, container, position);
38562     },
38563
38564     /**
38565      * Sets the text to display in this menu item
38566      * @param {String} text The text to display
38567      * @param {Boolean} isHTML true to indicate text is pure html.
38568      */
38569     setText : function(text, isHTML){
38570         if (isHTML) {
38571             this.html = text;
38572         } else {
38573             this.text = text;
38574             this.html = '';
38575         }
38576         if(this.rendered){
38577             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38578      
38579             this.el.update(String.format(
38580                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38581                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38582             this.parentMenu.autoWidth();
38583         }
38584     },
38585
38586     // private
38587     handleClick : function(e){
38588         if(!this.href){ // if no link defined, stop the event automatically
38589             e.stopEvent();
38590         }
38591         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38592     },
38593
38594     // private
38595     activate : function(autoExpand){
38596         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38597             this.focus();
38598             if(autoExpand){
38599                 this.expandMenu();
38600             }
38601         }
38602         return true;
38603     },
38604
38605     // private
38606     shouldDeactivate : function(e){
38607         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38608             if(this.menu && this.menu.isVisible()){
38609                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38610             }
38611             return true;
38612         }
38613         return false;
38614     },
38615
38616     // private
38617     deactivate : function(){
38618         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38619         this.hideMenu();
38620     },
38621
38622     // private
38623     expandMenu : function(autoActivate){
38624         if(!this.disabled && this.menu){
38625             clearTimeout(this.hideTimer);
38626             delete this.hideTimer;
38627             if(!this.menu.isVisible() && !this.showTimer){
38628                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38629             }else if (this.menu.isVisible() && autoActivate){
38630                 this.menu.tryActivate(0, 1);
38631             }
38632         }
38633     },
38634
38635     // private
38636     deferExpand : function(autoActivate){
38637         delete this.showTimer;
38638         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38639         if(autoActivate){
38640             this.menu.tryActivate(0, 1);
38641         }
38642     },
38643
38644     // private
38645     hideMenu : function(){
38646         clearTimeout(this.showTimer);
38647         delete this.showTimer;
38648         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38649             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38650         }
38651     },
38652
38653     // private
38654     deferHide : function(){
38655         delete this.hideTimer;
38656         this.menu.hide();
38657     }
38658 });/*
38659  * Based on:
38660  * Ext JS Library 1.1.1
38661  * Copyright(c) 2006-2007, Ext JS, LLC.
38662  *
38663  * Originally Released Under LGPL - original licence link has changed is not relivant.
38664  *
38665  * Fork - LGPL
38666  * <script type="text/javascript">
38667  */
38668  
38669 /**
38670  * @class Roo.menu.CheckItem
38671  * @extends Roo.menu.Item
38672  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38673  * @constructor
38674  * Creates a new CheckItem
38675  * @param {Object} config Configuration options
38676  */
38677 Roo.menu.CheckItem = function(config){
38678     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38679     this.addEvents({
38680         /**
38681          * @event beforecheckchange
38682          * Fires before the checked value is set, providing an opportunity to cancel if needed
38683          * @param {Roo.menu.CheckItem} this
38684          * @param {Boolean} checked The new checked value that will be set
38685          */
38686         "beforecheckchange" : true,
38687         /**
38688          * @event checkchange
38689          * Fires after the checked value has been set
38690          * @param {Roo.menu.CheckItem} this
38691          * @param {Boolean} checked The checked value that was set
38692          */
38693         "checkchange" : true
38694     });
38695     if(this.checkHandler){
38696         this.on('checkchange', this.checkHandler, this.scope);
38697     }
38698 };
38699 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38700     /**
38701      * @cfg {String} group
38702      * All check items with the same group name will automatically be grouped into a single-select
38703      * radio button group (defaults to '')
38704      */
38705     /**
38706      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38707      */
38708     itemCls : "x-menu-item x-menu-check-item",
38709     /**
38710      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38711      */
38712     groupClass : "x-menu-group-item",
38713
38714     /**
38715      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38716      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38717      * initialized with checked = true will be rendered as checked.
38718      */
38719     checked: false,
38720
38721     // private
38722     ctype: "Roo.menu.CheckItem",
38723
38724     // private
38725     onRender : function(c){
38726         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38727         if(this.group){
38728             this.el.addClass(this.groupClass);
38729         }
38730         Roo.menu.MenuMgr.registerCheckable(this);
38731         if(this.checked){
38732             this.checked = false;
38733             this.setChecked(true, true);
38734         }
38735     },
38736
38737     // private
38738     destroy : function(){
38739         if(this.rendered){
38740             Roo.menu.MenuMgr.unregisterCheckable(this);
38741         }
38742         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38743     },
38744
38745     /**
38746      * Set the checked state of this item
38747      * @param {Boolean} checked The new checked value
38748      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38749      */
38750     setChecked : function(state, suppressEvent){
38751         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38752             if(this.container){
38753                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38754             }
38755             this.checked = state;
38756             if(suppressEvent !== true){
38757                 this.fireEvent("checkchange", this, state);
38758             }
38759         }
38760     },
38761
38762     // private
38763     handleClick : function(e){
38764        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38765            this.setChecked(!this.checked);
38766        }
38767        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38768     }
38769 });/*
38770  * Based on:
38771  * Ext JS Library 1.1.1
38772  * Copyright(c) 2006-2007, Ext JS, LLC.
38773  *
38774  * Originally Released Under LGPL - original licence link has changed is not relivant.
38775  *
38776  * Fork - LGPL
38777  * <script type="text/javascript">
38778  */
38779  
38780 /**
38781  * @class Roo.menu.DateItem
38782  * @extends Roo.menu.Adapter
38783  * A menu item that wraps the {@link Roo.DatPicker} component.
38784  * @constructor
38785  * Creates a new DateItem
38786  * @param {Object} config Configuration options
38787  */
38788 Roo.menu.DateItem = function(config){
38789     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38790     /** The Roo.DatePicker object @type Roo.DatePicker */
38791     this.picker = this.component;
38792     this.addEvents({select: true});
38793     
38794     this.picker.on("render", function(picker){
38795         picker.getEl().swallowEvent("click");
38796         picker.container.addClass("x-menu-date-item");
38797     });
38798
38799     this.picker.on("select", this.onSelect, this);
38800 };
38801
38802 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38803     // private
38804     onSelect : function(picker, date){
38805         this.fireEvent("select", this, date, picker);
38806         Roo.menu.DateItem.superclass.handleClick.call(this);
38807     }
38808 });/*
38809  * Based on:
38810  * Ext JS Library 1.1.1
38811  * Copyright(c) 2006-2007, Ext JS, LLC.
38812  *
38813  * Originally Released Under LGPL - original licence link has changed is not relivant.
38814  *
38815  * Fork - LGPL
38816  * <script type="text/javascript">
38817  */
38818  
38819 /**
38820  * @class Roo.menu.ColorItem
38821  * @extends Roo.menu.Adapter
38822  * A menu item that wraps the {@link Roo.ColorPalette} component.
38823  * @constructor
38824  * Creates a new ColorItem
38825  * @param {Object} config Configuration options
38826  */
38827 Roo.menu.ColorItem = function(config){
38828     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38829     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38830     this.palette = this.component;
38831     this.relayEvents(this.palette, ["select"]);
38832     if(this.selectHandler){
38833         this.on('select', this.selectHandler, this.scope);
38834     }
38835 };
38836 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38837  * Based on:
38838  * Ext JS Library 1.1.1
38839  * Copyright(c) 2006-2007, Ext JS, LLC.
38840  *
38841  * Originally Released Under LGPL - original licence link has changed is not relivant.
38842  *
38843  * Fork - LGPL
38844  * <script type="text/javascript">
38845  */
38846  
38847
38848 /**
38849  * @class Roo.menu.DateMenu
38850  * @extends Roo.menu.Menu
38851  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38852  * @constructor
38853  * Creates a new DateMenu
38854  * @param {Object} config Configuration options
38855  */
38856 Roo.menu.DateMenu = function(config){
38857     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38858     this.plain = true;
38859     var di = new Roo.menu.DateItem(config);
38860     this.add(di);
38861     /**
38862      * The {@link Roo.DatePicker} instance for this DateMenu
38863      * @type DatePicker
38864      */
38865     this.picker = di.picker;
38866     /**
38867      * @event select
38868      * @param {DatePicker} picker
38869      * @param {Date} date
38870      */
38871     this.relayEvents(di, ["select"]);
38872     this.on('beforeshow', function(){
38873         if(this.picker){
38874             this.picker.hideMonthPicker(false);
38875         }
38876     }, this);
38877 };
38878 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38879     cls:'x-date-menu'
38880 });/*
38881  * Based on:
38882  * Ext JS Library 1.1.1
38883  * Copyright(c) 2006-2007, Ext JS, LLC.
38884  *
38885  * Originally Released Under LGPL - original licence link has changed is not relivant.
38886  *
38887  * Fork - LGPL
38888  * <script type="text/javascript">
38889  */
38890  
38891
38892 /**
38893  * @class Roo.menu.ColorMenu
38894  * @extends Roo.menu.Menu
38895  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38896  * @constructor
38897  * Creates a new ColorMenu
38898  * @param {Object} config Configuration options
38899  */
38900 Roo.menu.ColorMenu = function(config){
38901     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38902     this.plain = true;
38903     var ci = new Roo.menu.ColorItem(config);
38904     this.add(ci);
38905     /**
38906      * The {@link Roo.ColorPalette} instance for this ColorMenu
38907      * @type ColorPalette
38908      */
38909     this.palette = ci.palette;
38910     /**
38911      * @event select
38912      * @param {ColorPalette} palette
38913      * @param {String} color
38914      */
38915     this.relayEvents(ci, ["select"]);
38916 };
38917 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38918  * Based on:
38919  * Ext JS Library 1.1.1
38920  * Copyright(c) 2006-2007, Ext JS, LLC.
38921  *
38922  * Originally Released Under LGPL - original licence link has changed is not relivant.
38923  *
38924  * Fork - LGPL
38925  * <script type="text/javascript">
38926  */
38927  
38928 /**
38929  * @class Roo.form.TextItem
38930  * @extends Roo.BoxComponent
38931  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38932  * @constructor
38933  * Creates a new TextItem
38934  * @param {Object} config Configuration options
38935  */
38936 Roo.form.TextItem = function(config){
38937     Roo.form.TextItem.superclass.constructor.call(this, config);
38938 };
38939
38940 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38941     
38942     /**
38943      * @cfg {String} tag the tag for this item (default div)
38944      */
38945     tag : 'div',
38946     /**
38947      * @cfg {String} html the content for this item
38948      */
38949     html : '',
38950     
38951     getAutoCreate : function()
38952     {
38953         var cfg = {
38954             id: this.id,
38955             tag: this.tag,
38956             html: this.html,
38957             cls: 'x-form-item'
38958         };
38959         
38960         return cfg;
38961         
38962     },
38963     
38964     onRender : function(ct, position)
38965     {
38966         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
38967         
38968         if(!this.el){
38969             var cfg = this.getAutoCreate();
38970             if(!cfg.name){
38971                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38972             }
38973             if (!cfg.name.length) {
38974                 delete cfg.name;
38975             }
38976             this.el = ct.createChild(cfg, position);
38977         }
38978     },
38979     /*
38980      * setHTML
38981      * @param {String} html update the Contents of the element.
38982      */
38983     setHTML : function(html)
38984     {
38985         this.fieldEl.dom.innerHTML = html;
38986     }
38987     
38988 });/*
38989  * Based on:
38990  * Ext JS Library 1.1.1
38991  * Copyright(c) 2006-2007, Ext JS, LLC.
38992  *
38993  * Originally Released Under LGPL - original licence link has changed is not relivant.
38994  *
38995  * Fork - LGPL
38996  * <script type="text/javascript">
38997  */
38998  
38999 /**
39000  * @class Roo.form.Field
39001  * @extends Roo.BoxComponent
39002  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39003  * @constructor
39004  * Creates a new Field
39005  * @param {Object} config Configuration options
39006  */
39007 Roo.form.Field = function(config){
39008     Roo.form.Field.superclass.constructor.call(this, config);
39009 };
39010
39011 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
39012     /**
39013      * @cfg {String} fieldLabel Label to use when rendering a form.
39014      */
39015        /**
39016      * @cfg {String} qtip Mouse over tip
39017      */
39018      
39019     /**
39020      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
39021      */
39022     invalidClass : "x-form-invalid",
39023     /**
39024      * @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")
39025      */
39026     invalidText : "The value in this field is invalid",
39027     /**
39028      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
39029      */
39030     focusClass : "x-form-focus",
39031     /**
39032      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
39033       automatic validation (defaults to "keyup").
39034      */
39035     validationEvent : "keyup",
39036     /**
39037      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
39038      */
39039     validateOnBlur : true,
39040     /**
39041      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
39042      */
39043     validationDelay : 250,
39044     /**
39045      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39046      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
39047      */
39048     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
39049     /**
39050      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
39051      */
39052     fieldClass : "x-form-field",
39053     /**
39054      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
39055      *<pre>
39056 Value         Description
39057 -----------   ----------------------------------------------------------------------
39058 qtip          Display a quick tip when the user hovers over the field
39059 title         Display a default browser title attribute popup
39060 under         Add a block div beneath the field containing the error text
39061 side          Add an error icon to the right of the field with a popup on hover
39062 [element id]  Add the error text directly to the innerHTML of the specified element
39063 </pre>
39064      */
39065     msgTarget : 'qtip',
39066     /**
39067      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39068      */
39069     msgFx : 'normal',
39070
39071     /**
39072      * @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.
39073      */
39074     readOnly : false,
39075
39076     /**
39077      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39078      */
39079     disabled : false,
39080
39081     /**
39082      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39083      */
39084     inputType : undefined,
39085     
39086     /**
39087      * @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).
39088          */
39089         tabIndex : undefined,
39090         
39091     // private
39092     isFormField : true,
39093
39094     // private
39095     hasFocus : false,
39096     /**
39097      * @property {Roo.Element} fieldEl
39098      * Element Containing the rendered Field (with label etc.)
39099      */
39100     /**
39101      * @cfg {Mixed} value A value to initialize this field with.
39102      */
39103     value : undefined,
39104
39105     /**
39106      * @cfg {String} name The field's HTML name attribute.
39107      */
39108     /**
39109      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39110      */
39111     // private
39112     loadedValue : false,
39113      
39114      
39115         // private ??
39116         initComponent : function(){
39117         Roo.form.Field.superclass.initComponent.call(this);
39118         this.addEvents({
39119             /**
39120              * @event focus
39121              * Fires when this field receives input focus.
39122              * @param {Roo.form.Field} this
39123              */
39124             focus : true,
39125             /**
39126              * @event blur
39127              * Fires when this field loses input focus.
39128              * @param {Roo.form.Field} this
39129              */
39130             blur : true,
39131             /**
39132              * @event specialkey
39133              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39134              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39135              * @param {Roo.form.Field} this
39136              * @param {Roo.EventObject} e The event object
39137              */
39138             specialkey : true,
39139             /**
39140              * @event change
39141              * Fires just before the field blurs if the field value has changed.
39142              * @param {Roo.form.Field} this
39143              * @param {Mixed} newValue The new value
39144              * @param {Mixed} oldValue The original value
39145              */
39146             change : true,
39147             /**
39148              * @event invalid
39149              * Fires after the field has been marked as invalid.
39150              * @param {Roo.form.Field} this
39151              * @param {String} msg The validation message
39152              */
39153             invalid : true,
39154             /**
39155              * @event valid
39156              * Fires after the field has been validated with no errors.
39157              * @param {Roo.form.Field} this
39158              */
39159             valid : true,
39160              /**
39161              * @event keyup
39162              * Fires after the key up
39163              * @param {Roo.form.Field} this
39164              * @param {Roo.EventObject}  e The event Object
39165              */
39166             keyup : true
39167         });
39168     },
39169
39170     /**
39171      * Returns the name attribute of the field if available
39172      * @return {String} name The field name
39173      */
39174     getName: function(){
39175          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39176     },
39177
39178     // private
39179     onRender : function(ct, position){
39180         Roo.form.Field.superclass.onRender.call(this, ct, position);
39181         if(!this.el){
39182             var cfg = this.getAutoCreate();
39183             if(!cfg.name){
39184                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39185             }
39186             if (!cfg.name.length) {
39187                 delete cfg.name;
39188             }
39189             if(this.inputType){
39190                 cfg.type = this.inputType;
39191             }
39192             this.el = ct.createChild(cfg, position);
39193         }
39194         var type = this.el.dom.type;
39195         if(type){
39196             if(type == 'password'){
39197                 type = 'text';
39198             }
39199             this.el.addClass('x-form-'+type);
39200         }
39201         if(this.readOnly){
39202             this.el.dom.readOnly = true;
39203         }
39204         if(this.tabIndex !== undefined){
39205             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39206         }
39207
39208         this.el.addClass([this.fieldClass, this.cls]);
39209         this.initValue();
39210     },
39211
39212     /**
39213      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39214      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39215      * @return {Roo.form.Field} this
39216      */
39217     applyTo : function(target){
39218         this.allowDomMove = false;
39219         this.el = Roo.get(target);
39220         this.render(this.el.dom.parentNode);
39221         return this;
39222     },
39223
39224     // private
39225     initValue : function(){
39226         if(this.value !== undefined){
39227             this.setValue(this.value);
39228         }else if(this.el.dom.value.length > 0){
39229             this.setValue(this.el.dom.value);
39230         }
39231     },
39232
39233     /**
39234      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39235      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39236      */
39237     isDirty : function() {
39238         if(this.disabled) {
39239             return false;
39240         }
39241         return String(this.getValue()) !== String(this.originalValue);
39242     },
39243
39244     /**
39245      * stores the current value in loadedValue
39246      */
39247     resetHasChanged : function()
39248     {
39249         this.loadedValue = String(this.getValue());
39250     },
39251     /**
39252      * checks the current value against the 'loaded' value.
39253      * Note - will return false if 'resetHasChanged' has not been called first.
39254      */
39255     hasChanged : function()
39256     {
39257         if(this.disabled || this.readOnly) {
39258             return false;
39259         }
39260         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39261     },
39262     
39263     
39264     
39265     // private
39266     afterRender : function(){
39267         Roo.form.Field.superclass.afterRender.call(this);
39268         this.initEvents();
39269     },
39270
39271     // private
39272     fireKey : function(e){
39273         //Roo.log('field ' + e.getKey());
39274         if(e.isNavKeyPress()){
39275             this.fireEvent("specialkey", this, e);
39276         }
39277     },
39278
39279     /**
39280      * Resets the current field value to the originally loaded value and clears any validation messages
39281      */
39282     reset : function(){
39283         this.setValue(this.resetValue);
39284         this.originalValue = this.getValue();
39285         this.clearInvalid();
39286     },
39287
39288     // private
39289     initEvents : function(){
39290         // safari killled keypress - so keydown is now used..
39291         this.el.on("keydown" , this.fireKey,  this);
39292         this.el.on("focus", this.onFocus,  this);
39293         this.el.on("blur", this.onBlur,  this);
39294         this.el.relayEvent('keyup', this);
39295
39296         // reference to original value for reset
39297         this.originalValue = this.getValue();
39298         this.resetValue =  this.getValue();
39299     },
39300
39301     // private
39302     onFocus : function(){
39303         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39304             this.el.addClass(this.focusClass);
39305         }
39306         if(!this.hasFocus){
39307             this.hasFocus = true;
39308             this.startValue = this.getValue();
39309             this.fireEvent("focus", this);
39310         }
39311     },
39312
39313     beforeBlur : Roo.emptyFn,
39314
39315     // private
39316     onBlur : function(){
39317         this.beforeBlur();
39318         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39319             this.el.removeClass(this.focusClass);
39320         }
39321         this.hasFocus = false;
39322         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39323             this.validate();
39324         }
39325         var v = this.getValue();
39326         if(String(v) !== String(this.startValue)){
39327             this.fireEvent('change', this, v, this.startValue);
39328         }
39329         this.fireEvent("blur", this);
39330     },
39331
39332     /**
39333      * Returns whether or not the field value is currently valid
39334      * @param {Boolean} preventMark True to disable marking the field invalid
39335      * @return {Boolean} True if the value is valid, else false
39336      */
39337     isValid : function(preventMark){
39338         if(this.disabled){
39339             return true;
39340         }
39341         var restore = this.preventMark;
39342         this.preventMark = preventMark === true;
39343         var v = this.validateValue(this.processValue(this.getRawValue()));
39344         this.preventMark = restore;
39345         return v;
39346     },
39347
39348     /**
39349      * Validates the field value
39350      * @return {Boolean} True if the value is valid, else false
39351      */
39352     validate : function(){
39353         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39354             this.clearInvalid();
39355             return true;
39356         }
39357         return false;
39358     },
39359
39360     processValue : function(value){
39361         return value;
39362     },
39363
39364     // private
39365     // Subclasses should provide the validation implementation by overriding this
39366     validateValue : function(value){
39367         return true;
39368     },
39369
39370     /**
39371      * Mark this field as invalid
39372      * @param {String} msg The validation message
39373      */
39374     markInvalid : function(msg){
39375         if(!this.rendered || this.preventMark){ // not rendered
39376             return;
39377         }
39378         
39379         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39380         
39381         obj.el.addClass(this.invalidClass);
39382         msg = msg || this.invalidText;
39383         switch(this.msgTarget){
39384             case 'qtip':
39385                 obj.el.dom.qtip = msg;
39386                 obj.el.dom.qclass = 'x-form-invalid-tip';
39387                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39388                     Roo.QuickTips.enable();
39389                 }
39390                 break;
39391             case 'title':
39392                 this.el.dom.title = msg;
39393                 break;
39394             case 'under':
39395                 if(!this.errorEl){
39396                     var elp = this.el.findParent('.x-form-element', 5, true);
39397                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39398                     this.errorEl.setWidth(elp.getWidth(true)-20);
39399                 }
39400                 this.errorEl.update(msg);
39401                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39402                 break;
39403             case 'side':
39404                 if(!this.errorIcon){
39405                     var elp = this.el.findParent('.x-form-element', 5, true);
39406                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39407                 }
39408                 this.alignErrorIcon();
39409                 this.errorIcon.dom.qtip = msg;
39410                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39411                 this.errorIcon.show();
39412                 this.on('resize', this.alignErrorIcon, this);
39413                 break;
39414             default:
39415                 var t = Roo.getDom(this.msgTarget);
39416                 t.innerHTML = msg;
39417                 t.style.display = this.msgDisplay;
39418                 break;
39419         }
39420         this.fireEvent('invalid', this, msg);
39421     },
39422
39423     // private
39424     alignErrorIcon : function(){
39425         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39426     },
39427
39428     /**
39429      * Clear any invalid styles/messages for this field
39430      */
39431     clearInvalid : function(){
39432         if(!this.rendered || this.preventMark){ // not rendered
39433             return;
39434         }
39435         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39436         
39437         obj.el.removeClass(this.invalidClass);
39438         switch(this.msgTarget){
39439             case 'qtip':
39440                 obj.el.dom.qtip = '';
39441                 break;
39442             case 'title':
39443                 this.el.dom.title = '';
39444                 break;
39445             case 'under':
39446                 if(this.errorEl){
39447                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39448                 }
39449                 break;
39450             case 'side':
39451                 if(this.errorIcon){
39452                     this.errorIcon.dom.qtip = '';
39453                     this.errorIcon.hide();
39454                     this.un('resize', this.alignErrorIcon, this);
39455                 }
39456                 break;
39457             default:
39458                 var t = Roo.getDom(this.msgTarget);
39459                 t.innerHTML = '';
39460                 t.style.display = 'none';
39461                 break;
39462         }
39463         this.fireEvent('valid', this);
39464     },
39465
39466     /**
39467      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39468      * @return {Mixed} value The field value
39469      */
39470     getRawValue : function(){
39471         var v = this.el.getValue();
39472         
39473         return v;
39474     },
39475
39476     /**
39477      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39478      * @return {Mixed} value The field value
39479      */
39480     getValue : function(){
39481         var v = this.el.getValue();
39482          
39483         return v;
39484     },
39485
39486     /**
39487      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39488      * @param {Mixed} value The value to set
39489      */
39490     setRawValue : function(v){
39491         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39492     },
39493
39494     /**
39495      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39496      * @param {Mixed} value The value to set
39497      */
39498     setValue : function(v){
39499         this.value = v;
39500         if(this.rendered){
39501             this.el.dom.value = (v === null || v === undefined ? '' : v);
39502              this.validate();
39503         }
39504     },
39505
39506     adjustSize : function(w, h){
39507         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39508         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39509         return s;
39510     },
39511
39512     adjustWidth : function(tag, w){
39513         tag = tag.toLowerCase();
39514         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39515             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39516                 if(tag == 'input'){
39517                     return w + 2;
39518                 }
39519                 if(tag == 'textarea'){
39520                     return w-2;
39521                 }
39522             }else if(Roo.isOpera){
39523                 if(tag == 'input'){
39524                     return w + 2;
39525                 }
39526                 if(tag == 'textarea'){
39527                     return w-2;
39528                 }
39529             }
39530         }
39531         return w;
39532     }
39533 });
39534
39535
39536 // anything other than normal should be considered experimental
39537 Roo.form.Field.msgFx = {
39538     normal : {
39539         show: function(msgEl, f){
39540             msgEl.setDisplayed('block');
39541         },
39542
39543         hide : function(msgEl, f){
39544             msgEl.setDisplayed(false).update('');
39545         }
39546     },
39547
39548     slide : {
39549         show: function(msgEl, f){
39550             msgEl.slideIn('t', {stopFx:true});
39551         },
39552
39553         hide : function(msgEl, f){
39554             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39555         }
39556     },
39557
39558     slideRight : {
39559         show: function(msgEl, f){
39560             msgEl.fixDisplay();
39561             msgEl.alignTo(f.el, 'tl-tr');
39562             msgEl.slideIn('l', {stopFx:true});
39563         },
39564
39565         hide : function(msgEl, f){
39566             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39567         }
39568     }
39569 };/*
39570  * Based on:
39571  * Ext JS Library 1.1.1
39572  * Copyright(c) 2006-2007, Ext JS, LLC.
39573  *
39574  * Originally Released Under LGPL - original licence link has changed is not relivant.
39575  *
39576  * Fork - LGPL
39577  * <script type="text/javascript">
39578  */
39579  
39580
39581 /**
39582  * @class Roo.form.TextField
39583  * @extends Roo.form.Field
39584  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39585  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39586  * @constructor
39587  * Creates a new TextField
39588  * @param {Object} config Configuration options
39589  */
39590 Roo.form.TextField = function(config){
39591     Roo.form.TextField.superclass.constructor.call(this, config);
39592     this.addEvents({
39593         /**
39594          * @event autosize
39595          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39596          * according to the default logic, but this event provides a hook for the developer to apply additional
39597          * logic at runtime to resize the field if needed.
39598              * @param {Roo.form.Field} this This text field
39599              * @param {Number} width The new field width
39600              */
39601         autosize : true
39602     });
39603 };
39604
39605 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39606     /**
39607      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39608      */
39609     grow : false,
39610     /**
39611      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39612      */
39613     growMin : 30,
39614     /**
39615      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39616      */
39617     growMax : 800,
39618     /**
39619      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39620      */
39621     vtype : null,
39622     /**
39623      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39624      */
39625     maskRe : null,
39626     /**
39627      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39628      */
39629     disableKeyFilter : false,
39630     /**
39631      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39632      */
39633     allowBlank : true,
39634     /**
39635      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39636      */
39637     minLength : 0,
39638     /**
39639      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39640      */
39641     maxLength : Number.MAX_VALUE,
39642     /**
39643      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39644      */
39645     minLengthText : "The minimum length for this field is {0}",
39646     /**
39647      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39648      */
39649     maxLengthText : "The maximum length for this field is {0}",
39650     /**
39651      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39652      */
39653     selectOnFocus : false,
39654     /**
39655      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39656      */    
39657     allowLeadingSpace : false,
39658     /**
39659      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39660      */
39661     blankText : "This field is required",
39662     /**
39663      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39664      * If available, this function will be called only after the basic validators all return true, and will be passed the
39665      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39666      */
39667     validator : null,
39668     /**
39669      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39670      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39671      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39672      */
39673     regex : null,
39674     /**
39675      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39676      */
39677     regexText : "",
39678     /**
39679      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39680      */
39681     emptyText : null,
39682    
39683
39684     // private
39685     initEvents : function()
39686     {
39687         if (this.emptyText) {
39688             this.el.attr('placeholder', this.emptyText);
39689         }
39690         
39691         Roo.form.TextField.superclass.initEvents.call(this);
39692         if(this.validationEvent == 'keyup'){
39693             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39694             this.el.on('keyup', this.filterValidation, this);
39695         }
39696         else if(this.validationEvent !== false){
39697             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39698         }
39699         
39700         if(this.selectOnFocus){
39701             this.on("focus", this.preFocus, this);
39702         }
39703         if (!this.allowLeadingSpace) {
39704             this.on('blur', this.cleanLeadingSpace, this);
39705         }
39706         
39707         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39708             this.el.on("keypress", this.filterKeys, this);
39709         }
39710         if(this.grow){
39711             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39712             this.el.on("click", this.autoSize,  this);
39713         }
39714         if(this.el.is('input[type=password]') && Roo.isSafari){
39715             this.el.on('keydown', this.SafariOnKeyDown, this);
39716         }
39717     },
39718
39719     processValue : function(value){
39720         if(this.stripCharsRe){
39721             var newValue = value.replace(this.stripCharsRe, '');
39722             if(newValue !== value){
39723                 this.setRawValue(newValue);
39724                 return newValue;
39725             }
39726         }
39727         return value;
39728     },
39729
39730     filterValidation : function(e){
39731         if(!e.isNavKeyPress()){
39732             this.validationTask.delay(this.validationDelay);
39733         }
39734     },
39735
39736     // private
39737     onKeyUp : function(e){
39738         if(!e.isNavKeyPress()){
39739             this.autoSize();
39740         }
39741     },
39742     // private - clean the leading white space
39743     cleanLeadingSpace : function(e)
39744     {
39745         if ( this.inputType == 'file') {
39746             return;
39747         }
39748         
39749         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39750     },
39751     /**
39752      * Resets the current field value to the originally-loaded value and clears any validation messages.
39753      *  
39754      */
39755     reset : function(){
39756         Roo.form.TextField.superclass.reset.call(this);
39757        
39758     }, 
39759     // private
39760     preFocus : function(){
39761         
39762         if(this.selectOnFocus){
39763             this.el.dom.select();
39764         }
39765     },
39766
39767     
39768     // private
39769     filterKeys : function(e){
39770         var k = e.getKey();
39771         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39772             return;
39773         }
39774         var c = e.getCharCode(), cc = String.fromCharCode(c);
39775         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39776             return;
39777         }
39778         if(!this.maskRe.test(cc)){
39779             e.stopEvent();
39780         }
39781     },
39782
39783     setValue : function(v){
39784         
39785         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39786         
39787         this.autoSize();
39788     },
39789
39790     /**
39791      * Validates a value according to the field's validation rules and marks the field as invalid
39792      * if the validation fails
39793      * @param {Mixed} value The value to validate
39794      * @return {Boolean} True if the value is valid, else false
39795      */
39796     validateValue : function(value){
39797         if(value.length < 1)  { // if it's blank
39798              if(this.allowBlank){
39799                 this.clearInvalid();
39800                 return true;
39801              }else{
39802                 this.markInvalid(this.blankText);
39803                 return false;
39804              }
39805         }
39806         if(value.length < this.minLength){
39807             this.markInvalid(String.format(this.minLengthText, this.minLength));
39808             return false;
39809         }
39810         if(value.length > this.maxLength){
39811             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39812             return false;
39813         }
39814         if(this.vtype){
39815             var vt = Roo.form.VTypes;
39816             if(!vt[this.vtype](value, this)){
39817                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39818                 return false;
39819             }
39820         }
39821         if(typeof this.validator == "function"){
39822             var msg = this.validator(value);
39823             if(msg !== true){
39824                 this.markInvalid(msg);
39825                 return false;
39826             }
39827         }
39828         if(this.regex && !this.regex.test(value)){
39829             this.markInvalid(this.regexText);
39830             return false;
39831         }
39832         return true;
39833     },
39834
39835     /**
39836      * Selects text in this field
39837      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39838      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39839      */
39840     selectText : function(start, end){
39841         var v = this.getRawValue();
39842         if(v.length > 0){
39843             start = start === undefined ? 0 : start;
39844             end = end === undefined ? v.length : end;
39845             var d = this.el.dom;
39846             if(d.setSelectionRange){
39847                 d.setSelectionRange(start, end);
39848             }else if(d.createTextRange){
39849                 var range = d.createTextRange();
39850                 range.moveStart("character", start);
39851                 range.moveEnd("character", v.length-end);
39852                 range.select();
39853             }
39854         }
39855     },
39856
39857     /**
39858      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39859      * This only takes effect if grow = true, and fires the autosize event.
39860      */
39861     autoSize : function(){
39862         if(!this.grow || !this.rendered){
39863             return;
39864         }
39865         if(!this.metrics){
39866             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39867         }
39868         var el = this.el;
39869         var v = el.dom.value;
39870         var d = document.createElement('div');
39871         d.appendChild(document.createTextNode(v));
39872         v = d.innerHTML;
39873         d = null;
39874         v += "&#160;";
39875         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39876         this.el.setWidth(w);
39877         this.fireEvent("autosize", this, w);
39878     },
39879     
39880     // private
39881     SafariOnKeyDown : function(event)
39882     {
39883         // this is a workaround for a password hang bug on chrome/ webkit.
39884         
39885         var isSelectAll = false;
39886         
39887         if(this.el.dom.selectionEnd > 0){
39888             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39889         }
39890         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39891             event.preventDefault();
39892             this.setValue('');
39893             return;
39894         }
39895         
39896         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39897             
39898             event.preventDefault();
39899             // this is very hacky as keydown always get's upper case.
39900             
39901             var cc = String.fromCharCode(event.getCharCode());
39902             
39903             
39904             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39905             
39906         }
39907         
39908         
39909     }
39910 });/*
39911  * Based on:
39912  * Ext JS Library 1.1.1
39913  * Copyright(c) 2006-2007, Ext JS, LLC.
39914  *
39915  * Originally Released Under LGPL - original licence link has changed is not relivant.
39916  *
39917  * Fork - LGPL
39918  * <script type="text/javascript">
39919  */
39920  
39921 /**
39922  * @class Roo.form.Hidden
39923  * @extends Roo.form.TextField
39924  * Simple Hidden element used on forms 
39925  * 
39926  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39927  * 
39928  * @constructor
39929  * Creates a new Hidden form element.
39930  * @param {Object} config Configuration options
39931  */
39932
39933
39934
39935 // easy hidden field...
39936 Roo.form.Hidden = function(config){
39937     Roo.form.Hidden.superclass.constructor.call(this, config);
39938 };
39939   
39940 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39941     fieldLabel:      '',
39942     inputType:      'hidden',
39943     width:          50,
39944     allowBlank:     true,
39945     labelSeparator: '',
39946     hidden:         true,
39947     itemCls :       'x-form-item-display-none'
39948
39949
39950 });
39951
39952
39953 /*
39954  * Based on:
39955  * Ext JS Library 1.1.1
39956  * Copyright(c) 2006-2007, Ext JS, LLC.
39957  *
39958  * Originally Released Under LGPL - original licence link has changed is not relivant.
39959  *
39960  * Fork - LGPL
39961  * <script type="text/javascript">
39962  */
39963  
39964 /**
39965  * @class Roo.form.TriggerField
39966  * @extends Roo.form.TextField
39967  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39968  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39969  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39970  * for which you can provide a custom implementation.  For example:
39971  * <pre><code>
39972 var trigger = new Roo.form.TriggerField();
39973 trigger.onTriggerClick = myTriggerFn;
39974 trigger.applyTo('my-field');
39975 </code></pre>
39976  *
39977  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39978  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39979  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39980  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39981  * @constructor
39982  * Create a new TriggerField.
39983  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39984  * to the base TextField)
39985  */
39986 Roo.form.TriggerField = function(config){
39987     this.mimicing = false;
39988     Roo.form.TriggerField.superclass.constructor.call(this, config);
39989 };
39990
39991 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39992     /**
39993      * @cfg {String} triggerClass A CSS class to apply to the trigger
39994      */
39995     /**
39996      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39997      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39998      */
39999     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
40000     /**
40001      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
40002      */
40003     hideTrigger:false,
40004
40005     /** @cfg {Boolean} grow @hide */
40006     /** @cfg {Number} growMin @hide */
40007     /** @cfg {Number} growMax @hide */
40008
40009     /**
40010      * @hide 
40011      * @method
40012      */
40013     autoSize: Roo.emptyFn,
40014     // private
40015     monitorTab : true,
40016     // private
40017     deferHeight : true,
40018
40019     
40020     actionMode : 'wrap',
40021     // private
40022     onResize : function(w, h){
40023         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
40024         if(typeof w == 'number'){
40025             var x = w - this.trigger.getWidth();
40026             this.el.setWidth(this.adjustWidth('input', x));
40027             this.trigger.setStyle('left', x+'px');
40028         }
40029     },
40030
40031     // private
40032     adjustSize : Roo.BoxComponent.prototype.adjustSize,
40033
40034     // private
40035     getResizeEl : function(){
40036         return this.wrap;
40037     },
40038
40039     // private
40040     getPositionEl : function(){
40041         return this.wrap;
40042     },
40043
40044     // private
40045     alignErrorIcon : function(){
40046         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
40047     },
40048
40049     // private
40050     onRender : function(ct, position){
40051         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
40052         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
40053         this.trigger = this.wrap.createChild(this.triggerConfig ||
40054                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
40055         if(this.hideTrigger){
40056             this.trigger.setDisplayed(false);
40057         }
40058         this.initTrigger();
40059         if(!this.width){
40060             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
40061         }
40062     },
40063
40064     // private
40065     initTrigger : function(){
40066         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40067         this.trigger.addClassOnOver('x-form-trigger-over');
40068         this.trigger.addClassOnClick('x-form-trigger-click');
40069     },
40070
40071     // private
40072     onDestroy : function(){
40073         if(this.trigger){
40074             this.trigger.removeAllListeners();
40075             this.trigger.remove();
40076         }
40077         if(this.wrap){
40078             this.wrap.remove();
40079         }
40080         Roo.form.TriggerField.superclass.onDestroy.call(this);
40081     },
40082
40083     // private
40084     onFocus : function(){
40085         Roo.form.TriggerField.superclass.onFocus.call(this);
40086         if(!this.mimicing){
40087             this.wrap.addClass('x-trigger-wrap-focus');
40088             this.mimicing = true;
40089             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40090             if(this.monitorTab){
40091                 this.el.on("keydown", this.checkTab, this);
40092             }
40093         }
40094     },
40095
40096     // private
40097     checkTab : function(e){
40098         if(e.getKey() == e.TAB){
40099             this.triggerBlur();
40100         }
40101     },
40102
40103     // private
40104     onBlur : function(){
40105         // do nothing
40106     },
40107
40108     // private
40109     mimicBlur : function(e, t){
40110         if(!this.wrap.contains(t) && this.validateBlur()){
40111             this.triggerBlur();
40112         }
40113     },
40114
40115     // private
40116     triggerBlur : function(){
40117         this.mimicing = false;
40118         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40119         if(this.monitorTab){
40120             this.el.un("keydown", this.checkTab, this);
40121         }
40122         this.wrap.removeClass('x-trigger-wrap-focus');
40123         Roo.form.TriggerField.superclass.onBlur.call(this);
40124     },
40125
40126     // private
40127     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40128     validateBlur : function(e, t){
40129         return true;
40130     },
40131
40132     // private
40133     onDisable : function(){
40134         Roo.form.TriggerField.superclass.onDisable.call(this);
40135         if(this.wrap){
40136             this.wrap.addClass('x-item-disabled');
40137         }
40138     },
40139
40140     // private
40141     onEnable : function(){
40142         Roo.form.TriggerField.superclass.onEnable.call(this);
40143         if(this.wrap){
40144             this.wrap.removeClass('x-item-disabled');
40145         }
40146     },
40147
40148     // private
40149     onShow : function(){
40150         var ae = this.getActionEl();
40151         
40152         if(ae){
40153             ae.dom.style.display = '';
40154             ae.dom.style.visibility = 'visible';
40155         }
40156     },
40157
40158     // private
40159     
40160     onHide : function(){
40161         var ae = this.getActionEl();
40162         ae.dom.style.display = 'none';
40163     },
40164
40165     /**
40166      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40167      * by an implementing function.
40168      * @method
40169      * @param {EventObject} e
40170      */
40171     onTriggerClick : Roo.emptyFn
40172 });
40173
40174 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40175 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40176 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40177 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40178     initComponent : function(){
40179         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40180
40181         this.triggerConfig = {
40182             tag:'span', cls:'x-form-twin-triggers', cn:[
40183             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40184             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40185         ]};
40186     },
40187
40188     getTrigger : function(index){
40189         return this.triggers[index];
40190     },
40191
40192     initTrigger : function(){
40193         var ts = this.trigger.select('.x-form-trigger', true);
40194         this.wrap.setStyle('overflow', 'hidden');
40195         var triggerField = this;
40196         ts.each(function(t, all, index){
40197             t.hide = function(){
40198                 var w = triggerField.wrap.getWidth();
40199                 this.dom.style.display = 'none';
40200                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40201             };
40202             t.show = function(){
40203                 var w = triggerField.wrap.getWidth();
40204                 this.dom.style.display = '';
40205                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40206             };
40207             var triggerIndex = 'Trigger'+(index+1);
40208
40209             if(this['hide'+triggerIndex]){
40210                 t.dom.style.display = 'none';
40211             }
40212             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40213             t.addClassOnOver('x-form-trigger-over');
40214             t.addClassOnClick('x-form-trigger-click');
40215         }, this);
40216         this.triggers = ts.elements;
40217     },
40218
40219     onTrigger1Click : Roo.emptyFn,
40220     onTrigger2Click : Roo.emptyFn
40221 });/*
40222  * Based on:
40223  * Ext JS Library 1.1.1
40224  * Copyright(c) 2006-2007, Ext JS, LLC.
40225  *
40226  * Originally Released Under LGPL - original licence link has changed is not relivant.
40227  *
40228  * Fork - LGPL
40229  * <script type="text/javascript">
40230  */
40231  
40232 /**
40233  * @class Roo.form.TextArea
40234  * @extends Roo.form.TextField
40235  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40236  * support for auto-sizing.
40237  * @constructor
40238  * Creates a new TextArea
40239  * @param {Object} config Configuration options
40240  */
40241 Roo.form.TextArea = function(config){
40242     Roo.form.TextArea.superclass.constructor.call(this, config);
40243     // these are provided exchanges for backwards compat
40244     // minHeight/maxHeight were replaced by growMin/growMax to be
40245     // compatible with TextField growing config values
40246     if(this.minHeight !== undefined){
40247         this.growMin = this.minHeight;
40248     }
40249     if(this.maxHeight !== undefined){
40250         this.growMax = this.maxHeight;
40251     }
40252 };
40253
40254 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40255     /**
40256      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40257      */
40258     growMin : 60,
40259     /**
40260      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40261      */
40262     growMax: 1000,
40263     /**
40264      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40265      * in the field (equivalent to setting overflow: hidden, defaults to false)
40266      */
40267     preventScrollbars: false,
40268     /**
40269      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40270      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40271      */
40272
40273     // private
40274     onRender : function(ct, position){
40275         if(!this.el){
40276             this.defaultAutoCreate = {
40277                 tag: "textarea",
40278                 style:"width:300px;height:60px;",
40279                 autocomplete: "new-password"
40280             };
40281         }
40282         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40283         if(this.grow){
40284             this.textSizeEl = Roo.DomHelper.append(document.body, {
40285                 tag: "pre", cls: "x-form-grow-sizer"
40286             });
40287             if(this.preventScrollbars){
40288                 this.el.setStyle("overflow", "hidden");
40289             }
40290             this.el.setHeight(this.growMin);
40291         }
40292     },
40293
40294     onDestroy : function(){
40295         if(this.textSizeEl){
40296             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40297         }
40298         Roo.form.TextArea.superclass.onDestroy.call(this);
40299     },
40300
40301     // private
40302     onKeyUp : function(e){
40303         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40304             this.autoSize();
40305         }
40306     },
40307
40308     /**
40309      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40310      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40311      */
40312     autoSize : function(){
40313         if(!this.grow || !this.textSizeEl){
40314             return;
40315         }
40316         var el = this.el;
40317         var v = el.dom.value;
40318         var ts = this.textSizeEl;
40319
40320         ts.innerHTML = '';
40321         ts.appendChild(document.createTextNode(v));
40322         v = ts.innerHTML;
40323
40324         Roo.fly(ts).setWidth(this.el.getWidth());
40325         if(v.length < 1){
40326             v = "&#160;&#160;";
40327         }else{
40328             if(Roo.isIE){
40329                 v = v.replace(/\n/g, '<p>&#160;</p>');
40330             }
40331             v += "&#160;\n&#160;";
40332         }
40333         ts.innerHTML = v;
40334         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40335         if(h != this.lastHeight){
40336             this.lastHeight = h;
40337             this.el.setHeight(h);
40338             this.fireEvent("autosize", this, h);
40339         }
40340     }
40341 });/*
40342  * Based on:
40343  * Ext JS Library 1.1.1
40344  * Copyright(c) 2006-2007, Ext JS, LLC.
40345  *
40346  * Originally Released Under LGPL - original licence link has changed is not relivant.
40347  *
40348  * Fork - LGPL
40349  * <script type="text/javascript">
40350  */
40351  
40352
40353 /**
40354  * @class Roo.form.NumberField
40355  * @extends Roo.form.TextField
40356  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40357  * @constructor
40358  * Creates a new NumberField
40359  * @param {Object} config Configuration options
40360  */
40361 Roo.form.NumberField = function(config){
40362     Roo.form.NumberField.superclass.constructor.call(this, config);
40363 };
40364
40365 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40366     /**
40367      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40368      */
40369     fieldClass: "x-form-field x-form-num-field",
40370     /**
40371      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40372      */
40373     allowDecimals : true,
40374     /**
40375      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40376      */
40377     decimalSeparator : ".",
40378     /**
40379      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40380      */
40381     decimalPrecision : 2,
40382     /**
40383      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40384      */
40385     allowNegative : true,
40386     /**
40387      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40388      */
40389     minValue : Number.NEGATIVE_INFINITY,
40390     /**
40391      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40392      */
40393     maxValue : Number.MAX_VALUE,
40394     /**
40395      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40396      */
40397     minText : "The minimum value for this field is {0}",
40398     /**
40399      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40400      */
40401     maxText : "The maximum value for this field is {0}",
40402     /**
40403      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40404      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40405      */
40406     nanText : "{0} is not a valid number",
40407
40408     // private
40409     initEvents : function(){
40410         Roo.form.NumberField.superclass.initEvents.call(this);
40411         var allowed = "0123456789";
40412         if(this.allowDecimals){
40413             allowed += this.decimalSeparator;
40414         }
40415         if(this.allowNegative){
40416             allowed += "-";
40417         }
40418         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40419         var keyPress = function(e){
40420             var k = e.getKey();
40421             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40422                 return;
40423             }
40424             var c = e.getCharCode();
40425             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40426                 e.stopEvent();
40427             }
40428         };
40429         this.el.on("keypress", keyPress, this);
40430     },
40431
40432     // private
40433     validateValue : function(value){
40434         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40435             return false;
40436         }
40437         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40438              return true;
40439         }
40440         var num = this.parseValue(value);
40441         if(isNaN(num)){
40442             this.markInvalid(String.format(this.nanText, value));
40443             return false;
40444         }
40445         if(num < this.minValue){
40446             this.markInvalid(String.format(this.minText, this.minValue));
40447             return false;
40448         }
40449         if(num > this.maxValue){
40450             this.markInvalid(String.format(this.maxText, this.maxValue));
40451             return false;
40452         }
40453         return true;
40454     },
40455
40456     getValue : function(){
40457         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40458     },
40459
40460     // private
40461     parseValue : function(value){
40462         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40463         return isNaN(value) ? '' : value;
40464     },
40465
40466     // private
40467     fixPrecision : function(value){
40468         var nan = isNaN(value);
40469         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40470             return nan ? '' : value;
40471         }
40472         return parseFloat(value).toFixed(this.decimalPrecision);
40473     },
40474
40475     setValue : function(v){
40476         v = this.fixPrecision(v);
40477         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40478     },
40479
40480     // private
40481     decimalPrecisionFcn : function(v){
40482         return Math.floor(v);
40483     },
40484
40485     beforeBlur : function(){
40486         var v = this.parseValue(this.getRawValue());
40487         if(v){
40488             this.setValue(v);
40489         }
40490     }
40491 });/*
40492  * Based on:
40493  * Ext JS Library 1.1.1
40494  * Copyright(c) 2006-2007, Ext JS, LLC.
40495  *
40496  * Originally Released Under LGPL - original licence link has changed is not relivant.
40497  *
40498  * Fork - LGPL
40499  * <script type="text/javascript">
40500  */
40501  
40502 /**
40503  * @class Roo.form.DateField
40504  * @extends Roo.form.TriggerField
40505  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40506 * @constructor
40507 * Create a new DateField
40508 * @param {Object} config
40509  */
40510 Roo.form.DateField = function(config)
40511 {
40512     Roo.form.DateField.superclass.constructor.call(this, config);
40513     
40514       this.addEvents({
40515          
40516         /**
40517          * @event select
40518          * Fires when a date is selected
40519              * @param {Roo.form.DateField} combo This combo box
40520              * @param {Date} date The date selected
40521              */
40522         'select' : true
40523          
40524     });
40525     
40526     
40527     if(typeof this.minValue == "string") {
40528         this.minValue = this.parseDate(this.minValue);
40529     }
40530     if(typeof this.maxValue == "string") {
40531         this.maxValue = this.parseDate(this.maxValue);
40532     }
40533     this.ddMatch = null;
40534     if(this.disabledDates){
40535         var dd = this.disabledDates;
40536         var re = "(?:";
40537         for(var i = 0; i < dd.length; i++){
40538             re += dd[i];
40539             if(i != dd.length-1) {
40540                 re += "|";
40541             }
40542         }
40543         this.ddMatch = new RegExp(re + ")");
40544     }
40545 };
40546
40547 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40548     /**
40549      * @cfg {String} format
40550      * The default date format string which can be overriden for localization support.  The format must be
40551      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40552      */
40553     format : "m/d/y",
40554     /**
40555      * @cfg {String} altFormats
40556      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40557      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40558      */
40559     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40560     /**
40561      * @cfg {Array} disabledDays
40562      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40563      */
40564     disabledDays : null,
40565     /**
40566      * @cfg {String} disabledDaysText
40567      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40568      */
40569     disabledDaysText : "Disabled",
40570     /**
40571      * @cfg {Array} disabledDates
40572      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40573      * expression so they are very powerful. Some examples:
40574      * <ul>
40575      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40576      * <li>["03/08", "09/16"] would disable those days for every year</li>
40577      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40578      * <li>["03/../2006"] would disable every day in March 2006</li>
40579      * <li>["^03"] would disable every day in every March</li>
40580      * </ul>
40581      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40582      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40583      */
40584     disabledDates : null,
40585     /**
40586      * @cfg {String} disabledDatesText
40587      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40588      */
40589     disabledDatesText : "Disabled",
40590     /**
40591      * @cfg {Date/String} minValue
40592      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40593      * valid format (defaults to null).
40594      */
40595     minValue : null,
40596     /**
40597      * @cfg {Date/String} maxValue
40598      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40599      * valid format (defaults to null).
40600      */
40601     maxValue : null,
40602     /**
40603      * @cfg {String} minText
40604      * The error text to display when the date in the cell is before minValue (defaults to
40605      * 'The date in this field must be after {minValue}').
40606      */
40607     minText : "The date in this field must be equal to or after {0}",
40608     /**
40609      * @cfg {String} maxText
40610      * The error text to display when the date in the cell is after maxValue (defaults to
40611      * 'The date in this field must be before {maxValue}').
40612      */
40613     maxText : "The date in this field must be equal to or before {0}",
40614     /**
40615      * @cfg {String} invalidText
40616      * The error text to display when the date in the field is invalid (defaults to
40617      * '{value} is not a valid date - it must be in the format {format}').
40618      */
40619     invalidText : "{0} is not a valid date - it must be in the format {1}",
40620     /**
40621      * @cfg {String} triggerClass
40622      * An additional CSS class used to style the trigger button.  The trigger will always get the
40623      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40624      * which displays a calendar icon).
40625      */
40626     triggerClass : 'x-form-date-trigger',
40627     
40628
40629     /**
40630      * @cfg {Boolean} useIso
40631      * if enabled, then the date field will use a hidden field to store the 
40632      * real value as iso formated date. default (false)
40633      */ 
40634     useIso : false,
40635     /**
40636      * @cfg {String/Object} autoCreate
40637      * A DomHelper element spec, or true for a default element spec (defaults to
40638      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40639      */ 
40640     // private
40641     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40642     
40643     // private
40644     hiddenField: false,
40645     
40646     onRender : function(ct, position)
40647     {
40648         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40649         if (this.useIso) {
40650             //this.el.dom.removeAttribute('name'); 
40651             Roo.log("Changing name?");
40652             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40653             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40654                     'before', true);
40655             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40656             // prevent input submission
40657             this.hiddenName = this.name;
40658         }
40659             
40660             
40661     },
40662     
40663     // private
40664     validateValue : function(value)
40665     {
40666         value = this.formatDate(value);
40667         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40668             Roo.log('super failed');
40669             return false;
40670         }
40671         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40672              return true;
40673         }
40674         var svalue = value;
40675         value = this.parseDate(value);
40676         if(!value){
40677             Roo.log('parse date failed' + svalue);
40678             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40679             return false;
40680         }
40681         var time = value.getTime();
40682         if(this.minValue && time < this.minValue.getTime()){
40683             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40684             return false;
40685         }
40686         if(this.maxValue && time > this.maxValue.getTime()){
40687             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40688             return false;
40689         }
40690         if(this.disabledDays){
40691             var day = value.getDay();
40692             for(var i = 0; i < this.disabledDays.length; i++) {
40693                 if(day === this.disabledDays[i]){
40694                     this.markInvalid(this.disabledDaysText);
40695                     return false;
40696                 }
40697             }
40698         }
40699         var fvalue = this.formatDate(value);
40700         if(this.ddMatch && this.ddMatch.test(fvalue)){
40701             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40702             return false;
40703         }
40704         return true;
40705     },
40706
40707     // private
40708     // Provides logic to override the default TriggerField.validateBlur which just returns true
40709     validateBlur : function(){
40710         return !this.menu || !this.menu.isVisible();
40711     },
40712     
40713     getName: function()
40714     {
40715         // returns hidden if it's set..
40716         if (!this.rendered) {return ''};
40717         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40718         
40719     },
40720
40721     /**
40722      * Returns the current date value of the date field.
40723      * @return {Date} The date value
40724      */
40725     getValue : function(){
40726         
40727         return  this.hiddenField ?
40728                 this.hiddenField.value :
40729                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40730     },
40731
40732     /**
40733      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40734      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40735      * (the default format used is "m/d/y").
40736      * <br />Usage:
40737      * <pre><code>
40738 //All of these calls set the same date value (May 4, 2006)
40739
40740 //Pass a date object:
40741 var dt = new Date('5/4/06');
40742 dateField.setValue(dt);
40743
40744 //Pass a date string (default format):
40745 dateField.setValue('5/4/06');
40746
40747 //Pass a date string (custom format):
40748 dateField.format = 'Y-m-d';
40749 dateField.setValue('2006-5-4');
40750 </code></pre>
40751      * @param {String/Date} date The date or valid date string
40752      */
40753     setValue : function(date){
40754         if (this.hiddenField) {
40755             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40756         }
40757         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40758         // make sure the value field is always stored as a date..
40759         this.value = this.parseDate(date);
40760         
40761         
40762     },
40763
40764     // private
40765     parseDate : function(value){
40766         if(!value || value instanceof Date){
40767             return value;
40768         }
40769         var v = Date.parseDate(value, this.format);
40770          if (!v && this.useIso) {
40771             v = Date.parseDate(value, 'Y-m-d');
40772         }
40773         if(!v && this.altFormats){
40774             if(!this.altFormatsArray){
40775                 this.altFormatsArray = this.altFormats.split("|");
40776             }
40777             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40778                 v = Date.parseDate(value, this.altFormatsArray[i]);
40779             }
40780         }
40781         return v;
40782     },
40783
40784     // private
40785     formatDate : function(date, fmt){
40786         return (!date || !(date instanceof Date)) ?
40787                date : date.dateFormat(fmt || this.format);
40788     },
40789
40790     // private
40791     menuListeners : {
40792         select: function(m, d){
40793             
40794             this.setValue(d);
40795             this.fireEvent('select', this, d);
40796         },
40797         show : function(){ // retain focus styling
40798             this.onFocus();
40799         },
40800         hide : function(){
40801             this.focus.defer(10, this);
40802             var ml = this.menuListeners;
40803             this.menu.un("select", ml.select,  this);
40804             this.menu.un("show", ml.show,  this);
40805             this.menu.un("hide", ml.hide,  this);
40806         }
40807     },
40808
40809     // private
40810     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40811     onTriggerClick : function(){
40812         if(this.disabled){
40813             return;
40814         }
40815         if(this.menu == null){
40816             this.menu = new Roo.menu.DateMenu();
40817         }
40818         Roo.apply(this.menu.picker,  {
40819             showClear: this.allowBlank,
40820             minDate : this.minValue,
40821             maxDate : this.maxValue,
40822             disabledDatesRE : this.ddMatch,
40823             disabledDatesText : this.disabledDatesText,
40824             disabledDays : this.disabledDays,
40825             disabledDaysText : this.disabledDaysText,
40826             format : this.useIso ? 'Y-m-d' : this.format,
40827             minText : String.format(this.minText, this.formatDate(this.minValue)),
40828             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40829         });
40830         this.menu.on(Roo.apply({}, this.menuListeners, {
40831             scope:this
40832         }));
40833         this.menu.picker.setValue(this.getValue() || new Date());
40834         this.menu.show(this.el, "tl-bl?");
40835     },
40836
40837     beforeBlur : function(){
40838         var v = this.parseDate(this.getRawValue());
40839         if(v){
40840             this.setValue(v);
40841         }
40842     },
40843
40844     /*@
40845      * overide
40846      * 
40847      */
40848     isDirty : function() {
40849         if(this.disabled) {
40850             return false;
40851         }
40852         
40853         if(typeof(this.startValue) === 'undefined'){
40854             return false;
40855         }
40856         
40857         return String(this.getValue()) !== String(this.startValue);
40858         
40859     },
40860     // @overide
40861     cleanLeadingSpace : function(e)
40862     {
40863        return;
40864     }
40865     
40866 });/*
40867  * Based on:
40868  * Ext JS Library 1.1.1
40869  * Copyright(c) 2006-2007, Ext JS, LLC.
40870  *
40871  * Originally Released Under LGPL - original licence link has changed is not relivant.
40872  *
40873  * Fork - LGPL
40874  * <script type="text/javascript">
40875  */
40876  
40877 /**
40878  * @class Roo.form.MonthField
40879  * @extends Roo.form.TriggerField
40880  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40881 * @constructor
40882 * Create a new MonthField
40883 * @param {Object} config
40884  */
40885 Roo.form.MonthField = function(config){
40886     
40887     Roo.form.MonthField.superclass.constructor.call(this, config);
40888     
40889       this.addEvents({
40890          
40891         /**
40892          * @event select
40893          * Fires when a date is selected
40894              * @param {Roo.form.MonthFieeld} combo This combo box
40895              * @param {Date} date The date selected
40896              */
40897         'select' : true
40898          
40899     });
40900     
40901     
40902     if(typeof this.minValue == "string") {
40903         this.minValue = this.parseDate(this.minValue);
40904     }
40905     if(typeof this.maxValue == "string") {
40906         this.maxValue = this.parseDate(this.maxValue);
40907     }
40908     this.ddMatch = null;
40909     if(this.disabledDates){
40910         var dd = this.disabledDates;
40911         var re = "(?:";
40912         for(var i = 0; i < dd.length; i++){
40913             re += dd[i];
40914             if(i != dd.length-1) {
40915                 re += "|";
40916             }
40917         }
40918         this.ddMatch = new RegExp(re + ")");
40919     }
40920 };
40921
40922 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40923     /**
40924      * @cfg {String} format
40925      * The default date format string which can be overriden for localization support.  The format must be
40926      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40927      */
40928     format : "M Y",
40929     /**
40930      * @cfg {String} altFormats
40931      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40932      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40933      */
40934     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40935     /**
40936      * @cfg {Array} disabledDays
40937      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40938      */
40939     disabledDays : [0,1,2,3,4,5,6],
40940     /**
40941      * @cfg {String} disabledDaysText
40942      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40943      */
40944     disabledDaysText : "Disabled",
40945     /**
40946      * @cfg {Array} disabledDates
40947      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40948      * expression so they are very powerful. Some examples:
40949      * <ul>
40950      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40951      * <li>["03/08", "09/16"] would disable those days for every year</li>
40952      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40953      * <li>["03/../2006"] would disable every day in March 2006</li>
40954      * <li>["^03"] would disable every day in every March</li>
40955      * </ul>
40956      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40957      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40958      */
40959     disabledDates : null,
40960     /**
40961      * @cfg {String} disabledDatesText
40962      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40963      */
40964     disabledDatesText : "Disabled",
40965     /**
40966      * @cfg {Date/String} minValue
40967      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40968      * valid format (defaults to null).
40969      */
40970     minValue : null,
40971     /**
40972      * @cfg {Date/String} maxValue
40973      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40974      * valid format (defaults to null).
40975      */
40976     maxValue : null,
40977     /**
40978      * @cfg {String} minText
40979      * The error text to display when the date in the cell is before minValue (defaults to
40980      * 'The date in this field must be after {minValue}').
40981      */
40982     minText : "The date in this field must be equal to or after {0}",
40983     /**
40984      * @cfg {String} maxTextf
40985      * The error text to display when the date in the cell is after maxValue (defaults to
40986      * 'The date in this field must be before {maxValue}').
40987      */
40988     maxText : "The date in this field must be equal to or before {0}",
40989     /**
40990      * @cfg {String} invalidText
40991      * The error text to display when the date in the field is invalid (defaults to
40992      * '{value} is not a valid date - it must be in the format {format}').
40993      */
40994     invalidText : "{0} is not a valid date - it must be in the format {1}",
40995     /**
40996      * @cfg {String} triggerClass
40997      * An additional CSS class used to style the trigger button.  The trigger will always get the
40998      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40999      * which displays a calendar icon).
41000      */
41001     triggerClass : 'x-form-date-trigger',
41002     
41003
41004     /**
41005      * @cfg {Boolean} useIso
41006      * if enabled, then the date field will use a hidden field to store the 
41007      * real value as iso formated date. default (true)
41008      */ 
41009     useIso : true,
41010     /**
41011      * @cfg {String/Object} autoCreate
41012      * A DomHelper element spec, or true for a default element spec (defaults to
41013      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
41014      */ 
41015     // private
41016     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
41017     
41018     // private
41019     hiddenField: false,
41020     
41021     hideMonthPicker : false,
41022     
41023     onRender : function(ct, position)
41024     {
41025         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
41026         if (this.useIso) {
41027             this.el.dom.removeAttribute('name'); 
41028             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
41029                     'before', true);
41030             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
41031             // prevent input submission
41032             this.hiddenName = this.name;
41033         }
41034             
41035             
41036     },
41037     
41038     // private
41039     validateValue : function(value)
41040     {
41041         value = this.formatDate(value);
41042         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
41043             return false;
41044         }
41045         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41046              return true;
41047         }
41048         var svalue = value;
41049         value = this.parseDate(value);
41050         if(!value){
41051             this.markInvalid(String.format(this.invalidText, svalue, this.format));
41052             return false;
41053         }
41054         var time = value.getTime();
41055         if(this.minValue && time < this.minValue.getTime()){
41056             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
41057             return false;
41058         }
41059         if(this.maxValue && time > this.maxValue.getTime()){
41060             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
41061             return false;
41062         }
41063         /*if(this.disabledDays){
41064             var day = value.getDay();
41065             for(var i = 0; i < this.disabledDays.length; i++) {
41066                 if(day === this.disabledDays[i]){
41067                     this.markInvalid(this.disabledDaysText);
41068                     return false;
41069                 }
41070             }
41071         }
41072         */
41073         var fvalue = this.formatDate(value);
41074         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41075             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41076             return false;
41077         }
41078         */
41079         return true;
41080     },
41081
41082     // private
41083     // Provides logic to override the default TriggerField.validateBlur which just returns true
41084     validateBlur : function(){
41085         return !this.menu || !this.menu.isVisible();
41086     },
41087
41088     /**
41089      * Returns the current date value of the date field.
41090      * @return {Date} The date value
41091      */
41092     getValue : function(){
41093         
41094         
41095         
41096         return  this.hiddenField ?
41097                 this.hiddenField.value :
41098                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41099     },
41100
41101     /**
41102      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41103      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41104      * (the default format used is "m/d/y").
41105      * <br />Usage:
41106      * <pre><code>
41107 //All of these calls set the same date value (May 4, 2006)
41108
41109 //Pass a date object:
41110 var dt = new Date('5/4/06');
41111 monthField.setValue(dt);
41112
41113 //Pass a date string (default format):
41114 monthField.setValue('5/4/06');
41115
41116 //Pass a date string (custom format):
41117 monthField.format = 'Y-m-d';
41118 monthField.setValue('2006-5-4');
41119 </code></pre>
41120      * @param {String/Date} date The date or valid date string
41121      */
41122     setValue : function(date){
41123         Roo.log('month setValue' + date);
41124         // can only be first of month..
41125         
41126         var val = this.parseDate(date);
41127         
41128         if (this.hiddenField) {
41129             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41130         }
41131         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41132         this.value = this.parseDate(date);
41133     },
41134
41135     // private
41136     parseDate : function(value){
41137         if(!value || value instanceof Date){
41138             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41139             return value;
41140         }
41141         var v = Date.parseDate(value, this.format);
41142         if (!v && this.useIso) {
41143             v = Date.parseDate(value, 'Y-m-d');
41144         }
41145         if (v) {
41146             // 
41147             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41148         }
41149         
41150         
41151         if(!v && this.altFormats){
41152             if(!this.altFormatsArray){
41153                 this.altFormatsArray = this.altFormats.split("|");
41154             }
41155             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41156                 v = Date.parseDate(value, this.altFormatsArray[i]);
41157             }
41158         }
41159         return v;
41160     },
41161
41162     // private
41163     formatDate : function(date, fmt){
41164         return (!date || !(date instanceof Date)) ?
41165                date : date.dateFormat(fmt || this.format);
41166     },
41167
41168     // private
41169     menuListeners : {
41170         select: function(m, d){
41171             this.setValue(d);
41172             this.fireEvent('select', this, d);
41173         },
41174         show : function(){ // retain focus styling
41175             this.onFocus();
41176         },
41177         hide : function(){
41178             this.focus.defer(10, this);
41179             var ml = this.menuListeners;
41180             this.menu.un("select", ml.select,  this);
41181             this.menu.un("show", ml.show,  this);
41182             this.menu.un("hide", ml.hide,  this);
41183         }
41184     },
41185     // private
41186     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41187     onTriggerClick : function(){
41188         if(this.disabled){
41189             return;
41190         }
41191         if(this.menu == null){
41192             this.menu = new Roo.menu.DateMenu();
41193            
41194         }
41195         
41196         Roo.apply(this.menu.picker,  {
41197             
41198             showClear: this.allowBlank,
41199             minDate : this.minValue,
41200             maxDate : this.maxValue,
41201             disabledDatesRE : this.ddMatch,
41202             disabledDatesText : this.disabledDatesText,
41203             
41204             format : this.useIso ? 'Y-m-d' : this.format,
41205             minText : String.format(this.minText, this.formatDate(this.minValue)),
41206             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41207             
41208         });
41209          this.menu.on(Roo.apply({}, this.menuListeners, {
41210             scope:this
41211         }));
41212        
41213         
41214         var m = this.menu;
41215         var p = m.picker;
41216         
41217         // hide month picker get's called when we called by 'before hide';
41218         
41219         var ignorehide = true;
41220         p.hideMonthPicker  = function(disableAnim){
41221             if (ignorehide) {
41222                 return;
41223             }
41224              if(this.monthPicker){
41225                 Roo.log("hideMonthPicker called");
41226                 if(disableAnim === true){
41227                     this.monthPicker.hide();
41228                 }else{
41229                     this.monthPicker.slideOut('t', {duration:.2});
41230                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41231                     p.fireEvent("select", this, this.value);
41232                     m.hide();
41233                 }
41234             }
41235         }
41236         
41237         Roo.log('picker set value');
41238         Roo.log(this.getValue());
41239         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41240         m.show(this.el, 'tl-bl?');
41241         ignorehide  = false;
41242         // this will trigger hideMonthPicker..
41243         
41244         
41245         // hidden the day picker
41246         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41247         
41248         
41249         
41250       
41251         
41252         p.showMonthPicker.defer(100, p);
41253     
41254         
41255        
41256     },
41257
41258     beforeBlur : function(){
41259         var v = this.parseDate(this.getRawValue());
41260         if(v){
41261             this.setValue(v);
41262         }
41263     }
41264
41265     /** @cfg {Boolean} grow @hide */
41266     /** @cfg {Number} growMin @hide */
41267     /** @cfg {Number} growMax @hide */
41268     /**
41269      * @hide
41270      * @method autoSize
41271      */
41272 });/*
41273  * Based on:
41274  * Ext JS Library 1.1.1
41275  * Copyright(c) 2006-2007, Ext JS, LLC.
41276  *
41277  * Originally Released Under LGPL - original licence link has changed is not relivant.
41278  *
41279  * Fork - LGPL
41280  * <script type="text/javascript">
41281  */
41282  
41283
41284 /**
41285  * @class Roo.form.ComboBox
41286  * @extends Roo.form.TriggerField
41287  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41288  * @constructor
41289  * Create a new ComboBox.
41290  * @param {Object} config Configuration options
41291  */
41292 Roo.form.ComboBox = function(config){
41293     Roo.form.ComboBox.superclass.constructor.call(this, config);
41294     this.addEvents({
41295         /**
41296          * @event expand
41297          * Fires when the dropdown list is expanded
41298              * @param {Roo.form.ComboBox} combo This combo box
41299              */
41300         'expand' : true,
41301         /**
41302          * @event collapse
41303          * Fires when the dropdown list is collapsed
41304              * @param {Roo.form.ComboBox} combo This combo box
41305              */
41306         'collapse' : true,
41307         /**
41308          * @event beforeselect
41309          * Fires before a list item is selected. Return false to cancel the selection.
41310              * @param {Roo.form.ComboBox} combo This combo box
41311              * @param {Roo.data.Record} record The data record returned from the underlying store
41312              * @param {Number} index The index of the selected item in the dropdown list
41313              */
41314         'beforeselect' : true,
41315         /**
41316          * @event select
41317          * Fires when a list item is selected
41318              * @param {Roo.form.ComboBox} combo This combo box
41319              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41320              * @param {Number} index The index of the selected item in the dropdown list
41321              */
41322         'select' : true,
41323         /**
41324          * @event beforequery
41325          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41326          * The event object passed has these properties:
41327              * @param {Roo.form.ComboBox} combo This combo box
41328              * @param {String} query The query
41329              * @param {Boolean} forceAll true to force "all" query
41330              * @param {Boolean} cancel true to cancel the query
41331              * @param {Object} e The query event object
41332              */
41333         'beforequery': true,
41334          /**
41335          * @event add
41336          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41337              * @param {Roo.form.ComboBox} combo This combo box
41338              */
41339         'add' : true,
41340         /**
41341          * @event edit
41342          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41343              * @param {Roo.form.ComboBox} combo This combo box
41344              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41345              */
41346         'edit' : true
41347         
41348         
41349     });
41350     if(this.transform){
41351         this.allowDomMove = false;
41352         var s = Roo.getDom(this.transform);
41353         if(!this.hiddenName){
41354             this.hiddenName = s.name;
41355         }
41356         if(!this.store){
41357             this.mode = 'local';
41358             var d = [], opts = s.options;
41359             for(var i = 0, len = opts.length;i < len; i++){
41360                 var o = opts[i];
41361                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41362                 if(o.selected) {
41363                     this.value = value;
41364                 }
41365                 d.push([value, o.text]);
41366             }
41367             this.store = new Roo.data.SimpleStore({
41368                 'id': 0,
41369                 fields: ['value', 'text'],
41370                 data : d
41371             });
41372             this.valueField = 'value';
41373             this.displayField = 'text';
41374         }
41375         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41376         if(!this.lazyRender){
41377             this.target = true;
41378             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41379             s.parentNode.removeChild(s); // remove it
41380             this.render(this.el.parentNode);
41381         }else{
41382             s.parentNode.removeChild(s); // remove it
41383         }
41384
41385     }
41386     if (this.store) {
41387         this.store = Roo.factory(this.store, Roo.data);
41388     }
41389     
41390     this.selectedIndex = -1;
41391     if(this.mode == 'local'){
41392         if(config.queryDelay === undefined){
41393             this.queryDelay = 10;
41394         }
41395         if(config.minChars === undefined){
41396             this.minChars = 0;
41397         }
41398     }
41399 };
41400
41401 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41402     /**
41403      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41404      */
41405     /**
41406      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41407      * rendering into an Roo.Editor, defaults to false)
41408      */
41409     /**
41410      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41411      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41412      */
41413     /**
41414      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41415      */
41416     /**
41417      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41418      * the dropdown list (defaults to undefined, with no header element)
41419      */
41420
41421      /**
41422      * @cfg {String/Roo.Template} tpl The template to use to render the output
41423      */
41424      
41425     // private
41426     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41427     /**
41428      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41429      */
41430     listWidth: undefined,
41431     /**
41432      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41433      * mode = 'remote' or 'text' if mode = 'local')
41434      */
41435     displayField: undefined,
41436     /**
41437      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41438      * mode = 'remote' or 'value' if mode = 'local'). 
41439      * Note: use of a valueField requires the user make a selection
41440      * in order for a value to be mapped.
41441      */
41442     valueField: undefined,
41443     
41444     
41445     /**
41446      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41447      * field's data value (defaults to the underlying DOM element's name)
41448      */
41449     hiddenName: undefined,
41450     /**
41451      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41452      */
41453     listClass: '',
41454     /**
41455      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41456      */
41457     selectedClass: 'x-combo-selected',
41458     /**
41459      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41460      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41461      * which displays a downward arrow icon).
41462      */
41463     triggerClass : 'x-form-arrow-trigger',
41464     /**
41465      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41466      */
41467     shadow:'sides',
41468     /**
41469      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41470      * anchor positions (defaults to 'tl-bl')
41471      */
41472     listAlign: 'tl-bl?',
41473     /**
41474      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41475      */
41476     maxHeight: 300,
41477     /**
41478      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41479      * query specified by the allQuery config option (defaults to 'query')
41480      */
41481     triggerAction: 'query',
41482     /**
41483      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41484      * (defaults to 4, does not apply if editable = false)
41485      */
41486     minChars : 4,
41487     /**
41488      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41489      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41490      */
41491     typeAhead: false,
41492     /**
41493      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41494      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41495      */
41496     queryDelay: 500,
41497     /**
41498      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41499      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41500      */
41501     pageSize: 0,
41502     /**
41503      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41504      * when editable = true (defaults to false)
41505      */
41506     selectOnFocus:false,
41507     /**
41508      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41509      */
41510     queryParam: 'query',
41511     /**
41512      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41513      * when mode = 'remote' (defaults to 'Loading...')
41514      */
41515     loadingText: 'Loading...',
41516     /**
41517      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41518      */
41519     resizable: false,
41520     /**
41521      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41522      */
41523     handleHeight : 8,
41524     /**
41525      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41526      * traditional select (defaults to true)
41527      */
41528     editable: true,
41529     /**
41530      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41531      */
41532     allQuery: '',
41533     /**
41534      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41535      */
41536     mode: 'remote',
41537     /**
41538      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41539      * listWidth has a higher value)
41540      */
41541     minListWidth : 70,
41542     /**
41543      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41544      * allow the user to set arbitrary text into the field (defaults to false)
41545      */
41546     forceSelection:false,
41547     /**
41548      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41549      * if typeAhead = true (defaults to 250)
41550      */
41551     typeAheadDelay : 250,
41552     /**
41553      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41554      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41555      */
41556     valueNotFoundText : undefined,
41557     /**
41558      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41559      */
41560     blockFocus : false,
41561     
41562     /**
41563      * @cfg {Boolean} disableClear Disable showing of clear button.
41564      */
41565     disableClear : false,
41566     /**
41567      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41568      */
41569     alwaysQuery : false,
41570     
41571     //private
41572     addicon : false,
41573     editicon: false,
41574     
41575     // element that contains real text value.. (when hidden is used..)
41576      
41577     // private
41578     onRender : function(ct, position)
41579     {
41580         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41581         
41582         if(this.hiddenName){
41583             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41584                     'before', true);
41585             this.hiddenField.value =
41586                 this.hiddenValue !== undefined ? this.hiddenValue :
41587                 this.value !== undefined ? this.value : '';
41588
41589             // prevent input submission
41590             this.el.dom.removeAttribute('name');
41591              
41592              
41593         }
41594         
41595         if(Roo.isGecko){
41596             this.el.dom.setAttribute('autocomplete', 'off');
41597         }
41598
41599         var cls = 'x-combo-list';
41600
41601         this.list = new Roo.Layer({
41602             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41603         });
41604
41605         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41606         this.list.setWidth(lw);
41607         this.list.swallowEvent('mousewheel');
41608         this.assetHeight = 0;
41609
41610         if(this.title){
41611             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41612             this.assetHeight += this.header.getHeight();
41613         }
41614
41615         this.innerList = this.list.createChild({cls:cls+'-inner'});
41616         this.innerList.on('mouseover', this.onViewOver, this);
41617         this.innerList.on('mousemove', this.onViewMove, this);
41618         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41619         
41620         if(this.allowBlank && !this.pageSize && !this.disableClear){
41621             this.footer = this.list.createChild({cls:cls+'-ft'});
41622             this.pageTb = new Roo.Toolbar(this.footer);
41623            
41624         }
41625         if(this.pageSize){
41626             this.footer = this.list.createChild({cls:cls+'-ft'});
41627             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41628                     {pageSize: this.pageSize});
41629             
41630         }
41631         
41632         if (this.pageTb && this.allowBlank && !this.disableClear) {
41633             var _this = this;
41634             this.pageTb.add(new Roo.Toolbar.Fill(), {
41635                 cls: 'x-btn-icon x-btn-clear',
41636                 text: '&#160;',
41637                 handler: function()
41638                 {
41639                     _this.collapse();
41640                     _this.clearValue();
41641                     _this.onSelect(false, -1);
41642                 }
41643             });
41644         }
41645         if (this.footer) {
41646             this.assetHeight += this.footer.getHeight();
41647         }
41648         
41649
41650         if(!this.tpl){
41651             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41652         }
41653
41654         this.view = new Roo.View(this.innerList, this.tpl, {
41655             singleSelect:true,
41656             store: this.store,
41657             selectedClass: this.selectedClass
41658         });
41659
41660         this.view.on('click', this.onViewClick, this);
41661
41662         this.store.on('beforeload', this.onBeforeLoad, this);
41663         this.store.on('load', this.onLoad, this);
41664         this.store.on('loadexception', this.onLoadException, this);
41665
41666         if(this.resizable){
41667             this.resizer = new Roo.Resizable(this.list,  {
41668                pinned:true, handles:'se'
41669             });
41670             this.resizer.on('resize', function(r, w, h){
41671                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41672                 this.listWidth = w;
41673                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41674                 this.restrictHeight();
41675             }, this);
41676             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41677         }
41678         if(!this.editable){
41679             this.editable = true;
41680             this.setEditable(false);
41681         }  
41682         
41683         
41684         if (typeof(this.events.add.listeners) != 'undefined') {
41685             
41686             this.addicon = this.wrap.createChild(
41687                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41688        
41689             this.addicon.on('click', function(e) {
41690                 this.fireEvent('add', this);
41691             }, this);
41692         }
41693         if (typeof(this.events.edit.listeners) != 'undefined') {
41694             
41695             this.editicon = this.wrap.createChild(
41696                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41697             if (this.addicon) {
41698                 this.editicon.setStyle('margin-left', '40px');
41699             }
41700             this.editicon.on('click', function(e) {
41701                 
41702                 // we fire even  if inothing is selected..
41703                 this.fireEvent('edit', this, this.lastData );
41704                 
41705             }, this);
41706         }
41707         
41708         
41709         
41710     },
41711
41712     // private
41713     initEvents : function(){
41714         Roo.form.ComboBox.superclass.initEvents.call(this);
41715
41716         this.keyNav = new Roo.KeyNav(this.el, {
41717             "up" : function(e){
41718                 this.inKeyMode = true;
41719                 this.selectPrev();
41720             },
41721
41722             "down" : function(e){
41723                 if(!this.isExpanded()){
41724                     this.onTriggerClick();
41725                 }else{
41726                     this.inKeyMode = true;
41727                     this.selectNext();
41728                 }
41729             },
41730
41731             "enter" : function(e){
41732                 this.onViewClick();
41733                 //return true;
41734             },
41735
41736             "esc" : function(e){
41737                 this.collapse();
41738             },
41739
41740             "tab" : function(e){
41741                 this.onViewClick(false);
41742                 this.fireEvent("specialkey", this, e);
41743                 return true;
41744             },
41745
41746             scope : this,
41747
41748             doRelay : function(foo, bar, hname){
41749                 if(hname == 'down' || this.scope.isExpanded()){
41750                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41751                 }
41752                 return true;
41753             },
41754
41755             forceKeyDown: true
41756         });
41757         this.queryDelay = Math.max(this.queryDelay || 10,
41758                 this.mode == 'local' ? 10 : 250);
41759         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41760         if(this.typeAhead){
41761             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41762         }
41763         if(this.editable !== false){
41764             this.el.on("keyup", this.onKeyUp, this);
41765         }
41766         if(this.forceSelection){
41767             this.on('blur', this.doForce, this);
41768         }
41769     },
41770
41771     onDestroy : function(){
41772         if(this.view){
41773             this.view.setStore(null);
41774             this.view.el.removeAllListeners();
41775             this.view.el.remove();
41776             this.view.purgeListeners();
41777         }
41778         if(this.list){
41779             this.list.destroy();
41780         }
41781         if(this.store){
41782             this.store.un('beforeload', this.onBeforeLoad, this);
41783             this.store.un('load', this.onLoad, this);
41784             this.store.un('loadexception', this.onLoadException, this);
41785         }
41786         Roo.form.ComboBox.superclass.onDestroy.call(this);
41787     },
41788
41789     // private
41790     fireKey : function(e){
41791         if(e.isNavKeyPress() && !this.list.isVisible()){
41792             this.fireEvent("specialkey", this, e);
41793         }
41794     },
41795
41796     // private
41797     onResize: function(w, h){
41798         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41799         
41800         if(typeof w != 'number'){
41801             // we do not handle it!?!?
41802             return;
41803         }
41804         var tw = this.trigger.getWidth();
41805         tw += this.addicon ? this.addicon.getWidth() : 0;
41806         tw += this.editicon ? this.editicon.getWidth() : 0;
41807         var x = w - tw;
41808         this.el.setWidth( this.adjustWidth('input', x));
41809             
41810         this.trigger.setStyle('left', x+'px');
41811         
41812         if(this.list && this.listWidth === undefined){
41813             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41814             this.list.setWidth(lw);
41815             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41816         }
41817         
41818     
41819         
41820     },
41821
41822     /**
41823      * Allow or prevent the user from directly editing the field text.  If false is passed,
41824      * the user will only be able to select from the items defined in the dropdown list.  This method
41825      * is the runtime equivalent of setting the 'editable' config option at config time.
41826      * @param {Boolean} value True to allow the user to directly edit the field text
41827      */
41828     setEditable : function(value){
41829         if(value == this.editable){
41830             return;
41831         }
41832         this.editable = value;
41833         if(!value){
41834             this.el.dom.setAttribute('readOnly', true);
41835             this.el.on('mousedown', this.onTriggerClick,  this);
41836             this.el.addClass('x-combo-noedit');
41837         }else{
41838             this.el.dom.setAttribute('readOnly', false);
41839             this.el.un('mousedown', this.onTriggerClick,  this);
41840             this.el.removeClass('x-combo-noedit');
41841         }
41842     },
41843
41844     // private
41845     onBeforeLoad : function(){
41846         if(!this.hasFocus){
41847             return;
41848         }
41849         this.innerList.update(this.loadingText ?
41850                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41851         this.restrictHeight();
41852         this.selectedIndex = -1;
41853     },
41854
41855     // private
41856     onLoad : function(){
41857         if(!this.hasFocus){
41858             return;
41859         }
41860         if(this.store.getCount() > 0){
41861             this.expand();
41862             this.restrictHeight();
41863             if(this.lastQuery == this.allQuery){
41864                 if(this.editable){
41865                     this.el.dom.select();
41866                 }
41867                 if(!this.selectByValue(this.value, true)){
41868                     this.select(0, true);
41869                 }
41870             }else{
41871                 this.selectNext();
41872                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41873                     this.taTask.delay(this.typeAheadDelay);
41874                 }
41875             }
41876         }else{
41877             this.onEmptyResults();
41878         }
41879         //this.el.focus();
41880     },
41881     // private
41882     onLoadException : function()
41883     {
41884         this.collapse();
41885         Roo.log(this.store.reader.jsonData);
41886         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41887             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41888         }
41889         
41890         
41891     },
41892     // private
41893     onTypeAhead : function(){
41894         if(this.store.getCount() > 0){
41895             var r = this.store.getAt(0);
41896             var newValue = r.data[this.displayField];
41897             var len = newValue.length;
41898             var selStart = this.getRawValue().length;
41899             if(selStart != len){
41900                 this.setRawValue(newValue);
41901                 this.selectText(selStart, newValue.length);
41902             }
41903         }
41904     },
41905
41906     // private
41907     onSelect : function(record, index){
41908         if(this.fireEvent('beforeselect', this, record, index) !== false){
41909             this.setFromData(index > -1 ? record.data : false);
41910             this.collapse();
41911             this.fireEvent('select', this, record, index);
41912         }
41913     },
41914
41915     /**
41916      * Returns the currently selected field value or empty string if no value is set.
41917      * @return {String} value The selected value
41918      */
41919     getValue : function(){
41920         if(this.valueField){
41921             return typeof this.value != 'undefined' ? this.value : '';
41922         }
41923         return Roo.form.ComboBox.superclass.getValue.call(this);
41924     },
41925
41926     /**
41927      * Clears any text/value currently set in the field
41928      */
41929     clearValue : function(){
41930         if(this.hiddenField){
41931             this.hiddenField.value = '';
41932         }
41933         this.value = '';
41934         this.setRawValue('');
41935         this.lastSelectionText = '';
41936         
41937     },
41938
41939     /**
41940      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41941      * will be displayed in the field.  If the value does not match the data value of an existing item,
41942      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41943      * Otherwise the field will be blank (although the value will still be set).
41944      * @param {String} value The value to match
41945      */
41946     setValue : function(v){
41947         var text = v;
41948         if(this.valueField){
41949             var r = this.findRecord(this.valueField, v);
41950             if(r){
41951                 text = r.data[this.displayField];
41952             }else if(this.valueNotFoundText !== undefined){
41953                 text = this.valueNotFoundText;
41954             }
41955         }
41956         this.lastSelectionText = text;
41957         if(this.hiddenField){
41958             this.hiddenField.value = v;
41959         }
41960         Roo.form.ComboBox.superclass.setValue.call(this, text);
41961         this.value = v;
41962     },
41963     /**
41964      * @property {Object} the last set data for the element
41965      */
41966     
41967     lastData : false,
41968     /**
41969      * Sets the value of the field based on a object which is related to the record format for the store.
41970      * @param {Object} value the value to set as. or false on reset?
41971      */
41972     setFromData : function(o){
41973         var dv = ''; // display value
41974         var vv = ''; // value value..
41975         this.lastData = o;
41976         if (this.displayField) {
41977             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41978         } else {
41979             // this is an error condition!!!
41980             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41981         }
41982         
41983         if(this.valueField){
41984             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41985         }
41986         if(this.hiddenField){
41987             this.hiddenField.value = vv;
41988             
41989             this.lastSelectionText = dv;
41990             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41991             this.value = vv;
41992             return;
41993         }
41994         // no hidden field.. - we store the value in 'value', but still display
41995         // display field!!!!
41996         this.lastSelectionText = dv;
41997         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41998         this.value = vv;
41999         
42000         
42001     },
42002     // private
42003     reset : function(){
42004         // overridden so that last data is reset..
42005         this.setValue(this.resetValue);
42006         this.originalValue = this.getValue();
42007         this.clearInvalid();
42008         this.lastData = false;
42009         if (this.view) {
42010             this.view.clearSelections();
42011         }
42012     },
42013     // private
42014     findRecord : function(prop, value){
42015         var record;
42016         if(this.store.getCount() > 0){
42017             this.store.each(function(r){
42018                 if(r.data[prop] == value){
42019                     record = r;
42020                     return false;
42021                 }
42022                 return true;
42023             });
42024         }
42025         return record;
42026     },
42027     
42028     getName: function()
42029     {
42030         // returns hidden if it's set..
42031         if (!this.rendered) {return ''};
42032         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42033         
42034     },
42035     // private
42036     onViewMove : function(e, t){
42037         this.inKeyMode = false;
42038     },
42039
42040     // private
42041     onViewOver : function(e, t){
42042         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
42043             return;
42044         }
42045         var item = this.view.findItemFromChild(t);
42046         if(item){
42047             var index = this.view.indexOf(item);
42048             this.select(index, false);
42049         }
42050     },
42051
42052     // private
42053     onViewClick : function(doFocus)
42054     {
42055         var index = this.view.getSelectedIndexes()[0];
42056         var r = this.store.getAt(index);
42057         if(r){
42058             this.onSelect(r, index);
42059         }
42060         if(doFocus !== false && !this.blockFocus){
42061             this.el.focus();
42062         }
42063     },
42064
42065     // private
42066     restrictHeight : function(){
42067         this.innerList.dom.style.height = '';
42068         var inner = this.innerList.dom;
42069         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42070         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42071         this.list.beginUpdate();
42072         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42073         this.list.alignTo(this.el, this.listAlign);
42074         this.list.endUpdate();
42075     },
42076
42077     // private
42078     onEmptyResults : function(){
42079         this.collapse();
42080     },
42081
42082     /**
42083      * Returns true if the dropdown list is expanded, else false.
42084      */
42085     isExpanded : function(){
42086         return this.list.isVisible();
42087     },
42088
42089     /**
42090      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42091      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42092      * @param {String} value The data value of the item to select
42093      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42094      * selected item if it is not currently in view (defaults to true)
42095      * @return {Boolean} True if the value matched an item in the list, else false
42096      */
42097     selectByValue : function(v, scrollIntoView){
42098         if(v !== undefined && v !== null){
42099             var r = this.findRecord(this.valueField || this.displayField, v);
42100             if(r){
42101                 this.select(this.store.indexOf(r), scrollIntoView);
42102                 return true;
42103             }
42104         }
42105         return false;
42106     },
42107
42108     /**
42109      * Select an item in the dropdown list by its numeric index in the list. 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 {Number} index The zero-based index of the list 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      */
42115     select : function(index, scrollIntoView){
42116         this.selectedIndex = index;
42117         this.view.select(index);
42118         if(scrollIntoView !== false){
42119             var el = this.view.getNode(index);
42120             if(el){
42121                 this.innerList.scrollChildIntoView(el, false);
42122             }
42123         }
42124     },
42125
42126     // private
42127     selectNext : function(){
42128         var ct = this.store.getCount();
42129         if(ct > 0){
42130             if(this.selectedIndex == -1){
42131                 this.select(0);
42132             }else if(this.selectedIndex < ct-1){
42133                 this.select(this.selectedIndex+1);
42134             }
42135         }
42136     },
42137
42138     // private
42139     selectPrev : function(){
42140         var ct = this.store.getCount();
42141         if(ct > 0){
42142             if(this.selectedIndex == -1){
42143                 this.select(0);
42144             }else if(this.selectedIndex != 0){
42145                 this.select(this.selectedIndex-1);
42146             }
42147         }
42148     },
42149
42150     // private
42151     onKeyUp : function(e){
42152         if(this.editable !== false && !e.isSpecialKey()){
42153             this.lastKey = e.getKey();
42154             this.dqTask.delay(this.queryDelay);
42155         }
42156     },
42157
42158     // private
42159     validateBlur : function(){
42160         return !this.list || !this.list.isVisible();   
42161     },
42162
42163     // private
42164     initQuery : function(){
42165         this.doQuery(this.getRawValue());
42166     },
42167
42168     // private
42169     doForce : function(){
42170         if(this.el.dom.value.length > 0){
42171             this.el.dom.value =
42172                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42173              
42174         }
42175     },
42176
42177     /**
42178      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42179      * query allowing the query action to be canceled if needed.
42180      * @param {String} query The SQL query to execute
42181      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42182      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42183      * saved in the current store (defaults to false)
42184      */
42185     doQuery : function(q, forceAll){
42186         if(q === undefined || q === null){
42187             q = '';
42188         }
42189         var qe = {
42190             query: q,
42191             forceAll: forceAll,
42192             combo: this,
42193             cancel:false
42194         };
42195         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42196             return false;
42197         }
42198         q = qe.query;
42199         forceAll = qe.forceAll;
42200         if(forceAll === true || (q.length >= this.minChars)){
42201             if(this.lastQuery != q || this.alwaysQuery){
42202                 this.lastQuery = q;
42203                 if(this.mode == 'local'){
42204                     this.selectedIndex = -1;
42205                     if(forceAll){
42206                         this.store.clearFilter();
42207                     }else{
42208                         this.store.filter(this.displayField, q);
42209                     }
42210                     this.onLoad();
42211                 }else{
42212                     this.store.baseParams[this.queryParam] = q;
42213                     this.store.load({
42214                         params: this.getParams(q)
42215                     });
42216                     this.expand();
42217                 }
42218             }else{
42219                 this.selectedIndex = -1;
42220                 this.onLoad();   
42221             }
42222         }
42223     },
42224
42225     // private
42226     getParams : function(q){
42227         var p = {};
42228         //p[this.queryParam] = q;
42229         if(this.pageSize){
42230             p.start = 0;
42231             p.limit = this.pageSize;
42232         }
42233         return p;
42234     },
42235
42236     /**
42237      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42238      */
42239     collapse : function(){
42240         if(!this.isExpanded()){
42241             return;
42242         }
42243         this.list.hide();
42244         Roo.get(document).un('mousedown', this.collapseIf, this);
42245         Roo.get(document).un('mousewheel', this.collapseIf, this);
42246         if (!this.editable) {
42247             Roo.get(document).un('keydown', this.listKeyPress, this);
42248         }
42249         this.fireEvent('collapse', this);
42250     },
42251
42252     // private
42253     collapseIf : function(e){
42254         if(!e.within(this.wrap) && !e.within(this.list)){
42255             this.collapse();
42256         }
42257     },
42258
42259     /**
42260      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42261      */
42262     expand : function(){
42263         if(this.isExpanded() || !this.hasFocus){
42264             return;
42265         }
42266         this.list.alignTo(this.el, this.listAlign);
42267         this.list.show();
42268         Roo.get(document).on('mousedown', this.collapseIf, this);
42269         Roo.get(document).on('mousewheel', this.collapseIf, this);
42270         if (!this.editable) {
42271             Roo.get(document).on('keydown', this.listKeyPress, this);
42272         }
42273         
42274         this.fireEvent('expand', this);
42275     },
42276
42277     // private
42278     // Implements the default empty TriggerField.onTriggerClick function
42279     onTriggerClick : function(){
42280         if(this.disabled){
42281             return;
42282         }
42283         if(this.isExpanded()){
42284             this.collapse();
42285             if (!this.blockFocus) {
42286                 this.el.focus();
42287             }
42288             
42289         }else {
42290             this.hasFocus = true;
42291             if(this.triggerAction == 'all') {
42292                 this.doQuery(this.allQuery, true);
42293             } else {
42294                 this.doQuery(this.getRawValue());
42295             }
42296             if (!this.blockFocus) {
42297                 this.el.focus();
42298             }
42299         }
42300     },
42301     listKeyPress : function(e)
42302     {
42303         //Roo.log('listkeypress');
42304         // scroll to first matching element based on key pres..
42305         if (e.isSpecialKey()) {
42306             return false;
42307         }
42308         var k = String.fromCharCode(e.getKey()).toUpperCase();
42309         //Roo.log(k);
42310         var match  = false;
42311         var csel = this.view.getSelectedNodes();
42312         var cselitem = false;
42313         if (csel.length) {
42314             var ix = this.view.indexOf(csel[0]);
42315             cselitem  = this.store.getAt(ix);
42316             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42317                 cselitem = false;
42318             }
42319             
42320         }
42321         
42322         this.store.each(function(v) { 
42323             if (cselitem) {
42324                 // start at existing selection.
42325                 if (cselitem.id == v.id) {
42326                     cselitem = false;
42327                 }
42328                 return;
42329             }
42330                 
42331             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42332                 match = this.store.indexOf(v);
42333                 return false;
42334             }
42335         }, this);
42336         
42337         if (match === false) {
42338             return true; // no more action?
42339         }
42340         // scroll to?
42341         this.view.select(match);
42342         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42343         sn.scrollIntoView(sn.dom.parentNode, false);
42344     } 
42345
42346     /** 
42347     * @cfg {Boolean} grow 
42348     * @hide 
42349     */
42350     /** 
42351     * @cfg {Number} growMin 
42352     * @hide 
42353     */
42354     /** 
42355     * @cfg {Number} growMax 
42356     * @hide 
42357     */
42358     /**
42359      * @hide
42360      * @method autoSize
42361      */
42362 });/*
42363  * Copyright(c) 2010-2012, Roo J Solutions Limited
42364  *
42365  * Licence LGPL
42366  *
42367  */
42368
42369 /**
42370  * @class Roo.form.ComboBoxArray
42371  * @extends Roo.form.TextField
42372  * A facebook style adder... for lists of email / people / countries  etc...
42373  * pick multiple items from a combo box, and shows each one.
42374  *
42375  *  Fred [x]  Brian [x]  [Pick another |v]
42376  *
42377  *
42378  *  For this to work: it needs various extra information
42379  *    - normal combo problay has
42380  *      name, hiddenName
42381  *    + displayField, valueField
42382  *
42383  *    For our purpose...
42384  *
42385  *
42386  *   If we change from 'extends' to wrapping...
42387  *   
42388  *  
42389  *
42390  
42391  
42392  * @constructor
42393  * Create a new ComboBoxArray.
42394  * @param {Object} config Configuration options
42395  */
42396  
42397
42398 Roo.form.ComboBoxArray = function(config)
42399 {
42400     this.addEvents({
42401         /**
42402          * @event beforeremove
42403          * Fires before remove the value from the list
42404              * @param {Roo.form.ComboBoxArray} _self This combo box array
42405              * @param {Roo.form.ComboBoxArray.Item} item removed item
42406              */
42407         'beforeremove' : true,
42408         /**
42409          * @event remove
42410          * Fires when remove the value from the list
42411              * @param {Roo.form.ComboBoxArray} _self This combo box array
42412              * @param {Roo.form.ComboBoxArray.Item} item removed item
42413              */
42414         'remove' : true
42415         
42416         
42417     });
42418     
42419     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42420     
42421     this.items = new Roo.util.MixedCollection(false);
42422     
42423     // construct the child combo...
42424     
42425     
42426     
42427     
42428    
42429     
42430 }
42431
42432  
42433 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42434
42435     /**
42436      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42437      */
42438     
42439     lastData : false,
42440     
42441     // behavies liek a hiddne field
42442     inputType:      'hidden',
42443     /**
42444      * @cfg {Number} width The width of the box that displays the selected element
42445      */ 
42446     width:          300,
42447
42448     
42449     
42450     /**
42451      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42452      */
42453     name : false,
42454     /**
42455      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42456      */
42457     hiddenName : false,
42458       /**
42459      * @cfg {String} seperator    The value seperator normally ',' 
42460      */
42461     seperator : ',',
42462     
42463     // private the array of items that are displayed..
42464     items  : false,
42465     // private - the hidden field el.
42466     hiddenEl : false,
42467     // private - the filed el..
42468     el : false,
42469     
42470     //validateValue : function() { return true; }, // all values are ok!
42471     //onAddClick: function() { },
42472     
42473     onRender : function(ct, position) 
42474     {
42475         
42476         // create the standard hidden element
42477         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42478         
42479         
42480         // give fake names to child combo;
42481         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42482         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42483         
42484         this.combo = Roo.factory(this.combo, Roo.form);
42485         this.combo.onRender(ct, position);
42486         if (typeof(this.combo.width) != 'undefined') {
42487             this.combo.onResize(this.combo.width,0);
42488         }
42489         
42490         this.combo.initEvents();
42491         
42492         // assigned so form know we need to do this..
42493         this.store          = this.combo.store;
42494         this.valueField     = this.combo.valueField;
42495         this.displayField   = this.combo.displayField ;
42496         
42497         
42498         this.combo.wrap.addClass('x-cbarray-grp');
42499         
42500         var cbwrap = this.combo.wrap.createChild(
42501             {tag: 'div', cls: 'x-cbarray-cb'},
42502             this.combo.el.dom
42503         );
42504         
42505              
42506         this.hiddenEl = this.combo.wrap.createChild({
42507             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42508         });
42509         this.el = this.combo.wrap.createChild({
42510             tag: 'input',  type:'hidden' , name: this.name, value : ''
42511         });
42512          //   this.el.dom.removeAttribute("name");
42513         
42514         
42515         this.outerWrap = this.combo.wrap;
42516         this.wrap = cbwrap;
42517         
42518         this.outerWrap.setWidth(this.width);
42519         this.outerWrap.dom.removeChild(this.el.dom);
42520         
42521         this.wrap.dom.appendChild(this.el.dom);
42522         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42523         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42524         
42525         this.combo.trigger.setStyle('position','relative');
42526         this.combo.trigger.setStyle('left', '0px');
42527         this.combo.trigger.setStyle('top', '2px');
42528         
42529         this.combo.el.setStyle('vertical-align', 'text-bottom');
42530         
42531         //this.trigger.setStyle('vertical-align', 'top');
42532         
42533         // this should use the code from combo really... on('add' ....)
42534         if (this.adder) {
42535             
42536         
42537             this.adder = this.outerWrap.createChild(
42538                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42539             var _t = this;
42540             this.adder.on('click', function(e) {
42541                 _t.fireEvent('adderclick', this, e);
42542             }, _t);
42543         }
42544         //var _t = this;
42545         //this.adder.on('click', this.onAddClick, _t);
42546         
42547         
42548         this.combo.on('select', function(cb, rec, ix) {
42549             this.addItem(rec.data);
42550             
42551             cb.setValue('');
42552             cb.el.dom.value = '';
42553             //cb.lastData = rec.data;
42554             // add to list
42555             
42556         }, this);
42557         
42558         
42559     },
42560     
42561     
42562     getName: function()
42563     {
42564         // returns hidden if it's set..
42565         if (!this.rendered) {return ''};
42566         return  this.hiddenName ? this.hiddenName : this.name;
42567         
42568     },
42569     
42570     
42571     onResize: function(w, h){
42572         
42573         return;
42574         // not sure if this is needed..
42575         //this.combo.onResize(w,h);
42576         
42577         if(typeof w != 'number'){
42578             // we do not handle it!?!?
42579             return;
42580         }
42581         var tw = this.combo.trigger.getWidth();
42582         tw += this.addicon ? this.addicon.getWidth() : 0;
42583         tw += this.editicon ? this.editicon.getWidth() : 0;
42584         var x = w - tw;
42585         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42586             
42587         this.combo.trigger.setStyle('left', '0px');
42588         
42589         if(this.list && this.listWidth === undefined){
42590             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42591             this.list.setWidth(lw);
42592             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42593         }
42594         
42595     
42596         
42597     },
42598     
42599     addItem: function(rec)
42600     {
42601         var valueField = this.combo.valueField;
42602         var displayField = this.combo.displayField;
42603         
42604         if (this.items.indexOfKey(rec[valueField]) > -1) {
42605             //console.log("GOT " + rec.data.id);
42606             return;
42607         }
42608         
42609         var x = new Roo.form.ComboBoxArray.Item({
42610             //id : rec[this.idField],
42611             data : rec,
42612             displayField : displayField ,
42613             tipField : displayField ,
42614             cb : this
42615         });
42616         // use the 
42617         this.items.add(rec[valueField],x);
42618         // add it before the element..
42619         this.updateHiddenEl();
42620         x.render(this.outerWrap, this.wrap.dom);
42621         // add the image handler..
42622     },
42623     
42624     updateHiddenEl : function()
42625     {
42626         this.validate();
42627         if (!this.hiddenEl) {
42628             return;
42629         }
42630         var ar = [];
42631         var idField = this.combo.valueField;
42632         
42633         this.items.each(function(f) {
42634             ar.push(f.data[idField]);
42635         });
42636         this.hiddenEl.dom.value = ar.join(this.seperator);
42637         this.validate();
42638     },
42639     
42640     reset : function()
42641     {
42642         this.items.clear();
42643         
42644         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42645            el.remove();
42646         });
42647         
42648         this.el.dom.value = '';
42649         if (this.hiddenEl) {
42650             this.hiddenEl.dom.value = '';
42651         }
42652         
42653     },
42654     getValue: function()
42655     {
42656         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42657     },
42658     setValue: function(v) // not a valid action - must use addItems..
42659     {
42660         
42661         this.reset();
42662          
42663         if (this.store.isLocal && (typeof(v) == 'string')) {
42664             // then we can use the store to find the values..
42665             // comma seperated at present.. this needs to allow JSON based encoding..
42666             this.hiddenEl.value  = v;
42667             var v_ar = [];
42668             Roo.each(v.split(this.seperator), function(k) {
42669                 Roo.log("CHECK " + this.valueField + ',' + k);
42670                 var li = this.store.query(this.valueField, k);
42671                 if (!li.length) {
42672                     return;
42673                 }
42674                 var add = {};
42675                 add[this.valueField] = k;
42676                 add[this.displayField] = li.item(0).data[this.displayField];
42677                 
42678                 this.addItem(add);
42679             }, this) 
42680              
42681         }
42682         if (typeof(v) == 'object' ) {
42683             // then let's assume it's an array of objects..
42684             Roo.each(v, function(l) {
42685                 var add = l;
42686                 if (typeof(l) == 'string') {
42687                     add = {};
42688                     add[this.valueField] = l;
42689                     add[this.displayField] = l
42690                 }
42691                 this.addItem(add);
42692             }, this);
42693              
42694         }
42695         
42696         
42697     },
42698     setFromData: function(v)
42699     {
42700         // this recieves an object, if setValues is called.
42701         this.reset();
42702         this.el.dom.value = v[this.displayField];
42703         this.hiddenEl.dom.value = v[this.valueField];
42704         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42705             return;
42706         }
42707         var kv = v[this.valueField];
42708         var dv = v[this.displayField];
42709         kv = typeof(kv) != 'string' ? '' : kv;
42710         dv = typeof(dv) != 'string' ? '' : dv;
42711         
42712         
42713         var keys = kv.split(this.seperator);
42714         var display = dv.split(this.seperator);
42715         for (var i = 0 ; i < keys.length; i++) {
42716             add = {};
42717             add[this.valueField] = keys[i];
42718             add[this.displayField] = display[i];
42719             this.addItem(add);
42720         }
42721       
42722         
42723     },
42724     
42725     /**
42726      * Validates the combox array value
42727      * @return {Boolean} True if the value is valid, else false
42728      */
42729     validate : function(){
42730         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42731             this.clearInvalid();
42732             return true;
42733         }
42734         return false;
42735     },
42736     
42737     validateValue : function(value){
42738         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42739         
42740     },
42741     
42742     /*@
42743      * overide
42744      * 
42745      */
42746     isDirty : function() {
42747         if(this.disabled) {
42748             return false;
42749         }
42750         
42751         try {
42752             var d = Roo.decode(String(this.originalValue));
42753         } catch (e) {
42754             return String(this.getValue()) !== String(this.originalValue);
42755         }
42756         
42757         var originalValue = [];
42758         
42759         for (var i = 0; i < d.length; i++){
42760             originalValue.push(d[i][this.valueField]);
42761         }
42762         
42763         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42764         
42765     }
42766     
42767 });
42768
42769
42770
42771 /**
42772  * @class Roo.form.ComboBoxArray.Item
42773  * @extends Roo.BoxComponent
42774  * A selected item in the list
42775  *  Fred [x]  Brian [x]  [Pick another |v]
42776  * 
42777  * @constructor
42778  * Create a new item.
42779  * @param {Object} config Configuration options
42780  */
42781  
42782 Roo.form.ComboBoxArray.Item = function(config) {
42783     config.id = Roo.id();
42784     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42785 }
42786
42787 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42788     data : {},
42789     cb: false,
42790     displayField : false,
42791     tipField : false,
42792     
42793     
42794     defaultAutoCreate : {
42795         tag: 'div',
42796         cls: 'x-cbarray-item',
42797         cn : [ 
42798             { tag: 'div' },
42799             {
42800                 tag: 'img',
42801                 width:16,
42802                 height : 16,
42803                 src : Roo.BLANK_IMAGE_URL ,
42804                 align: 'center'
42805             }
42806         ]
42807         
42808     },
42809     
42810  
42811     onRender : function(ct, position)
42812     {
42813         Roo.form.Field.superclass.onRender.call(this, ct, position);
42814         
42815         if(!this.el){
42816             var cfg = this.getAutoCreate();
42817             this.el = ct.createChild(cfg, position);
42818         }
42819         
42820         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42821         
42822         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42823             this.cb.renderer(this.data) :
42824             String.format('{0}',this.data[this.displayField]);
42825         
42826             
42827         this.el.child('div').dom.setAttribute('qtip',
42828                         String.format('{0}',this.data[this.tipField])
42829         );
42830         
42831         this.el.child('img').on('click', this.remove, this);
42832         
42833     },
42834    
42835     remove : function()
42836     {
42837         if(this.cb.disabled){
42838             return;
42839         }
42840         
42841         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42842             this.cb.items.remove(this);
42843             this.el.child('img').un('click', this.remove, this);
42844             this.el.remove();
42845             this.cb.updateHiddenEl();
42846
42847             this.cb.fireEvent('remove', this.cb, this);
42848         }
42849         
42850     }
42851 });/*
42852  * RooJS Library 1.1.1
42853  * Copyright(c) 2008-2011  Alan Knowles
42854  *
42855  * License - LGPL
42856  */
42857  
42858
42859 /**
42860  * @class Roo.form.ComboNested
42861  * @extends Roo.form.ComboBox
42862  * A combobox for that allows selection of nested items in a list,
42863  * eg.
42864  *
42865  *  Book
42866  *    -> red
42867  *    -> green
42868  *  Table
42869  *    -> square
42870  *      ->red
42871  *      ->green
42872  *    -> rectangle
42873  *      ->green
42874  *      
42875  * 
42876  * @constructor
42877  * Create a new ComboNested
42878  * @param {Object} config Configuration options
42879  */
42880 Roo.form.ComboNested = function(config){
42881     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42882     // should verify some data...
42883     // like
42884     // hiddenName = required..
42885     // displayField = required
42886     // valudField == required
42887     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42888     var _t = this;
42889     Roo.each(req, function(e) {
42890         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42891             throw "Roo.form.ComboNested : missing value for: " + e;
42892         }
42893     });
42894      
42895     
42896 };
42897
42898 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42899    
42900     /*
42901      * @config {Number} max Number of columns to show
42902      */
42903     
42904     maxColumns : 3,
42905    
42906     list : null, // the outermost div..
42907     innerLists : null, // the
42908     views : null,
42909     stores : null,
42910     // private
42911     loadingChildren : false,
42912     
42913     onRender : function(ct, position)
42914     {
42915         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42916         
42917         if(this.hiddenName){
42918             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42919                     'before', true);
42920             this.hiddenField.value =
42921                 this.hiddenValue !== undefined ? this.hiddenValue :
42922                 this.value !== undefined ? this.value : '';
42923
42924             // prevent input submission
42925             this.el.dom.removeAttribute('name');
42926              
42927              
42928         }
42929         
42930         if(Roo.isGecko){
42931             this.el.dom.setAttribute('autocomplete', 'off');
42932         }
42933
42934         var cls = 'x-combo-list';
42935
42936         this.list = new Roo.Layer({
42937             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42938         });
42939
42940         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42941         this.list.setWidth(lw);
42942         this.list.swallowEvent('mousewheel');
42943         this.assetHeight = 0;
42944
42945         if(this.title){
42946             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42947             this.assetHeight += this.header.getHeight();
42948         }
42949         this.innerLists = [];
42950         this.views = [];
42951         this.stores = [];
42952         for (var i =0 ; i < this.maxColumns; i++) {
42953             this.onRenderList( cls, i);
42954         }
42955         
42956         // always needs footer, as we are going to have an 'OK' button.
42957         this.footer = this.list.createChild({cls:cls+'-ft'});
42958         this.pageTb = new Roo.Toolbar(this.footer);  
42959         var _this = this;
42960         this.pageTb.add(  {
42961             
42962             text: 'Done',
42963             handler: function()
42964             {
42965                 _this.collapse();
42966             }
42967         });
42968         
42969         if ( this.allowBlank && !this.disableClear) {
42970             
42971             this.pageTb.add(new Roo.Toolbar.Fill(), {
42972                 cls: 'x-btn-icon x-btn-clear',
42973                 text: '&#160;',
42974                 handler: function()
42975                 {
42976                     _this.collapse();
42977                     _this.clearValue();
42978                     _this.onSelect(false, -1);
42979                 }
42980             });
42981         }
42982         if (this.footer) {
42983             this.assetHeight += this.footer.getHeight();
42984         }
42985         
42986     },
42987     onRenderList : function (  cls, i)
42988     {
42989         
42990         var lw = Math.floor(
42991                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
42992         );
42993         
42994         this.list.setWidth(lw); // default to '1'
42995
42996         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
42997         //il.on('mouseover', this.onViewOver, this, { list:  i });
42998         //il.on('mousemove', this.onViewMove, this, { list:  i });
42999         il.setWidth(lw);
43000         il.setStyle({ 'overflow-x' : 'hidden'});
43001
43002         if(!this.tpl){
43003             this.tpl = new Roo.Template({
43004                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
43005                 isEmpty: function (value, allValues) {
43006                     //Roo.log(value);
43007                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
43008                     return dl ? 'has-children' : 'no-children'
43009                 }
43010             });
43011         }
43012         
43013         var store  = this.store;
43014         if (i > 0) {
43015             store  = new Roo.data.SimpleStore({
43016                 //fields : this.store.reader.meta.fields,
43017                 reader : this.store.reader,
43018                 data : [ ]
43019             });
43020         }
43021         this.stores[i]  = store;
43022                   
43023         var view = this.views[i] = new Roo.View(
43024             il,
43025             this.tpl,
43026             {
43027                 singleSelect:true,
43028                 store: store,
43029                 selectedClass: this.selectedClass
43030             }
43031         );
43032         view.getEl().setWidth(lw);
43033         view.getEl().setStyle({
43034             position: i < 1 ? 'relative' : 'absolute',
43035             top: 0,
43036             left: (i * lw ) + 'px',
43037             display : i > 0 ? 'none' : 'block'
43038         });
43039         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
43040         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
43041         //view.on('click', this.onViewClick, this, { list : i });
43042
43043         store.on('beforeload', this.onBeforeLoad, this);
43044         store.on('load',  this.onLoad, this, { list  : i});
43045         store.on('loadexception', this.onLoadException, this);
43046
43047         // hide the other vies..
43048         
43049         
43050         
43051     },
43052       
43053     restrictHeight : function()
43054     {
43055         var mh = 0;
43056         Roo.each(this.innerLists, function(il,i) {
43057             var el = this.views[i].getEl();
43058             el.dom.style.height = '';
43059             var inner = el.dom;
43060             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
43061             // only adjust heights on other ones..
43062             mh = Math.max(h, mh);
43063             if (i < 1) {
43064                 
43065                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43066                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43067                
43068             }
43069             
43070             
43071         }, this);
43072         
43073         this.list.beginUpdate();
43074         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43075         this.list.alignTo(this.el, this.listAlign);
43076         this.list.endUpdate();
43077         
43078     },
43079      
43080     
43081     // -- store handlers..
43082     // private
43083     onBeforeLoad : function()
43084     {
43085         if(!this.hasFocus){
43086             return;
43087         }
43088         this.innerLists[0].update(this.loadingText ?
43089                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43090         this.restrictHeight();
43091         this.selectedIndex = -1;
43092     },
43093     // private
43094     onLoad : function(a,b,c,d)
43095     {
43096         if (!this.loadingChildren) {
43097             // then we are loading the top level. - hide the children
43098             for (var i = 1;i < this.views.length; i++) {
43099                 this.views[i].getEl().setStyle({ display : 'none' });
43100             }
43101             var lw = Math.floor(
43102                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43103             );
43104         
43105              this.list.setWidth(lw); // default to '1'
43106
43107             
43108         }
43109         if(!this.hasFocus){
43110             return;
43111         }
43112         
43113         if(this.store.getCount() > 0) {
43114             this.expand();
43115             this.restrictHeight();   
43116         } else {
43117             this.onEmptyResults();
43118         }
43119         
43120         if (!this.loadingChildren) {
43121             this.selectActive();
43122         }
43123         /*
43124         this.stores[1].loadData([]);
43125         this.stores[2].loadData([]);
43126         this.views
43127         */    
43128     
43129         //this.el.focus();
43130     },
43131     
43132     
43133     // private
43134     onLoadException : function()
43135     {
43136         this.collapse();
43137         Roo.log(this.store.reader.jsonData);
43138         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43139             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43140         }
43141         
43142         
43143     },
43144     // no cleaning of leading spaces on blur here.
43145     cleanLeadingSpace : function(e) { },
43146     
43147
43148     onSelectChange : function (view, sels, opts )
43149     {
43150         var ix = view.getSelectedIndexes();
43151          
43152         if (opts.list > this.maxColumns - 2) {
43153             if (view.store.getCount()<  1) {
43154                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43155
43156             } else  {
43157                 if (ix.length) {
43158                     // used to clear ?? but if we are loading unselected 
43159                     this.setFromData(view.store.getAt(ix[0]).data);
43160                 }
43161                 
43162             }
43163             
43164             return;
43165         }
43166         
43167         if (!ix.length) {
43168             // this get's fired when trigger opens..
43169            // this.setFromData({});
43170             var str = this.stores[opts.list+1];
43171             str.data.clear(); // removeall wihtout the fire events..
43172             return;
43173         }
43174         
43175         var rec = view.store.getAt(ix[0]);
43176          
43177         this.setFromData(rec.data);
43178         this.fireEvent('select', this, rec, ix[0]);
43179         
43180         var lw = Math.floor(
43181              (
43182                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43183              ) / this.maxColumns
43184         );
43185         this.loadingChildren = true;
43186         this.stores[opts.list+1].loadDataFromChildren( rec );
43187         this.loadingChildren = false;
43188         var dl = this.stores[opts.list+1]. getTotalCount();
43189         
43190         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43191         
43192         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43193         for (var i = opts.list+2; i < this.views.length;i++) {
43194             this.views[i].getEl().setStyle({ display : 'none' });
43195         }
43196         
43197         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43198         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43199         
43200         if (this.isLoading) {
43201            // this.selectActive(opts.list);
43202         }
43203          
43204     },
43205     
43206     
43207     
43208     
43209     onDoubleClick : function()
43210     {
43211         this.collapse(); //??
43212     },
43213     
43214      
43215     
43216     
43217     
43218     // private
43219     recordToStack : function(store, prop, value, stack)
43220     {
43221         var cstore = new Roo.data.SimpleStore({
43222             //fields : this.store.reader.meta.fields, // we need array reader.. for
43223             reader : this.store.reader,
43224             data : [ ]
43225         });
43226         var _this = this;
43227         var record  = false;
43228         var srec = false;
43229         if(store.getCount() < 1){
43230             return false;
43231         }
43232         store.each(function(r){
43233             if(r.data[prop] == value){
43234                 record = r;
43235             srec = r;
43236                 return false;
43237             }
43238             if (r.data.cn && r.data.cn.length) {
43239                 cstore.loadDataFromChildren( r);
43240                 var cret = _this.recordToStack(cstore, prop, value, stack);
43241                 if (cret !== false) {
43242                     record = cret;
43243                     srec = r;
43244                     return false;
43245                 }
43246             }
43247              
43248             return true;
43249         });
43250         if (record == false) {
43251             return false
43252         }
43253         stack.unshift(srec);
43254         return record;
43255     },
43256     
43257     /*
43258      * find the stack of stores that match our value.
43259      *
43260      * 
43261      */
43262     
43263     selectActive : function ()
43264     {
43265         // if store is not loaded, then we will need to wait for that to happen first.
43266         var stack = [];
43267         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43268         for (var i = 0; i < stack.length; i++ ) {
43269             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43270         }
43271         
43272     }
43273         
43274          
43275     
43276     
43277     
43278     
43279 });/*
43280  * Based on:
43281  * Ext JS Library 1.1.1
43282  * Copyright(c) 2006-2007, Ext JS, LLC.
43283  *
43284  * Originally Released Under LGPL - original licence link has changed is not relivant.
43285  *
43286  * Fork - LGPL
43287  * <script type="text/javascript">
43288  */
43289 /**
43290  * @class Roo.form.Checkbox
43291  * @extends Roo.form.Field
43292  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43293  * @constructor
43294  * Creates a new Checkbox
43295  * @param {Object} config Configuration options
43296  */
43297 Roo.form.Checkbox = function(config){
43298     Roo.form.Checkbox.superclass.constructor.call(this, config);
43299     this.addEvents({
43300         /**
43301          * @event check
43302          * Fires when the checkbox is checked or unchecked.
43303              * @param {Roo.form.Checkbox} this This checkbox
43304              * @param {Boolean} checked The new checked value
43305              */
43306         check : true
43307     });
43308 };
43309
43310 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43311     /**
43312      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43313      */
43314     focusClass : undefined,
43315     /**
43316      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43317      */
43318     fieldClass: "x-form-field",
43319     /**
43320      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43321      */
43322     checked: false,
43323     /**
43324      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43325      * {tag: "input", type: "checkbox", autocomplete: "off"})
43326      */
43327     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43328     /**
43329      * @cfg {String} boxLabel The text that appears beside the checkbox
43330      */
43331     boxLabel : "",
43332     /**
43333      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43334      */  
43335     inputValue : '1',
43336     /**
43337      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43338      */
43339      valueOff: '0', // value when not checked..
43340
43341     actionMode : 'viewEl', 
43342     //
43343     // private
43344     itemCls : 'x-menu-check-item x-form-item',
43345     groupClass : 'x-menu-group-item',
43346     inputType : 'hidden',
43347     
43348     
43349     inSetChecked: false, // check that we are not calling self...
43350     
43351     inputElement: false, // real input element?
43352     basedOn: false, // ????
43353     
43354     isFormField: true, // not sure where this is needed!!!!
43355
43356     onResize : function(){
43357         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43358         if(!this.boxLabel){
43359             this.el.alignTo(this.wrap, 'c-c');
43360         }
43361     },
43362
43363     initEvents : function(){
43364         Roo.form.Checkbox.superclass.initEvents.call(this);
43365         this.el.on("click", this.onClick,  this);
43366         this.el.on("change", this.onClick,  this);
43367     },
43368
43369
43370     getResizeEl : function(){
43371         return this.wrap;
43372     },
43373
43374     getPositionEl : function(){
43375         return this.wrap;
43376     },
43377
43378     // private
43379     onRender : function(ct, position){
43380         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43381         /*
43382         if(this.inputValue !== undefined){
43383             this.el.dom.value = this.inputValue;
43384         }
43385         */
43386         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43387         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43388         var viewEl = this.wrap.createChild({ 
43389             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43390         this.viewEl = viewEl;   
43391         this.wrap.on('click', this.onClick,  this); 
43392         
43393         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43394         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43395         
43396         
43397         
43398         if(this.boxLabel){
43399             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43400         //    viewEl.on('click', this.onClick,  this); 
43401         }
43402         //if(this.checked){
43403             this.setChecked(this.checked);
43404         //}else{
43405             //this.checked = this.el.dom;
43406         //}
43407
43408     },
43409
43410     // private
43411     initValue : Roo.emptyFn,
43412
43413     /**
43414      * Returns the checked state of the checkbox.
43415      * @return {Boolean} True if checked, else false
43416      */
43417     getValue : function(){
43418         if(this.el){
43419             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43420         }
43421         return this.valueOff;
43422         
43423     },
43424
43425         // private
43426     onClick : function(){ 
43427         if (this.disabled) {
43428             return;
43429         }
43430         this.setChecked(!this.checked);
43431
43432         //if(this.el.dom.checked != this.checked){
43433         //    this.setValue(this.el.dom.checked);
43434        // }
43435     },
43436
43437     /**
43438      * Sets the checked state of the checkbox.
43439      * On is always based on a string comparison between inputValue and the param.
43440      * @param {Boolean/String} value - the value to set 
43441      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43442      */
43443     setValue : function(v,suppressEvent){
43444         
43445         
43446         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43447         //if(this.el && this.el.dom){
43448         //    this.el.dom.checked = this.checked;
43449         //    this.el.dom.defaultChecked = this.checked;
43450         //}
43451         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43452         //this.fireEvent("check", this, this.checked);
43453     },
43454     // private..
43455     setChecked : function(state,suppressEvent)
43456     {
43457         if (this.inSetChecked) {
43458             this.checked = state;
43459             return;
43460         }
43461         
43462     
43463         if(this.wrap){
43464             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43465         }
43466         this.checked = state;
43467         if(suppressEvent !== true){
43468             this.fireEvent('check', this, state);
43469         }
43470         this.inSetChecked = true;
43471         this.el.dom.value = state ? this.inputValue : this.valueOff;
43472         this.inSetChecked = false;
43473         
43474     },
43475     // handle setting of hidden value by some other method!!?!?
43476     setFromHidden: function()
43477     {
43478         if(!this.el){
43479             return;
43480         }
43481         //console.log("SET FROM HIDDEN");
43482         //alert('setFrom hidden');
43483         this.setValue(this.el.dom.value);
43484     },
43485     
43486     onDestroy : function()
43487     {
43488         if(this.viewEl){
43489             Roo.get(this.viewEl).remove();
43490         }
43491          
43492         Roo.form.Checkbox.superclass.onDestroy.call(this);
43493     },
43494     
43495     setBoxLabel : function(str)
43496     {
43497         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43498     }
43499
43500 });/*
43501  * Based on:
43502  * Ext JS Library 1.1.1
43503  * Copyright(c) 2006-2007, Ext JS, LLC.
43504  *
43505  * Originally Released Under LGPL - original licence link has changed is not relivant.
43506  *
43507  * Fork - LGPL
43508  * <script type="text/javascript">
43509  */
43510  
43511 /**
43512  * @class Roo.form.Radio
43513  * @extends Roo.form.Checkbox
43514  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43515  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43516  * @constructor
43517  * Creates a new Radio
43518  * @param {Object} config Configuration options
43519  */
43520 Roo.form.Radio = function(){
43521     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43522 };
43523 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43524     inputType: 'radio',
43525
43526     /**
43527      * If this radio is part of a group, it will return the selected value
43528      * @return {String}
43529      */
43530     getGroupValue : function(){
43531         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43532     },
43533     
43534     
43535     onRender : function(ct, position){
43536         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43537         
43538         if(this.inputValue !== undefined){
43539             this.el.dom.value = this.inputValue;
43540         }
43541          
43542         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43543         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43544         //var viewEl = this.wrap.createChild({ 
43545         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43546         //this.viewEl = viewEl;   
43547         //this.wrap.on('click', this.onClick,  this); 
43548         
43549         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43550         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43551         
43552         
43553         
43554         if(this.boxLabel){
43555             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43556         //    viewEl.on('click', this.onClick,  this); 
43557         }
43558          if(this.checked){
43559             this.el.dom.checked =   'checked' ;
43560         }
43561          
43562     } 
43563     
43564     
43565 });//<script type="text/javascript">
43566
43567 /*
43568  * Based  Ext JS Library 1.1.1
43569  * Copyright(c) 2006-2007, Ext JS, LLC.
43570  * LGPL
43571  *
43572  */
43573  
43574 /**
43575  * @class Roo.HtmlEditorCore
43576  * @extends Roo.Component
43577  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43578  *
43579  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43580  */
43581
43582 Roo.HtmlEditorCore = function(config){
43583     
43584     
43585     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43586     
43587     
43588     this.addEvents({
43589         /**
43590          * @event initialize
43591          * Fires when the editor is fully initialized (including the iframe)
43592          * @param {Roo.HtmlEditorCore} this
43593          */
43594         initialize: true,
43595         /**
43596          * @event activate
43597          * Fires when the editor is first receives the focus. Any insertion must wait
43598          * until after this event.
43599          * @param {Roo.HtmlEditorCore} this
43600          */
43601         activate: true,
43602          /**
43603          * @event beforesync
43604          * Fires before the textarea is updated with content from the editor iframe. Return false
43605          * to cancel the sync.
43606          * @param {Roo.HtmlEditorCore} this
43607          * @param {String} html
43608          */
43609         beforesync: true,
43610          /**
43611          * @event beforepush
43612          * Fires before the iframe editor is updated with content from the textarea. Return false
43613          * to cancel the push.
43614          * @param {Roo.HtmlEditorCore} this
43615          * @param {String} html
43616          */
43617         beforepush: true,
43618          /**
43619          * @event sync
43620          * Fires when the textarea is updated with content from the editor iframe.
43621          * @param {Roo.HtmlEditorCore} this
43622          * @param {String} html
43623          */
43624         sync: true,
43625          /**
43626          * @event push
43627          * Fires when the iframe editor is updated with content from the textarea.
43628          * @param {Roo.HtmlEditorCore} this
43629          * @param {String} html
43630          */
43631         push: true,
43632         
43633         /**
43634          * @event editorevent
43635          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43636          * @param {Roo.HtmlEditorCore} this
43637          */
43638         editorevent: true
43639         
43640     });
43641     
43642     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43643     
43644     // defaults : white / black...
43645     this.applyBlacklists();
43646     
43647     
43648     
43649 };
43650
43651
43652 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43653
43654
43655      /**
43656      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43657      */
43658     
43659     owner : false,
43660     
43661      /**
43662      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43663      *                        Roo.resizable.
43664      */
43665     resizable : false,
43666      /**
43667      * @cfg {Number} height (in pixels)
43668      */   
43669     height: 300,
43670    /**
43671      * @cfg {Number} width (in pixels)
43672      */   
43673     width: 500,
43674     
43675     /**
43676      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43677      * 
43678      */
43679     stylesheets: false,
43680     
43681     // id of frame..
43682     frameId: false,
43683     
43684     // private properties
43685     validationEvent : false,
43686     deferHeight: true,
43687     initialized : false,
43688     activated : false,
43689     sourceEditMode : false,
43690     onFocus : Roo.emptyFn,
43691     iframePad:3,
43692     hideMode:'offsets',
43693     
43694     clearUp: true,
43695     
43696     // blacklist + whitelisted elements..
43697     black: false,
43698     white: false,
43699      
43700     bodyCls : '',
43701
43702     /**
43703      * Protected method that will not generally be called directly. It
43704      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43705      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43706      */
43707     getDocMarkup : function(){
43708         // body styles..
43709         var st = '';
43710         
43711         // inherit styels from page...?? 
43712         if (this.stylesheets === false) {
43713             
43714             Roo.get(document.head).select('style').each(function(node) {
43715                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43716             });
43717             
43718             Roo.get(document.head).select('link').each(function(node) { 
43719                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43720             });
43721             
43722         } else if (!this.stylesheets.length) {
43723                 // simple..
43724                 st = '<style type="text/css">' +
43725                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43726                    '</style>';
43727         } else {
43728             for (var i in this.stylesheets) { 
43729                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43730             }
43731             
43732         }
43733         
43734         st +=  '<style type="text/css">' +
43735             'IMG { cursor: pointer } ' +
43736         '</style>';
43737
43738         var cls = 'roo-htmleditor-body';
43739         
43740         if(this.bodyCls.length){
43741             cls += ' ' + this.bodyCls;
43742         }
43743         
43744         return '<html><head>' + st  +
43745             //<style type="text/css">' +
43746             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43747             //'</style>' +
43748             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43749     },
43750
43751     // private
43752     onRender : function(ct, position)
43753     {
43754         var _t = this;
43755         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43756         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43757         
43758         
43759         this.el.dom.style.border = '0 none';
43760         this.el.dom.setAttribute('tabIndex', -1);
43761         this.el.addClass('x-hidden hide');
43762         
43763         
43764         
43765         if(Roo.isIE){ // fix IE 1px bogus margin
43766             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43767         }
43768        
43769         
43770         this.frameId = Roo.id();
43771         
43772          
43773         
43774         var iframe = this.owner.wrap.createChild({
43775             tag: 'iframe',
43776             cls: 'form-control', // bootstrap..
43777             id: this.frameId,
43778             name: this.frameId,
43779             frameBorder : 'no',
43780             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43781         }, this.el
43782         );
43783         
43784         
43785         this.iframe = iframe.dom;
43786
43787          this.assignDocWin();
43788         
43789         this.doc.designMode = 'on';
43790        
43791         this.doc.open();
43792         this.doc.write(this.getDocMarkup());
43793         this.doc.close();
43794
43795         
43796         var task = { // must defer to wait for browser to be ready
43797             run : function(){
43798                 //console.log("run task?" + this.doc.readyState);
43799                 this.assignDocWin();
43800                 if(this.doc.body || this.doc.readyState == 'complete'){
43801                     try {
43802                         this.doc.designMode="on";
43803                     } catch (e) {
43804                         return;
43805                     }
43806                     Roo.TaskMgr.stop(task);
43807                     this.initEditor.defer(10, this);
43808                 }
43809             },
43810             interval : 10,
43811             duration: 10000,
43812             scope: this
43813         };
43814         Roo.TaskMgr.start(task);
43815
43816     },
43817
43818     // private
43819     onResize : function(w, h)
43820     {
43821          Roo.log('resize: ' +w + ',' + h );
43822         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43823         if(!this.iframe){
43824             return;
43825         }
43826         if(typeof w == 'number'){
43827             
43828             this.iframe.style.width = w + 'px';
43829         }
43830         if(typeof h == 'number'){
43831             
43832             this.iframe.style.height = h + 'px';
43833             if(this.doc){
43834                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43835             }
43836         }
43837         
43838     },
43839
43840     /**
43841      * Toggles the editor between standard and source edit mode.
43842      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43843      */
43844     toggleSourceEdit : function(sourceEditMode){
43845         
43846         this.sourceEditMode = sourceEditMode === true;
43847         
43848         if(this.sourceEditMode){
43849  
43850             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43851             
43852         }else{
43853             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43854             //this.iframe.className = '';
43855             this.deferFocus();
43856         }
43857         //this.setSize(this.owner.wrap.getSize());
43858         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43859     },
43860
43861     
43862   
43863
43864     /**
43865      * Protected method that will not generally be called directly. If you need/want
43866      * custom HTML cleanup, this is the method you should override.
43867      * @param {String} html The HTML to be cleaned
43868      * return {String} The cleaned HTML
43869      */
43870     cleanHtml : function(html){
43871         html = String(html);
43872         if(html.length > 5){
43873             if(Roo.isSafari){ // strip safari nonsense
43874                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43875             }
43876         }
43877         if(html == '&nbsp;'){
43878             html = '';
43879         }
43880         return html;
43881     },
43882
43883     /**
43884      * HTML Editor -> Textarea
43885      * Protected method that will not generally be called directly. Syncs the contents
43886      * of the editor iframe with the textarea.
43887      */
43888     syncValue : function(){
43889         if(this.initialized){
43890             var bd = (this.doc.body || this.doc.documentElement);
43891             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43892             var html = bd.innerHTML;
43893             if(Roo.isSafari){
43894                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43895                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43896                 if(m && m[1]){
43897                     html = '<div style="'+m[0]+'">' + html + '</div>';
43898                 }
43899             }
43900             html = this.cleanHtml(html);
43901             // fix up the special chars.. normaly like back quotes in word...
43902             // however we do not want to do this with chinese..
43903             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43904                 
43905                 var cc = match.charCodeAt();
43906
43907                 // Get the character value, handling surrogate pairs
43908                 if (match.length == 2) {
43909                     // It's a surrogate pair, calculate the Unicode code point
43910                     var high = match.charCodeAt(0) - 0xD800;
43911                     var low  = match.charCodeAt(1) - 0xDC00;
43912                     cc = (high * 0x400) + low + 0x10000;
43913                 }  else if (
43914                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43915                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43916                     (cc >= 0xf900 && cc < 0xfb00 )
43917                 ) {
43918                         return match;
43919                 }  
43920          
43921                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43922                 return "&#" + cc + ";";
43923                 
43924                 
43925             });
43926             
43927             
43928              
43929             if(this.owner.fireEvent('beforesync', this, html) !== false){
43930                 this.el.dom.value = html;
43931                 this.owner.fireEvent('sync', this, html);
43932             }
43933         }
43934     },
43935
43936     /**
43937      * Protected method that will not generally be called directly. Pushes the value of the textarea
43938      * into the iframe editor.
43939      */
43940     pushValue : function(){
43941         if(this.initialized){
43942             var v = this.el.dom.value.trim();
43943             
43944 //            if(v.length < 1){
43945 //                v = '&#160;';
43946 //            }
43947             
43948             if(this.owner.fireEvent('beforepush', this, v) !== false){
43949                 var d = (this.doc.body || this.doc.documentElement);
43950                 d.innerHTML = v;
43951                 this.cleanUpPaste();
43952                 this.el.dom.value = d.innerHTML;
43953                 this.owner.fireEvent('push', this, v);
43954             }
43955         }
43956     },
43957
43958     // private
43959     deferFocus : function(){
43960         this.focus.defer(10, this);
43961     },
43962
43963     // doc'ed in Field
43964     focus : function(){
43965         if(this.win && !this.sourceEditMode){
43966             this.win.focus();
43967         }else{
43968             this.el.focus();
43969         }
43970     },
43971     
43972     assignDocWin: function()
43973     {
43974         var iframe = this.iframe;
43975         
43976          if(Roo.isIE){
43977             this.doc = iframe.contentWindow.document;
43978             this.win = iframe.contentWindow;
43979         } else {
43980 //            if (!Roo.get(this.frameId)) {
43981 //                return;
43982 //            }
43983 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43984 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43985             
43986             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43987                 return;
43988             }
43989             
43990             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43991             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43992         }
43993     },
43994     
43995     // private
43996     initEditor : function(){
43997         //console.log("INIT EDITOR");
43998         this.assignDocWin();
43999         
44000         
44001         
44002         this.doc.designMode="on";
44003         this.doc.open();
44004         this.doc.write(this.getDocMarkup());
44005         this.doc.close();
44006         
44007         var dbody = (this.doc.body || this.doc.documentElement);
44008         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
44009         // this copies styles from the containing element into thsi one..
44010         // not sure why we need all of this..
44011         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
44012         
44013         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
44014         //ss['background-attachment'] = 'fixed'; // w3c
44015         dbody.bgProperties = 'fixed'; // ie
44016         //Roo.DomHelper.applyStyles(dbody, ss);
44017         Roo.EventManager.on(this.doc, {
44018             //'mousedown': this.onEditorEvent,
44019             'mouseup': this.onEditorEvent,
44020             'dblclick': this.onEditorEvent,
44021             'click': this.onEditorEvent,
44022             'keyup': this.onEditorEvent,
44023             buffer:100,
44024             scope: this
44025         });
44026         if(Roo.isGecko){
44027             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
44028         }
44029         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
44030             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
44031         }
44032         this.initialized = true;
44033
44034         this.owner.fireEvent('initialize', this);
44035         this.pushValue();
44036     },
44037
44038     // private
44039     onDestroy : function(){
44040         
44041         
44042         
44043         if(this.rendered){
44044             
44045             //for (var i =0; i < this.toolbars.length;i++) {
44046             //    // fixme - ask toolbars for heights?
44047             //    this.toolbars[i].onDestroy();
44048            // }
44049             
44050             //this.wrap.dom.innerHTML = '';
44051             //this.wrap.remove();
44052         }
44053     },
44054
44055     // private
44056     onFirstFocus : function(){
44057         
44058         this.assignDocWin();
44059         
44060         
44061         this.activated = true;
44062          
44063     
44064         if(Roo.isGecko){ // prevent silly gecko errors
44065             this.win.focus();
44066             var s = this.win.getSelection();
44067             if(!s.focusNode || s.focusNode.nodeType != 3){
44068                 var r = s.getRangeAt(0);
44069                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44070                 r.collapse(true);
44071                 this.deferFocus();
44072             }
44073             try{
44074                 this.execCmd('useCSS', true);
44075                 this.execCmd('styleWithCSS', false);
44076             }catch(e){}
44077         }
44078         this.owner.fireEvent('activate', this);
44079     },
44080
44081     // private
44082     adjustFont: function(btn){
44083         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44084         //if(Roo.isSafari){ // safari
44085         //    adjust *= 2;
44086        // }
44087         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44088         if(Roo.isSafari){ // safari
44089             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44090             v =  (v < 10) ? 10 : v;
44091             v =  (v > 48) ? 48 : v;
44092             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44093             
44094         }
44095         
44096         
44097         v = Math.max(1, v+adjust);
44098         
44099         this.execCmd('FontSize', v  );
44100     },
44101
44102     onEditorEvent : function(e)
44103     {
44104         this.owner.fireEvent('editorevent', this, e);
44105       //  this.updateToolbar();
44106         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44107     },
44108
44109     insertTag : function(tg)
44110     {
44111         // could be a bit smarter... -> wrap the current selected tRoo..
44112         if (tg.toLowerCase() == 'span' ||
44113             tg.toLowerCase() == 'code' ||
44114             tg.toLowerCase() == 'sup' ||
44115             tg.toLowerCase() == 'sub' 
44116             ) {
44117             
44118             range = this.createRange(this.getSelection());
44119             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44120             wrappingNode.appendChild(range.extractContents());
44121             range.insertNode(wrappingNode);
44122
44123             return;
44124             
44125             
44126             
44127         }
44128         this.execCmd("formatblock",   tg);
44129         
44130     },
44131     
44132     insertText : function(txt)
44133     {
44134         
44135         
44136         var range = this.createRange();
44137         range.deleteContents();
44138                //alert(Sender.getAttribute('label'));
44139                
44140         range.insertNode(this.doc.createTextNode(txt));
44141     } ,
44142     
44143      
44144
44145     /**
44146      * Executes a Midas editor command on the editor document and performs necessary focus and
44147      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44148      * @param {String} cmd The Midas command
44149      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44150      */
44151     relayCmd : function(cmd, value){
44152         this.win.focus();
44153         this.execCmd(cmd, value);
44154         this.owner.fireEvent('editorevent', this);
44155         //this.updateToolbar();
44156         this.owner.deferFocus();
44157     },
44158
44159     /**
44160      * Executes a Midas editor command directly on the editor document.
44161      * For visual commands, you should use {@link #relayCmd} instead.
44162      * <b>This should only be called after the editor is initialized.</b>
44163      * @param {String} cmd The Midas command
44164      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44165      */
44166     execCmd : function(cmd, value){
44167         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44168         this.syncValue();
44169     },
44170  
44171  
44172    
44173     /**
44174      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44175      * to insert tRoo.
44176      * @param {String} text | dom node.. 
44177      */
44178     insertAtCursor : function(text)
44179     {
44180         
44181         if(!this.activated){
44182             return;
44183         }
44184         /*
44185         if(Roo.isIE){
44186             this.win.focus();
44187             var r = this.doc.selection.createRange();
44188             if(r){
44189                 r.collapse(true);
44190                 r.pasteHTML(text);
44191                 this.syncValue();
44192                 this.deferFocus();
44193             
44194             }
44195             return;
44196         }
44197         */
44198         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44199             this.win.focus();
44200             
44201             
44202             // from jquery ui (MIT licenced)
44203             var range, node;
44204             var win = this.win;
44205             
44206             if (win.getSelection && win.getSelection().getRangeAt) {
44207                 range = win.getSelection().getRangeAt(0);
44208                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44209                 range.insertNode(node);
44210             } else if (win.document.selection && win.document.selection.createRange) {
44211                 // no firefox support
44212                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44213                 win.document.selection.createRange().pasteHTML(txt);
44214             } else {
44215                 // no firefox support
44216                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44217                 this.execCmd('InsertHTML', txt);
44218             } 
44219             
44220             this.syncValue();
44221             
44222             this.deferFocus();
44223         }
44224     },
44225  // private
44226     mozKeyPress : function(e){
44227         if(e.ctrlKey){
44228             var c = e.getCharCode(), cmd;
44229           
44230             if(c > 0){
44231                 c = String.fromCharCode(c).toLowerCase();
44232                 switch(c){
44233                     case 'b':
44234                         cmd = 'bold';
44235                         break;
44236                     case 'i':
44237                         cmd = 'italic';
44238                         break;
44239                     
44240                     case 'u':
44241                         cmd = 'underline';
44242                         break;
44243                     
44244                     case 'v':
44245                         this.cleanUpPaste.defer(100, this);
44246                         return;
44247                         
44248                 }
44249                 if(cmd){
44250                     this.win.focus();
44251                     this.execCmd(cmd);
44252                     this.deferFocus();
44253                     e.preventDefault();
44254                 }
44255                 
44256             }
44257         }
44258     },
44259
44260     // private
44261     fixKeys : function(){ // load time branching for fastest keydown performance
44262         if(Roo.isIE){
44263             return function(e){
44264                 var k = e.getKey(), r;
44265                 if(k == e.TAB){
44266                     e.stopEvent();
44267                     r = this.doc.selection.createRange();
44268                     if(r){
44269                         r.collapse(true);
44270                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44271                         this.deferFocus();
44272                     }
44273                     return;
44274                 }
44275                 
44276                 if(k == e.ENTER){
44277                     r = this.doc.selection.createRange();
44278                     if(r){
44279                         var target = r.parentElement();
44280                         if(!target || target.tagName.toLowerCase() != 'li'){
44281                             e.stopEvent();
44282                             r.pasteHTML('<br />');
44283                             r.collapse(false);
44284                             r.select();
44285                         }
44286                     }
44287                 }
44288                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44289                     this.cleanUpPaste.defer(100, this);
44290                     return;
44291                 }
44292                 
44293                 
44294             };
44295         }else if(Roo.isOpera){
44296             return function(e){
44297                 var k = e.getKey();
44298                 if(k == e.TAB){
44299                     e.stopEvent();
44300                     this.win.focus();
44301                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44302                     this.deferFocus();
44303                 }
44304                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44305                     this.cleanUpPaste.defer(100, this);
44306                     return;
44307                 }
44308                 
44309             };
44310         }else if(Roo.isSafari){
44311             return function(e){
44312                 var k = e.getKey();
44313                 
44314                 if(k == e.TAB){
44315                     e.stopEvent();
44316                     this.execCmd('InsertText','\t');
44317                     this.deferFocus();
44318                     return;
44319                 }
44320                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44321                     this.cleanUpPaste.defer(100, this);
44322                     return;
44323                 }
44324                 
44325              };
44326         }
44327     }(),
44328     
44329     getAllAncestors: function()
44330     {
44331         var p = this.getSelectedNode();
44332         var a = [];
44333         if (!p) {
44334             a.push(p); // push blank onto stack..
44335             p = this.getParentElement();
44336         }
44337         
44338         
44339         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44340             a.push(p);
44341             p = p.parentNode;
44342         }
44343         a.push(this.doc.body);
44344         return a;
44345     },
44346     lastSel : false,
44347     lastSelNode : false,
44348     
44349     
44350     getSelection : function() 
44351     {
44352         this.assignDocWin();
44353         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44354     },
44355     
44356     getSelectedNode: function() 
44357     {
44358         // this may only work on Gecko!!!
44359         
44360         // should we cache this!!!!
44361         
44362         
44363         
44364          
44365         var range = this.createRange(this.getSelection()).cloneRange();
44366         
44367         if (Roo.isIE) {
44368             var parent = range.parentElement();
44369             while (true) {
44370                 var testRange = range.duplicate();
44371                 testRange.moveToElementText(parent);
44372                 if (testRange.inRange(range)) {
44373                     break;
44374                 }
44375                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44376                     break;
44377                 }
44378                 parent = parent.parentElement;
44379             }
44380             return parent;
44381         }
44382         
44383         // is ancestor a text element.
44384         var ac =  range.commonAncestorContainer;
44385         if (ac.nodeType == 3) {
44386             ac = ac.parentNode;
44387         }
44388         
44389         var ar = ac.childNodes;
44390          
44391         var nodes = [];
44392         var other_nodes = [];
44393         var has_other_nodes = false;
44394         for (var i=0;i<ar.length;i++) {
44395             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44396                 continue;
44397             }
44398             // fullly contained node.
44399             
44400             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44401                 nodes.push(ar[i]);
44402                 continue;
44403             }
44404             
44405             // probably selected..
44406             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44407                 other_nodes.push(ar[i]);
44408                 continue;
44409             }
44410             // outer..
44411             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44412                 continue;
44413             }
44414             
44415             
44416             has_other_nodes = true;
44417         }
44418         if (!nodes.length && other_nodes.length) {
44419             nodes= other_nodes;
44420         }
44421         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44422             return false;
44423         }
44424         
44425         return nodes[0];
44426     },
44427     createRange: function(sel)
44428     {
44429         // this has strange effects when using with 
44430         // top toolbar - not sure if it's a great idea.
44431         //this.editor.contentWindow.focus();
44432         if (typeof sel != "undefined") {
44433             try {
44434                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44435             } catch(e) {
44436                 return this.doc.createRange();
44437             }
44438         } else {
44439             return this.doc.createRange();
44440         }
44441     },
44442     getParentElement: function()
44443     {
44444         
44445         this.assignDocWin();
44446         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44447         
44448         var range = this.createRange(sel);
44449          
44450         try {
44451             var p = range.commonAncestorContainer;
44452             while (p.nodeType == 3) { // text node
44453                 p = p.parentNode;
44454             }
44455             return p;
44456         } catch (e) {
44457             return null;
44458         }
44459     
44460     },
44461     /***
44462      *
44463      * Range intersection.. the hard stuff...
44464      *  '-1' = before
44465      *  '0' = hits..
44466      *  '1' = after.
44467      *         [ -- selected range --- ]
44468      *   [fail]                        [fail]
44469      *
44470      *    basically..
44471      *      if end is before start or  hits it. fail.
44472      *      if start is after end or hits it fail.
44473      *
44474      *   if either hits (but other is outside. - then it's not 
44475      *   
44476      *    
44477      **/
44478     
44479     
44480     // @see http://www.thismuchiknow.co.uk/?p=64.
44481     rangeIntersectsNode : function(range, node)
44482     {
44483         var nodeRange = node.ownerDocument.createRange();
44484         try {
44485             nodeRange.selectNode(node);
44486         } catch (e) {
44487             nodeRange.selectNodeContents(node);
44488         }
44489     
44490         var rangeStartRange = range.cloneRange();
44491         rangeStartRange.collapse(true);
44492     
44493         var rangeEndRange = range.cloneRange();
44494         rangeEndRange.collapse(false);
44495     
44496         var nodeStartRange = nodeRange.cloneRange();
44497         nodeStartRange.collapse(true);
44498     
44499         var nodeEndRange = nodeRange.cloneRange();
44500         nodeEndRange.collapse(false);
44501     
44502         return rangeStartRange.compareBoundaryPoints(
44503                  Range.START_TO_START, nodeEndRange) == -1 &&
44504                rangeEndRange.compareBoundaryPoints(
44505                  Range.START_TO_START, nodeStartRange) == 1;
44506         
44507          
44508     },
44509     rangeCompareNode : function(range, node)
44510     {
44511         var nodeRange = node.ownerDocument.createRange();
44512         try {
44513             nodeRange.selectNode(node);
44514         } catch (e) {
44515             nodeRange.selectNodeContents(node);
44516         }
44517         
44518         
44519         range.collapse(true);
44520     
44521         nodeRange.collapse(true);
44522      
44523         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44524         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44525          
44526         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44527         
44528         var nodeIsBefore   =  ss == 1;
44529         var nodeIsAfter    = ee == -1;
44530         
44531         if (nodeIsBefore && nodeIsAfter) {
44532             return 0; // outer
44533         }
44534         if (!nodeIsBefore && nodeIsAfter) {
44535             return 1; //right trailed.
44536         }
44537         
44538         if (nodeIsBefore && !nodeIsAfter) {
44539             return 2;  // left trailed.
44540         }
44541         // fully contined.
44542         return 3;
44543     },
44544
44545     // private? - in a new class?
44546     cleanUpPaste :  function()
44547     {
44548         // cleans up the whole document..
44549         Roo.log('cleanuppaste');
44550         
44551         this.cleanUpChildren(this.doc.body);
44552         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44553         if (clean != this.doc.body.innerHTML) {
44554             this.doc.body.innerHTML = clean;
44555         }
44556         
44557     },
44558     
44559     cleanWordChars : function(input) {// change the chars to hex code
44560         var he = Roo.HtmlEditorCore;
44561         
44562         var output = input;
44563         Roo.each(he.swapCodes, function(sw) { 
44564             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44565             
44566             output = output.replace(swapper, sw[1]);
44567         });
44568         
44569         return output;
44570     },
44571     
44572     
44573     cleanUpChildren : function (n)
44574     {
44575         if (!n.childNodes.length) {
44576             return;
44577         }
44578         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44579            this.cleanUpChild(n.childNodes[i]);
44580         }
44581     },
44582     
44583     
44584         
44585     
44586     cleanUpChild : function (node)
44587     {
44588         var ed = this;
44589         //console.log(node);
44590         if (node.nodeName == "#text") {
44591             // clean up silly Windows -- stuff?
44592             return; 
44593         }
44594         if (node.nodeName == "#comment") {
44595             node.parentNode.removeChild(node);
44596             // clean up silly Windows -- stuff?
44597             return; 
44598         }
44599         var lcname = node.tagName.toLowerCase();
44600         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44601         // whitelist of tags..
44602         
44603         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44604             // remove node.
44605             node.parentNode.removeChild(node);
44606             return;
44607             
44608         }
44609         
44610         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44611         
44612         // spans with no attributes - just remove them..
44613         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44614             remove_keep_children = true;
44615         }
44616         
44617         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44618         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44619         
44620         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44621         //    remove_keep_children = true;
44622         //}
44623         
44624         if (remove_keep_children) {
44625             this.cleanUpChildren(node);
44626             // inserts everything just before this node...
44627             while (node.childNodes.length) {
44628                 var cn = node.childNodes[0];
44629                 node.removeChild(cn);
44630                 node.parentNode.insertBefore(cn, node);
44631             }
44632             node.parentNode.removeChild(node);
44633             return;
44634         }
44635         
44636         if (!node.attributes || !node.attributes.length) {
44637             
44638           
44639             
44640             
44641             this.cleanUpChildren(node);
44642             return;
44643         }
44644         
44645         function cleanAttr(n,v)
44646         {
44647             
44648             if (v.match(/^\./) || v.match(/^\//)) {
44649                 return;
44650             }
44651             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44652                 return;
44653             }
44654             if (v.match(/^#/)) {
44655                 return;
44656             }
44657             if (v.match(/^\{/)) { // allow template editing.
44658                 return;
44659             }
44660 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44661             node.removeAttribute(n);
44662             
44663         }
44664         
44665         var cwhite = this.cwhite;
44666         var cblack = this.cblack;
44667             
44668         function cleanStyle(n,v)
44669         {
44670             if (v.match(/expression/)) { //XSS?? should we even bother..
44671                 node.removeAttribute(n);
44672                 return;
44673             }
44674             
44675             var parts = v.split(/;/);
44676             var clean = [];
44677             
44678             Roo.each(parts, function(p) {
44679                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44680                 if (!p.length) {
44681                     return true;
44682                 }
44683                 var l = p.split(':').shift().replace(/\s+/g,'');
44684                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44685                 
44686                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44687 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44688                     //node.removeAttribute(n);
44689                     return true;
44690                 }
44691                 //Roo.log()
44692                 // only allow 'c whitelisted system attributes'
44693                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44694 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44695                     //node.removeAttribute(n);
44696                     return true;
44697                 }
44698                 
44699                 
44700                  
44701                 
44702                 clean.push(p);
44703                 return true;
44704             });
44705             if (clean.length) { 
44706                 node.setAttribute(n, clean.join(';'));
44707             } else {
44708                 node.removeAttribute(n);
44709             }
44710             
44711         }
44712         
44713         
44714         for (var i = node.attributes.length-1; i > -1 ; i--) {
44715             var a = node.attributes[i];
44716             //console.log(a);
44717             
44718             if (a.name.toLowerCase().substr(0,2)=='on')  {
44719                 node.removeAttribute(a.name);
44720                 continue;
44721             }
44722             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44723                 node.removeAttribute(a.name);
44724                 continue;
44725             }
44726             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44727                 cleanAttr(a.name,a.value); // fixme..
44728                 continue;
44729             }
44730             if (a.name == 'style') {
44731                 cleanStyle(a.name,a.value);
44732                 continue;
44733             }
44734             /// clean up MS crap..
44735             // tecnically this should be a list of valid class'es..
44736             
44737             
44738             if (a.name == 'class') {
44739                 if (a.value.match(/^Mso/)) {
44740                     node.removeAttribute('class');
44741                 }
44742                 
44743                 if (a.value.match(/^body$/)) {
44744                     node.removeAttribute('class');
44745                 }
44746                 continue;
44747             }
44748             
44749             // style cleanup!?
44750             // class cleanup?
44751             
44752         }
44753         
44754         
44755         this.cleanUpChildren(node);
44756         
44757         
44758     },
44759     
44760     /**
44761      * Clean up MS wordisms...
44762      */
44763     cleanWord : function(node)
44764     {
44765         if (!node) {
44766             this.cleanWord(this.doc.body);
44767             return;
44768         }
44769         
44770         if(
44771                 node.nodeName == 'SPAN' &&
44772                 !node.hasAttributes() &&
44773                 node.childNodes.length == 1 &&
44774                 node.firstChild.nodeName == "#text"  
44775         ) {
44776             var textNode = node.firstChild;
44777             node.removeChild(textNode);
44778             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44779                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44780             }
44781             node.parentNode.insertBefore(textNode, node);
44782             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44783                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44784             }
44785             node.parentNode.removeChild(node);
44786         }
44787         
44788         if (node.nodeName == "#text") {
44789             // clean up silly Windows -- stuff?
44790             return; 
44791         }
44792         if (node.nodeName == "#comment") {
44793             node.parentNode.removeChild(node);
44794             // clean up silly Windows -- stuff?
44795             return; 
44796         }
44797         
44798         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44799             node.parentNode.removeChild(node);
44800             return;
44801         }
44802         //Roo.log(node.tagName);
44803         // remove - but keep children..
44804         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44805             //Roo.log('-- removed');
44806             while (node.childNodes.length) {
44807                 var cn = node.childNodes[0];
44808                 node.removeChild(cn);
44809                 node.parentNode.insertBefore(cn, node);
44810                 // move node to parent - and clean it..
44811                 this.cleanWord(cn);
44812             }
44813             node.parentNode.removeChild(node);
44814             /// no need to iterate chidlren = it's got none..
44815             //this.iterateChildren(node, this.cleanWord);
44816             return;
44817         }
44818         // clean styles
44819         if (node.className.length) {
44820             
44821             var cn = node.className.split(/\W+/);
44822             var cna = [];
44823             Roo.each(cn, function(cls) {
44824                 if (cls.match(/Mso[a-zA-Z]+/)) {
44825                     return;
44826                 }
44827                 cna.push(cls);
44828             });
44829             node.className = cna.length ? cna.join(' ') : '';
44830             if (!cna.length) {
44831                 node.removeAttribute("class");
44832             }
44833         }
44834         
44835         if (node.hasAttribute("lang")) {
44836             node.removeAttribute("lang");
44837         }
44838         
44839         if (node.hasAttribute("style")) {
44840             
44841             var styles = node.getAttribute("style").split(";");
44842             var nstyle = [];
44843             Roo.each(styles, function(s) {
44844                 if (!s.match(/:/)) {
44845                     return;
44846                 }
44847                 var kv = s.split(":");
44848                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44849                     return;
44850                 }
44851                 // what ever is left... we allow.
44852                 nstyle.push(s);
44853             });
44854             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44855             if (!nstyle.length) {
44856                 node.removeAttribute('style');
44857             }
44858         }
44859         this.iterateChildren(node, this.cleanWord);
44860         
44861         
44862         
44863     },
44864     /**
44865      * iterateChildren of a Node, calling fn each time, using this as the scole..
44866      * @param {DomNode} node node to iterate children of.
44867      * @param {Function} fn method of this class to call on each item.
44868      */
44869     iterateChildren : function(node, fn)
44870     {
44871         if (!node.childNodes.length) {
44872                 return;
44873         }
44874         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44875            fn.call(this, node.childNodes[i])
44876         }
44877     },
44878     
44879     
44880     /**
44881      * cleanTableWidths.
44882      *
44883      * Quite often pasting from word etc.. results in tables with column and widths.
44884      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44885      *
44886      */
44887     cleanTableWidths : function(node)
44888     {
44889          
44890          
44891         if (!node) {
44892             this.cleanTableWidths(this.doc.body);
44893             return;
44894         }
44895         
44896         // ignore list...
44897         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44898             return; 
44899         }
44900         Roo.log(node.tagName);
44901         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44902             this.iterateChildren(node, this.cleanTableWidths);
44903             return;
44904         }
44905         if (node.hasAttribute('width')) {
44906             node.removeAttribute('width');
44907         }
44908         
44909          
44910         if (node.hasAttribute("style")) {
44911             // pretty basic...
44912             
44913             var styles = node.getAttribute("style").split(";");
44914             var nstyle = [];
44915             Roo.each(styles, function(s) {
44916                 if (!s.match(/:/)) {
44917                     return;
44918                 }
44919                 var kv = s.split(":");
44920                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44921                     return;
44922                 }
44923                 // what ever is left... we allow.
44924                 nstyle.push(s);
44925             });
44926             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44927             if (!nstyle.length) {
44928                 node.removeAttribute('style');
44929             }
44930         }
44931         
44932         this.iterateChildren(node, this.cleanTableWidths);
44933         
44934         
44935     },
44936     
44937     
44938     
44939     
44940     domToHTML : function(currentElement, depth, nopadtext) {
44941         
44942         depth = depth || 0;
44943         nopadtext = nopadtext || false;
44944     
44945         if (!currentElement) {
44946             return this.domToHTML(this.doc.body);
44947         }
44948         
44949         //Roo.log(currentElement);
44950         var j;
44951         var allText = false;
44952         var nodeName = currentElement.nodeName;
44953         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44954         
44955         if  (nodeName == '#text') {
44956             
44957             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44958         }
44959         
44960         
44961         var ret = '';
44962         if (nodeName != 'BODY') {
44963              
44964             var i = 0;
44965             // Prints the node tagName, such as <A>, <IMG>, etc
44966             if (tagName) {
44967                 var attr = [];
44968                 for(i = 0; i < currentElement.attributes.length;i++) {
44969                     // quoting?
44970                     var aname = currentElement.attributes.item(i).name;
44971                     if (!currentElement.attributes.item(i).value.length) {
44972                         continue;
44973                     }
44974                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44975                 }
44976                 
44977                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44978             } 
44979             else {
44980                 
44981                 // eack
44982             }
44983         } else {
44984             tagName = false;
44985         }
44986         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44987             return ret;
44988         }
44989         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44990             nopadtext = true;
44991         }
44992         
44993         
44994         // Traverse the tree
44995         i = 0;
44996         var currentElementChild = currentElement.childNodes.item(i);
44997         var allText = true;
44998         var innerHTML  = '';
44999         lastnode = '';
45000         while (currentElementChild) {
45001             // Formatting code (indent the tree so it looks nice on the screen)
45002             var nopad = nopadtext;
45003             if (lastnode == 'SPAN') {
45004                 nopad  = true;
45005             }
45006             // text
45007             if  (currentElementChild.nodeName == '#text') {
45008                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
45009                 toadd = nopadtext ? toadd : toadd.trim();
45010                 if (!nopad && toadd.length > 80) {
45011                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
45012                 }
45013                 innerHTML  += toadd;
45014                 
45015                 i++;
45016                 currentElementChild = currentElement.childNodes.item(i);
45017                 lastNode = '';
45018                 continue;
45019             }
45020             allText = false;
45021             
45022             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
45023                 
45024             // Recursively traverse the tree structure of the child node
45025             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
45026             lastnode = currentElementChild.nodeName;
45027             i++;
45028             currentElementChild=currentElement.childNodes.item(i);
45029         }
45030         
45031         ret += innerHTML;
45032         
45033         if (!allText) {
45034                 // The remaining code is mostly for formatting the tree
45035             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
45036         }
45037         
45038         
45039         if (tagName) {
45040             ret+= "</"+tagName+">";
45041         }
45042         return ret;
45043         
45044     },
45045         
45046     applyBlacklists : function()
45047     {
45048         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
45049         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
45050         
45051         this.white = [];
45052         this.black = [];
45053         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
45054             if (b.indexOf(tag) > -1) {
45055                 return;
45056             }
45057             this.white.push(tag);
45058             
45059         }, this);
45060         
45061         Roo.each(w, function(tag) {
45062             if (b.indexOf(tag) > -1) {
45063                 return;
45064             }
45065             if (this.white.indexOf(tag) > -1) {
45066                 return;
45067             }
45068             this.white.push(tag);
45069             
45070         }, this);
45071         
45072         
45073         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45074             if (w.indexOf(tag) > -1) {
45075                 return;
45076             }
45077             this.black.push(tag);
45078             
45079         }, this);
45080         
45081         Roo.each(b, function(tag) {
45082             if (w.indexOf(tag) > -1) {
45083                 return;
45084             }
45085             if (this.black.indexOf(tag) > -1) {
45086                 return;
45087             }
45088             this.black.push(tag);
45089             
45090         }, this);
45091         
45092         
45093         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45094         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45095         
45096         this.cwhite = [];
45097         this.cblack = [];
45098         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45099             if (b.indexOf(tag) > -1) {
45100                 return;
45101             }
45102             this.cwhite.push(tag);
45103             
45104         }, this);
45105         
45106         Roo.each(w, function(tag) {
45107             if (b.indexOf(tag) > -1) {
45108                 return;
45109             }
45110             if (this.cwhite.indexOf(tag) > -1) {
45111                 return;
45112             }
45113             this.cwhite.push(tag);
45114             
45115         }, this);
45116         
45117         
45118         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45119             if (w.indexOf(tag) > -1) {
45120                 return;
45121             }
45122             this.cblack.push(tag);
45123             
45124         }, this);
45125         
45126         Roo.each(b, function(tag) {
45127             if (w.indexOf(tag) > -1) {
45128                 return;
45129             }
45130             if (this.cblack.indexOf(tag) > -1) {
45131                 return;
45132             }
45133             this.cblack.push(tag);
45134             
45135         }, this);
45136     },
45137     
45138     setStylesheets : function(stylesheets)
45139     {
45140         if(typeof(stylesheets) == 'string'){
45141             Roo.get(this.iframe.contentDocument.head).createChild({
45142                 tag : 'link',
45143                 rel : 'stylesheet',
45144                 type : 'text/css',
45145                 href : stylesheets
45146             });
45147             
45148             return;
45149         }
45150         var _this = this;
45151      
45152         Roo.each(stylesheets, function(s) {
45153             if(!s.length){
45154                 return;
45155             }
45156             
45157             Roo.get(_this.iframe.contentDocument.head).createChild({
45158                 tag : 'link',
45159                 rel : 'stylesheet',
45160                 type : 'text/css',
45161                 href : s
45162             });
45163         });
45164
45165         
45166     },
45167     
45168     removeStylesheets : function()
45169     {
45170         var _this = this;
45171         
45172         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45173             s.remove();
45174         });
45175     },
45176     
45177     setStyle : function(style)
45178     {
45179         Roo.get(this.iframe.contentDocument.head).createChild({
45180             tag : 'style',
45181             type : 'text/css',
45182             html : style
45183         });
45184
45185         return;
45186     }
45187     
45188     // hide stuff that is not compatible
45189     /**
45190      * @event blur
45191      * @hide
45192      */
45193     /**
45194      * @event change
45195      * @hide
45196      */
45197     /**
45198      * @event focus
45199      * @hide
45200      */
45201     /**
45202      * @event specialkey
45203      * @hide
45204      */
45205     /**
45206      * @cfg {String} fieldClass @hide
45207      */
45208     /**
45209      * @cfg {String} focusClass @hide
45210      */
45211     /**
45212      * @cfg {String} autoCreate @hide
45213      */
45214     /**
45215      * @cfg {String} inputType @hide
45216      */
45217     /**
45218      * @cfg {String} invalidClass @hide
45219      */
45220     /**
45221      * @cfg {String} invalidText @hide
45222      */
45223     /**
45224      * @cfg {String} msgFx @hide
45225      */
45226     /**
45227      * @cfg {String} validateOnBlur @hide
45228      */
45229 });
45230
45231 Roo.HtmlEditorCore.white = [
45232         'area', 'br', 'img', 'input', 'hr', 'wbr',
45233         
45234        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45235        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45236        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45237        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45238        'table',   'ul',         'xmp', 
45239        
45240        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45241       'thead',   'tr', 
45242      
45243       'dir', 'menu', 'ol', 'ul', 'dl',
45244        
45245       'embed',  'object'
45246 ];
45247
45248
45249 Roo.HtmlEditorCore.black = [
45250     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45251         'applet', // 
45252         'base',   'basefont', 'bgsound', 'blink',  'body', 
45253         'frame',  'frameset', 'head',    'html',   'ilayer', 
45254         'iframe', 'layer',  'link',     'meta',    'object',   
45255         'script', 'style' ,'title',  'xml' // clean later..
45256 ];
45257 Roo.HtmlEditorCore.clean = [
45258     'script', 'style', 'title', 'xml'
45259 ];
45260 Roo.HtmlEditorCore.remove = [
45261     'font'
45262 ];
45263 // attributes..
45264
45265 Roo.HtmlEditorCore.ablack = [
45266     'on'
45267 ];
45268     
45269 Roo.HtmlEditorCore.aclean = [ 
45270     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45271 ];
45272
45273 // protocols..
45274 Roo.HtmlEditorCore.pwhite= [
45275         'http',  'https',  'mailto'
45276 ];
45277
45278 // white listed style attributes.
45279 Roo.HtmlEditorCore.cwhite= [
45280       //  'text-align', /// default is to allow most things..
45281       
45282          
45283 //        'font-size'//??
45284 ];
45285
45286 // black listed style attributes.
45287 Roo.HtmlEditorCore.cblack= [
45288       //  'font-size' -- this can be set by the project 
45289 ];
45290
45291
45292 Roo.HtmlEditorCore.swapCodes   =[ 
45293     [    8211, "&#8211;" ], 
45294     [    8212, "&#8212;" ], 
45295     [    8216,  "'" ],  
45296     [    8217, "'" ],  
45297     [    8220, '"' ],  
45298     [    8221, '"' ],  
45299     [    8226, "*" ],  
45300     [    8230, "..." ]
45301 ]; 
45302
45303     //<script type="text/javascript">
45304
45305 /*
45306  * Ext JS Library 1.1.1
45307  * Copyright(c) 2006-2007, Ext JS, LLC.
45308  * Licence LGPL
45309  * 
45310  */
45311  
45312  
45313 Roo.form.HtmlEditor = function(config){
45314     
45315     
45316     
45317     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45318     
45319     if (!this.toolbars) {
45320         this.toolbars = [];
45321     }
45322     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45323     
45324     
45325 };
45326
45327 /**
45328  * @class Roo.form.HtmlEditor
45329  * @extends Roo.form.Field
45330  * Provides a lightweight HTML Editor component.
45331  *
45332  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45333  * 
45334  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45335  * supported by this editor.</b><br/><br/>
45336  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45337  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45338  */
45339 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45340     /**
45341      * @cfg {Boolean} clearUp
45342      */
45343     clearUp : true,
45344       /**
45345      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45346      */
45347     toolbars : false,
45348    
45349      /**
45350      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45351      *                        Roo.resizable.
45352      */
45353     resizable : false,
45354      /**
45355      * @cfg {Number} height (in pixels)
45356      */   
45357     height: 300,
45358    /**
45359      * @cfg {Number} width (in pixels)
45360      */   
45361     width: 500,
45362     
45363     /**
45364      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45365      * 
45366      */
45367     stylesheets: false,
45368     
45369     
45370      /**
45371      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45372      * 
45373      */
45374     cblack: false,
45375     /**
45376      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45377      * 
45378      */
45379     cwhite: false,
45380     
45381      /**
45382      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45383      * 
45384      */
45385     black: false,
45386     /**
45387      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45388      * 
45389      */
45390     white: false,
45391     
45392     // id of frame..
45393     frameId: false,
45394     
45395     // private properties
45396     validationEvent : false,
45397     deferHeight: true,
45398     initialized : false,
45399     activated : false,
45400     
45401     onFocus : Roo.emptyFn,
45402     iframePad:3,
45403     hideMode:'offsets',
45404     
45405     actionMode : 'container', // defaults to hiding it...
45406     
45407     defaultAutoCreate : { // modified by initCompnoent..
45408         tag: "textarea",
45409         style:"width:500px;height:300px;",
45410         autocomplete: "new-password"
45411     },
45412
45413     // private
45414     initComponent : function(){
45415         this.addEvents({
45416             /**
45417              * @event initialize
45418              * Fires when the editor is fully initialized (including the iframe)
45419              * @param {HtmlEditor} this
45420              */
45421             initialize: true,
45422             /**
45423              * @event activate
45424              * Fires when the editor is first receives the focus. Any insertion must wait
45425              * until after this event.
45426              * @param {HtmlEditor} this
45427              */
45428             activate: true,
45429              /**
45430              * @event beforesync
45431              * Fires before the textarea is updated with content from the editor iframe. Return false
45432              * to cancel the sync.
45433              * @param {HtmlEditor} this
45434              * @param {String} html
45435              */
45436             beforesync: true,
45437              /**
45438              * @event beforepush
45439              * Fires before the iframe editor is updated with content from the textarea. Return false
45440              * to cancel the push.
45441              * @param {HtmlEditor} this
45442              * @param {String} html
45443              */
45444             beforepush: true,
45445              /**
45446              * @event sync
45447              * Fires when the textarea is updated with content from the editor iframe.
45448              * @param {HtmlEditor} this
45449              * @param {String} html
45450              */
45451             sync: true,
45452              /**
45453              * @event push
45454              * Fires when the iframe editor is updated with content from the textarea.
45455              * @param {HtmlEditor} this
45456              * @param {String} html
45457              */
45458             push: true,
45459              /**
45460              * @event editmodechange
45461              * Fires when the editor switches edit modes
45462              * @param {HtmlEditor} this
45463              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45464              */
45465             editmodechange: true,
45466             /**
45467              * @event editorevent
45468              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45469              * @param {HtmlEditor} this
45470              */
45471             editorevent: true,
45472             /**
45473              * @event firstfocus
45474              * Fires when on first focus - needed by toolbars..
45475              * @param {HtmlEditor} this
45476              */
45477             firstfocus: true,
45478             /**
45479              * @event autosave
45480              * Auto save the htmlEditor value as a file into Events
45481              * @param {HtmlEditor} this
45482              */
45483             autosave: true,
45484             /**
45485              * @event savedpreview
45486              * preview the saved version of htmlEditor
45487              * @param {HtmlEditor} this
45488              */
45489             savedpreview: true,
45490             
45491             /**
45492             * @event stylesheetsclick
45493             * Fires when press the Sytlesheets button
45494             * @param {Roo.HtmlEditorCore} this
45495             */
45496             stylesheetsclick: true
45497         });
45498         this.defaultAutoCreate =  {
45499             tag: "textarea",
45500             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45501             autocomplete: "new-password"
45502         };
45503     },
45504
45505     /**
45506      * Protected method that will not generally be called directly. It
45507      * is called when the editor creates its toolbar. Override this method if you need to
45508      * add custom toolbar buttons.
45509      * @param {HtmlEditor} editor
45510      */
45511     createToolbar : function(editor){
45512         Roo.log("create toolbars");
45513         if (!editor.toolbars || !editor.toolbars.length) {
45514             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45515         }
45516         
45517         for (var i =0 ; i < editor.toolbars.length;i++) {
45518             editor.toolbars[i] = Roo.factory(
45519                     typeof(editor.toolbars[i]) == 'string' ?
45520                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45521                 Roo.form.HtmlEditor);
45522             editor.toolbars[i].init(editor);
45523         }
45524          
45525         
45526     },
45527
45528      
45529     // private
45530     onRender : function(ct, position)
45531     {
45532         var _t = this;
45533         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45534         
45535         this.wrap = this.el.wrap({
45536             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45537         });
45538         
45539         this.editorcore.onRender(ct, position);
45540          
45541         if (this.resizable) {
45542             this.resizeEl = new Roo.Resizable(this.wrap, {
45543                 pinned : true,
45544                 wrap: true,
45545                 dynamic : true,
45546                 minHeight : this.height,
45547                 height: this.height,
45548                 handles : this.resizable,
45549                 width: this.width,
45550                 listeners : {
45551                     resize : function(r, w, h) {
45552                         _t.onResize(w,h); // -something
45553                     }
45554                 }
45555             });
45556             
45557         }
45558         this.createToolbar(this);
45559        
45560         
45561         if(!this.width){
45562             this.setSize(this.wrap.getSize());
45563         }
45564         if (this.resizeEl) {
45565             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45566             // should trigger onReize..
45567         }
45568         
45569         this.keyNav = new Roo.KeyNav(this.el, {
45570             
45571             "tab" : function(e){
45572                 e.preventDefault();
45573                 
45574                 var value = this.getValue();
45575                 
45576                 var start = this.el.dom.selectionStart;
45577                 var end = this.el.dom.selectionEnd;
45578                 
45579                 if(!e.shiftKey){
45580                     
45581                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45582                     this.el.dom.setSelectionRange(end + 1, end + 1);
45583                     return;
45584                 }
45585                 
45586                 var f = value.substring(0, start).split("\t");
45587                 
45588                 if(f.pop().length != 0){
45589                     return;
45590                 }
45591                 
45592                 this.setValue(f.join("\t") + value.substring(end));
45593                 this.el.dom.setSelectionRange(start - 1, start - 1);
45594                 
45595             },
45596             
45597             "home" : function(e){
45598                 e.preventDefault();
45599                 
45600                 var curr = this.el.dom.selectionStart;
45601                 var lines = this.getValue().split("\n");
45602                 
45603                 if(!lines.length){
45604                     return;
45605                 }
45606                 
45607                 if(e.ctrlKey){
45608                     this.el.dom.setSelectionRange(0, 0);
45609                     return;
45610                 }
45611                 
45612                 var pos = 0;
45613                 
45614                 for (var i = 0; i < lines.length;i++) {
45615                     pos += lines[i].length;
45616                     
45617                     if(i != 0){
45618                         pos += 1;
45619                     }
45620                     
45621                     if(pos < curr){
45622                         continue;
45623                     }
45624                     
45625                     pos -= lines[i].length;
45626                     
45627                     break;
45628                 }
45629                 
45630                 if(!e.shiftKey){
45631                     this.el.dom.setSelectionRange(pos, pos);
45632                     return;
45633                 }
45634                 
45635                 this.el.dom.selectionStart = pos;
45636                 this.el.dom.selectionEnd = curr;
45637             },
45638             
45639             "end" : function(e){
45640                 e.preventDefault();
45641                 
45642                 var curr = this.el.dom.selectionStart;
45643                 var lines = this.getValue().split("\n");
45644                 
45645                 if(!lines.length){
45646                     return;
45647                 }
45648                 
45649                 if(e.ctrlKey){
45650                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45651                     return;
45652                 }
45653                 
45654                 var pos = 0;
45655                 
45656                 for (var i = 0; i < lines.length;i++) {
45657                     
45658                     pos += lines[i].length;
45659                     
45660                     if(i != 0){
45661                         pos += 1;
45662                     }
45663                     
45664                     if(pos < curr){
45665                         continue;
45666                     }
45667                     
45668                     break;
45669                 }
45670                 
45671                 if(!e.shiftKey){
45672                     this.el.dom.setSelectionRange(pos, pos);
45673                     return;
45674                 }
45675                 
45676                 this.el.dom.selectionStart = curr;
45677                 this.el.dom.selectionEnd = pos;
45678             },
45679
45680             scope : this,
45681
45682             doRelay : function(foo, bar, hname){
45683                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45684             },
45685
45686             forceKeyDown: true
45687         });
45688         
45689 //        if(this.autosave && this.w){
45690 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45691 //        }
45692     },
45693
45694     // private
45695     onResize : function(w, h)
45696     {
45697         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45698         var ew = false;
45699         var eh = false;
45700         
45701         if(this.el ){
45702             if(typeof w == 'number'){
45703                 var aw = w - this.wrap.getFrameWidth('lr');
45704                 this.el.setWidth(this.adjustWidth('textarea', aw));
45705                 ew = aw;
45706             }
45707             if(typeof h == 'number'){
45708                 var tbh = 0;
45709                 for (var i =0; i < this.toolbars.length;i++) {
45710                     // fixme - ask toolbars for heights?
45711                     tbh += this.toolbars[i].tb.el.getHeight();
45712                     if (this.toolbars[i].footer) {
45713                         tbh += this.toolbars[i].footer.el.getHeight();
45714                     }
45715                 }
45716                 
45717                 
45718                 
45719                 
45720                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45721                 ah -= 5; // knock a few pixes off for look..
45722 //                Roo.log(ah);
45723                 this.el.setHeight(this.adjustWidth('textarea', ah));
45724                 var eh = ah;
45725             }
45726         }
45727         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45728         this.editorcore.onResize(ew,eh);
45729         
45730     },
45731
45732     /**
45733      * Toggles the editor between standard and source edit mode.
45734      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45735      */
45736     toggleSourceEdit : function(sourceEditMode)
45737     {
45738         this.editorcore.toggleSourceEdit(sourceEditMode);
45739         
45740         if(this.editorcore.sourceEditMode){
45741             Roo.log('editor - showing textarea');
45742             
45743 //            Roo.log('in');
45744 //            Roo.log(this.syncValue());
45745             this.editorcore.syncValue();
45746             this.el.removeClass('x-hidden');
45747             this.el.dom.removeAttribute('tabIndex');
45748             this.el.focus();
45749             
45750             for (var i = 0; i < this.toolbars.length; i++) {
45751                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45752                     this.toolbars[i].tb.hide();
45753                     this.toolbars[i].footer.hide();
45754                 }
45755             }
45756             
45757         }else{
45758             Roo.log('editor - hiding textarea');
45759 //            Roo.log('out')
45760 //            Roo.log(this.pushValue()); 
45761             this.editorcore.pushValue();
45762             
45763             this.el.addClass('x-hidden');
45764             this.el.dom.setAttribute('tabIndex', -1);
45765             
45766             for (var i = 0; i < this.toolbars.length; i++) {
45767                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45768                     this.toolbars[i].tb.show();
45769                     this.toolbars[i].footer.show();
45770                 }
45771             }
45772             
45773             //this.deferFocus();
45774         }
45775         
45776         this.setSize(this.wrap.getSize());
45777         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45778         
45779         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45780     },
45781  
45782     // private (for BoxComponent)
45783     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45784
45785     // private (for BoxComponent)
45786     getResizeEl : function(){
45787         return this.wrap;
45788     },
45789
45790     // private (for BoxComponent)
45791     getPositionEl : function(){
45792         return this.wrap;
45793     },
45794
45795     // private
45796     initEvents : function(){
45797         this.originalValue = this.getValue();
45798     },
45799
45800     /**
45801      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45802      * @method
45803      */
45804     markInvalid : Roo.emptyFn,
45805     /**
45806      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45807      * @method
45808      */
45809     clearInvalid : Roo.emptyFn,
45810
45811     setValue : function(v){
45812         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45813         this.editorcore.pushValue();
45814     },
45815
45816      
45817     // private
45818     deferFocus : function(){
45819         this.focus.defer(10, this);
45820     },
45821
45822     // doc'ed in Field
45823     focus : function(){
45824         this.editorcore.focus();
45825         
45826     },
45827       
45828
45829     // private
45830     onDestroy : function(){
45831         
45832         
45833         
45834         if(this.rendered){
45835             
45836             for (var i =0; i < this.toolbars.length;i++) {
45837                 // fixme - ask toolbars for heights?
45838                 this.toolbars[i].onDestroy();
45839             }
45840             
45841             this.wrap.dom.innerHTML = '';
45842             this.wrap.remove();
45843         }
45844     },
45845
45846     // private
45847     onFirstFocus : function(){
45848         //Roo.log("onFirstFocus");
45849         this.editorcore.onFirstFocus();
45850          for (var i =0; i < this.toolbars.length;i++) {
45851             this.toolbars[i].onFirstFocus();
45852         }
45853         
45854     },
45855     
45856     // private
45857     syncValue : function()
45858     {
45859         this.editorcore.syncValue();
45860     },
45861     
45862     pushValue : function()
45863     {
45864         this.editorcore.pushValue();
45865     },
45866     
45867     setStylesheets : function(stylesheets)
45868     {
45869         this.editorcore.setStylesheets(stylesheets);
45870     },
45871     
45872     removeStylesheets : function()
45873     {
45874         this.editorcore.removeStylesheets();
45875     }
45876      
45877     
45878     // hide stuff that is not compatible
45879     /**
45880      * @event blur
45881      * @hide
45882      */
45883     /**
45884      * @event change
45885      * @hide
45886      */
45887     /**
45888      * @event focus
45889      * @hide
45890      */
45891     /**
45892      * @event specialkey
45893      * @hide
45894      */
45895     /**
45896      * @cfg {String} fieldClass @hide
45897      */
45898     /**
45899      * @cfg {String} focusClass @hide
45900      */
45901     /**
45902      * @cfg {String} autoCreate @hide
45903      */
45904     /**
45905      * @cfg {String} inputType @hide
45906      */
45907     /**
45908      * @cfg {String} invalidClass @hide
45909      */
45910     /**
45911      * @cfg {String} invalidText @hide
45912      */
45913     /**
45914      * @cfg {String} msgFx @hide
45915      */
45916     /**
45917      * @cfg {String} validateOnBlur @hide
45918      */
45919 });
45920  
45921     // <script type="text/javascript">
45922 /*
45923  * Based on
45924  * Ext JS Library 1.1.1
45925  * Copyright(c) 2006-2007, Ext JS, LLC.
45926  *  
45927  
45928  */
45929
45930 /**
45931  * @class Roo.form.HtmlEditorToolbar1
45932  * Basic Toolbar
45933  * 
45934  * Usage:
45935  *
45936  new Roo.form.HtmlEditor({
45937     ....
45938     toolbars : [
45939         new Roo.form.HtmlEditorToolbar1({
45940             disable : { fonts: 1 , format: 1, ..., ... , ...],
45941             btns : [ .... ]
45942         })
45943     }
45944      
45945  * 
45946  * @cfg {Object} disable List of elements to disable..
45947  * @cfg {Array} btns List of additional buttons.
45948  * 
45949  * 
45950  * NEEDS Extra CSS? 
45951  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45952  */
45953  
45954 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45955 {
45956     
45957     Roo.apply(this, config);
45958     
45959     // default disabled, based on 'good practice'..
45960     this.disable = this.disable || {};
45961     Roo.applyIf(this.disable, {
45962         fontSize : true,
45963         colors : true,
45964         specialElements : true
45965     });
45966     
45967     
45968     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45969     // dont call parent... till later.
45970 }
45971
45972 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45973     
45974     tb: false,
45975     
45976     rendered: false,
45977     
45978     editor : false,
45979     editorcore : false,
45980     /**
45981      * @cfg {Object} disable  List of toolbar elements to disable
45982          
45983      */
45984     disable : false,
45985     
45986     
45987      /**
45988      * @cfg {String} createLinkText The default text for the create link prompt
45989      */
45990     createLinkText : 'Please enter the URL for the link:',
45991     /**
45992      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45993      */
45994     defaultLinkValue : 'http:/'+'/',
45995    
45996     
45997       /**
45998      * @cfg {Array} fontFamilies An array of available font families
45999      */
46000     fontFamilies : [
46001         'Arial',
46002         'Courier New',
46003         'Tahoma',
46004         'Times New Roman',
46005         'Verdana'
46006     ],
46007     
46008     specialChars : [
46009            "&#169;",
46010           "&#174;",     
46011           "&#8482;",    
46012           "&#163;" ,    
46013          // "&#8212;",    
46014           "&#8230;",    
46015           "&#247;" ,    
46016         //  "&#225;" ,     ?? a acute?
46017            "&#8364;"    , //Euro
46018        //   "&#8220;"    ,
46019         //  "&#8221;"    ,
46020         //  "&#8226;"    ,
46021           "&#176;"  //   , // degrees
46022
46023          // "&#233;"     , // e ecute
46024          // "&#250;"     , // u ecute?
46025     ],
46026     
46027     specialElements : [
46028         {
46029             text: "Insert Table",
46030             xtype: 'MenuItem',
46031             xns : Roo.Menu,
46032             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
46033                 
46034         },
46035         {    
46036             text: "Insert Image",
46037             xtype: 'MenuItem',
46038             xns : Roo.Menu,
46039             ihtml : '<img src="about:blank"/>'
46040             
46041         }
46042         
46043          
46044     ],
46045     
46046     
46047     inputElements : [ 
46048             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
46049             "input:submit", "input:button", "select", "textarea", "label" ],
46050     formats : [
46051         ["p"] ,  
46052         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
46053         ["pre"],[ "code"], 
46054         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
46055         ['div'],['span'],
46056         ['sup'],['sub']
46057     ],
46058     
46059     cleanStyles : [
46060         "font-size"
46061     ],
46062      /**
46063      * @cfg {String} defaultFont default font to use.
46064      */
46065     defaultFont: 'tahoma',
46066    
46067     fontSelect : false,
46068     
46069     
46070     formatCombo : false,
46071     
46072     init : function(editor)
46073     {
46074         this.editor = editor;
46075         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46076         var editorcore = this.editorcore;
46077         
46078         var _t = this;
46079         
46080         var fid = editorcore.frameId;
46081         var etb = this;
46082         function btn(id, toggle, handler){
46083             var xid = fid + '-'+ id ;
46084             return {
46085                 id : xid,
46086                 cmd : id,
46087                 cls : 'x-btn-icon x-edit-'+id,
46088                 enableToggle:toggle !== false,
46089                 scope: _t, // was editor...
46090                 handler:handler||_t.relayBtnCmd,
46091                 clickEvent:'mousedown',
46092                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46093                 tabIndex:-1
46094             };
46095         }
46096         
46097         
46098         
46099         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46100         this.tb = tb;
46101          // stop form submits
46102         tb.el.on('click', function(e){
46103             e.preventDefault(); // what does this do?
46104         });
46105
46106         if(!this.disable.font) { // && !Roo.isSafari){
46107             /* why no safari for fonts 
46108             editor.fontSelect = tb.el.createChild({
46109                 tag:'select',
46110                 tabIndex: -1,
46111                 cls:'x-font-select',
46112                 html: this.createFontOptions()
46113             });
46114             
46115             editor.fontSelect.on('change', function(){
46116                 var font = editor.fontSelect.dom.value;
46117                 editor.relayCmd('fontname', font);
46118                 editor.deferFocus();
46119             }, editor);
46120             
46121             tb.add(
46122                 editor.fontSelect.dom,
46123                 '-'
46124             );
46125             */
46126             
46127         };
46128         if(!this.disable.formats){
46129             this.formatCombo = new Roo.form.ComboBox({
46130                 store: new Roo.data.SimpleStore({
46131                     id : 'tag',
46132                     fields: ['tag'],
46133                     data : this.formats // from states.js
46134                 }),
46135                 blockFocus : true,
46136                 name : '',
46137                 //autoCreate : {tag: "div",  size: "20"},
46138                 displayField:'tag',
46139                 typeAhead: false,
46140                 mode: 'local',
46141                 editable : false,
46142                 triggerAction: 'all',
46143                 emptyText:'Add tag',
46144                 selectOnFocus:true,
46145                 width:135,
46146                 listeners : {
46147                     'select': function(c, r, i) {
46148                         editorcore.insertTag(r.get('tag'));
46149                         editor.focus();
46150                     }
46151                 }
46152
46153             });
46154             tb.addField(this.formatCombo);
46155             
46156         }
46157         
46158         if(!this.disable.format){
46159             tb.add(
46160                 btn('bold'),
46161                 btn('italic'),
46162                 btn('underline'),
46163                 btn('strikethrough')
46164             );
46165         };
46166         if(!this.disable.fontSize){
46167             tb.add(
46168                 '-',
46169                 
46170                 
46171                 btn('increasefontsize', false, editorcore.adjustFont),
46172                 btn('decreasefontsize', false, editorcore.adjustFont)
46173             );
46174         };
46175         
46176         
46177         if(!this.disable.colors){
46178             tb.add(
46179                 '-', {
46180                     id:editorcore.frameId +'-forecolor',
46181                     cls:'x-btn-icon x-edit-forecolor',
46182                     clickEvent:'mousedown',
46183                     tooltip: this.buttonTips['forecolor'] || undefined,
46184                     tabIndex:-1,
46185                     menu : new Roo.menu.ColorMenu({
46186                         allowReselect: true,
46187                         focus: Roo.emptyFn,
46188                         value:'000000',
46189                         plain:true,
46190                         selectHandler: function(cp, color){
46191                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46192                             editor.deferFocus();
46193                         },
46194                         scope: editorcore,
46195                         clickEvent:'mousedown'
46196                     })
46197                 }, {
46198                     id:editorcore.frameId +'backcolor',
46199                     cls:'x-btn-icon x-edit-backcolor',
46200                     clickEvent:'mousedown',
46201                     tooltip: this.buttonTips['backcolor'] || undefined,
46202                     tabIndex:-1,
46203                     menu : new Roo.menu.ColorMenu({
46204                         focus: Roo.emptyFn,
46205                         value:'FFFFFF',
46206                         plain:true,
46207                         allowReselect: true,
46208                         selectHandler: function(cp, color){
46209                             if(Roo.isGecko){
46210                                 editorcore.execCmd('useCSS', false);
46211                                 editorcore.execCmd('hilitecolor', color);
46212                                 editorcore.execCmd('useCSS', true);
46213                                 editor.deferFocus();
46214                             }else{
46215                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46216                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46217                                 editor.deferFocus();
46218                             }
46219                         },
46220                         scope:editorcore,
46221                         clickEvent:'mousedown'
46222                     })
46223                 }
46224             );
46225         };
46226         // now add all the items...
46227         
46228
46229         if(!this.disable.alignments){
46230             tb.add(
46231                 '-',
46232                 btn('justifyleft'),
46233                 btn('justifycenter'),
46234                 btn('justifyright')
46235             );
46236         };
46237
46238         //if(!Roo.isSafari){
46239             if(!this.disable.links){
46240                 tb.add(
46241                     '-',
46242                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46243                 );
46244             };
46245
46246             if(!this.disable.lists){
46247                 tb.add(
46248                     '-',
46249                     btn('insertorderedlist'),
46250                     btn('insertunorderedlist')
46251                 );
46252             }
46253             if(!this.disable.sourceEdit){
46254                 tb.add(
46255                     '-',
46256                     btn('sourceedit', true, function(btn){
46257                         this.toggleSourceEdit(btn.pressed);
46258                     })
46259                 );
46260             }
46261         //}
46262         
46263         var smenu = { };
46264         // special menu.. - needs to be tidied up..
46265         if (!this.disable.special) {
46266             smenu = {
46267                 text: "&#169;",
46268                 cls: 'x-edit-none',
46269                 
46270                 menu : {
46271                     items : []
46272                 }
46273             };
46274             for (var i =0; i < this.specialChars.length; i++) {
46275                 smenu.menu.items.push({
46276                     
46277                     html: this.specialChars[i],
46278                     handler: function(a,b) {
46279                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46280                         //editor.insertAtCursor(a.html);
46281                         
46282                     },
46283                     tabIndex:-1
46284                 });
46285             }
46286             
46287             
46288             tb.add(smenu);
46289             
46290             
46291         }
46292         
46293         var cmenu = { };
46294         if (!this.disable.cleanStyles) {
46295             cmenu = {
46296                 cls: 'x-btn-icon x-btn-clear',
46297                 
46298                 menu : {
46299                     items : []
46300                 }
46301             };
46302             for (var i =0; i < this.cleanStyles.length; i++) {
46303                 cmenu.menu.items.push({
46304                     actiontype : this.cleanStyles[i],
46305                     html: 'Remove ' + this.cleanStyles[i],
46306                     handler: function(a,b) {
46307 //                        Roo.log(a);
46308 //                        Roo.log(b);
46309                         var c = Roo.get(editorcore.doc.body);
46310                         c.select('[style]').each(function(s) {
46311                             s.dom.style.removeProperty(a.actiontype);
46312                         });
46313                         editorcore.syncValue();
46314                     },
46315                     tabIndex:-1
46316                 });
46317             }
46318              cmenu.menu.items.push({
46319                 actiontype : 'tablewidths',
46320                 html: 'Remove Table Widths',
46321                 handler: function(a,b) {
46322                     editorcore.cleanTableWidths();
46323                     editorcore.syncValue();
46324                 },
46325                 tabIndex:-1
46326             });
46327             cmenu.menu.items.push({
46328                 actiontype : 'word',
46329                 html: 'Remove MS Word Formating',
46330                 handler: function(a,b) {
46331                     editorcore.cleanWord();
46332                     editorcore.syncValue();
46333                 },
46334                 tabIndex:-1
46335             });
46336             
46337             cmenu.menu.items.push({
46338                 actiontype : 'all',
46339                 html: 'Remove All Styles',
46340                 handler: function(a,b) {
46341                     
46342                     var c = Roo.get(editorcore.doc.body);
46343                     c.select('[style]').each(function(s) {
46344                         s.dom.removeAttribute('style');
46345                     });
46346                     editorcore.syncValue();
46347                 },
46348                 tabIndex:-1
46349             });
46350             
46351             cmenu.menu.items.push({
46352                 actiontype : 'all',
46353                 html: 'Remove All CSS Classes',
46354                 handler: function(a,b) {
46355                     
46356                     var c = Roo.get(editorcore.doc.body);
46357                     c.select('[class]').each(function(s) {
46358                         s.dom.removeAttribute('class');
46359                     });
46360                     editorcore.cleanWord();
46361                     editorcore.syncValue();
46362                 },
46363                 tabIndex:-1
46364             });
46365             
46366              cmenu.menu.items.push({
46367                 actiontype : 'tidy',
46368                 html: 'Tidy HTML Source',
46369                 handler: function(a,b) {
46370                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46371                     editorcore.syncValue();
46372                 },
46373                 tabIndex:-1
46374             });
46375             
46376             
46377             tb.add(cmenu);
46378         }
46379          
46380         if (!this.disable.specialElements) {
46381             var semenu = {
46382                 text: "Other;",
46383                 cls: 'x-edit-none',
46384                 menu : {
46385                     items : []
46386                 }
46387             };
46388             for (var i =0; i < this.specialElements.length; i++) {
46389                 semenu.menu.items.push(
46390                     Roo.apply({ 
46391                         handler: function(a,b) {
46392                             editor.insertAtCursor(this.ihtml);
46393                         }
46394                     }, this.specialElements[i])
46395                 );
46396                     
46397             }
46398             
46399             tb.add(semenu);
46400             
46401             
46402         }
46403          
46404         
46405         if (this.btns) {
46406             for(var i =0; i< this.btns.length;i++) {
46407                 var b = Roo.factory(this.btns[i],Roo.form);
46408                 b.cls =  'x-edit-none';
46409                 
46410                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46411                     b.cls += ' x-init-enable';
46412                 }
46413                 
46414                 b.scope = editorcore;
46415                 tb.add(b);
46416             }
46417         
46418         }
46419         
46420         
46421         
46422         // disable everything...
46423         
46424         this.tb.items.each(function(item){
46425             
46426            if(
46427                 item.id != editorcore.frameId+ '-sourceedit' && 
46428                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46429             ){
46430                 
46431                 item.disable();
46432             }
46433         });
46434         this.rendered = true;
46435         
46436         // the all the btns;
46437         editor.on('editorevent', this.updateToolbar, this);
46438         // other toolbars need to implement this..
46439         //editor.on('editmodechange', this.updateToolbar, this);
46440     },
46441     
46442     
46443     relayBtnCmd : function(btn) {
46444         this.editorcore.relayCmd(btn.cmd);
46445     },
46446     // private used internally
46447     createLink : function(){
46448         Roo.log("create link?");
46449         var url = prompt(this.createLinkText, this.defaultLinkValue);
46450         if(url && url != 'http:/'+'/'){
46451             this.editorcore.relayCmd('createlink', url);
46452         }
46453     },
46454
46455     
46456     /**
46457      * Protected method that will not generally be called directly. It triggers
46458      * a toolbar update by reading the markup state of the current selection in the editor.
46459      */
46460     updateToolbar: function(){
46461
46462         if(!this.editorcore.activated){
46463             this.editor.onFirstFocus();
46464             return;
46465         }
46466
46467         var btns = this.tb.items.map, 
46468             doc = this.editorcore.doc,
46469             frameId = this.editorcore.frameId;
46470
46471         if(!this.disable.font && !Roo.isSafari){
46472             /*
46473             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46474             if(name != this.fontSelect.dom.value){
46475                 this.fontSelect.dom.value = name;
46476             }
46477             */
46478         }
46479         if(!this.disable.format){
46480             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46481             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46482             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46483             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46484         }
46485         if(!this.disable.alignments){
46486             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46487             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46488             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46489         }
46490         if(!Roo.isSafari && !this.disable.lists){
46491             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46492             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46493         }
46494         
46495         var ans = this.editorcore.getAllAncestors();
46496         if (this.formatCombo) {
46497             
46498             
46499             var store = this.formatCombo.store;
46500             this.formatCombo.setValue("");
46501             for (var i =0; i < ans.length;i++) {
46502                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46503                     // select it..
46504                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46505                     break;
46506                 }
46507             }
46508         }
46509         
46510         
46511         
46512         // hides menus... - so this cant be on a menu...
46513         Roo.menu.MenuMgr.hideAll();
46514
46515         //this.editorsyncValue();
46516     },
46517    
46518     
46519     createFontOptions : function(){
46520         var buf = [], fs = this.fontFamilies, ff, lc;
46521         
46522         
46523         
46524         for(var i = 0, len = fs.length; i< len; i++){
46525             ff = fs[i];
46526             lc = ff.toLowerCase();
46527             buf.push(
46528                 '<option value="',lc,'" style="font-family:',ff,';"',
46529                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46530                     ff,
46531                 '</option>'
46532             );
46533         }
46534         return buf.join('');
46535     },
46536     
46537     toggleSourceEdit : function(sourceEditMode){
46538         
46539         Roo.log("toolbar toogle");
46540         if(sourceEditMode === undefined){
46541             sourceEditMode = !this.sourceEditMode;
46542         }
46543         this.sourceEditMode = sourceEditMode === true;
46544         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46545         // just toggle the button?
46546         if(btn.pressed !== this.sourceEditMode){
46547             btn.toggle(this.sourceEditMode);
46548             return;
46549         }
46550         
46551         if(sourceEditMode){
46552             Roo.log("disabling buttons");
46553             this.tb.items.each(function(item){
46554                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46555                     item.disable();
46556                 }
46557             });
46558           
46559         }else{
46560             Roo.log("enabling buttons");
46561             if(this.editorcore.initialized){
46562                 this.tb.items.each(function(item){
46563                     item.enable();
46564                 });
46565             }
46566             
46567         }
46568         Roo.log("calling toggole on editor");
46569         // tell the editor that it's been pressed..
46570         this.editor.toggleSourceEdit(sourceEditMode);
46571        
46572     },
46573      /**
46574      * Object collection of toolbar tooltips for the buttons in the editor. The key
46575      * is the command id associated with that button and the value is a valid QuickTips object.
46576      * For example:
46577 <pre><code>
46578 {
46579     bold : {
46580         title: 'Bold (Ctrl+B)',
46581         text: 'Make the selected text bold.',
46582         cls: 'x-html-editor-tip'
46583     },
46584     italic : {
46585         title: 'Italic (Ctrl+I)',
46586         text: 'Make the selected text italic.',
46587         cls: 'x-html-editor-tip'
46588     },
46589     ...
46590 </code></pre>
46591     * @type Object
46592      */
46593     buttonTips : {
46594         bold : {
46595             title: 'Bold (Ctrl+B)',
46596             text: 'Make the selected text bold.',
46597             cls: 'x-html-editor-tip'
46598         },
46599         italic : {
46600             title: 'Italic (Ctrl+I)',
46601             text: 'Make the selected text italic.',
46602             cls: 'x-html-editor-tip'
46603         },
46604         underline : {
46605             title: 'Underline (Ctrl+U)',
46606             text: 'Underline the selected text.',
46607             cls: 'x-html-editor-tip'
46608         },
46609         strikethrough : {
46610             title: 'Strikethrough',
46611             text: 'Strikethrough the selected text.',
46612             cls: 'x-html-editor-tip'
46613         },
46614         increasefontsize : {
46615             title: 'Grow Text',
46616             text: 'Increase the font size.',
46617             cls: 'x-html-editor-tip'
46618         },
46619         decreasefontsize : {
46620             title: 'Shrink Text',
46621             text: 'Decrease the font size.',
46622             cls: 'x-html-editor-tip'
46623         },
46624         backcolor : {
46625             title: 'Text Highlight Color',
46626             text: 'Change the background color of the selected text.',
46627             cls: 'x-html-editor-tip'
46628         },
46629         forecolor : {
46630             title: 'Font Color',
46631             text: 'Change the color of the selected text.',
46632             cls: 'x-html-editor-tip'
46633         },
46634         justifyleft : {
46635             title: 'Align Text Left',
46636             text: 'Align text to the left.',
46637             cls: 'x-html-editor-tip'
46638         },
46639         justifycenter : {
46640             title: 'Center Text',
46641             text: 'Center text in the editor.',
46642             cls: 'x-html-editor-tip'
46643         },
46644         justifyright : {
46645             title: 'Align Text Right',
46646             text: 'Align text to the right.',
46647             cls: 'x-html-editor-tip'
46648         },
46649         insertunorderedlist : {
46650             title: 'Bullet List',
46651             text: 'Start a bulleted list.',
46652             cls: 'x-html-editor-tip'
46653         },
46654         insertorderedlist : {
46655             title: 'Numbered List',
46656             text: 'Start a numbered list.',
46657             cls: 'x-html-editor-tip'
46658         },
46659         createlink : {
46660             title: 'Hyperlink',
46661             text: 'Make the selected text a hyperlink.',
46662             cls: 'x-html-editor-tip'
46663         },
46664         sourceedit : {
46665             title: 'Source Edit',
46666             text: 'Switch to source editing mode.',
46667             cls: 'x-html-editor-tip'
46668         }
46669     },
46670     // private
46671     onDestroy : function(){
46672         if(this.rendered){
46673             
46674             this.tb.items.each(function(item){
46675                 if(item.menu){
46676                     item.menu.removeAll();
46677                     if(item.menu.el){
46678                         item.menu.el.destroy();
46679                     }
46680                 }
46681                 item.destroy();
46682             });
46683              
46684         }
46685     },
46686     onFirstFocus: function() {
46687         this.tb.items.each(function(item){
46688            item.enable();
46689         });
46690     }
46691 });
46692
46693
46694
46695
46696 // <script type="text/javascript">
46697 /*
46698  * Based on
46699  * Ext JS Library 1.1.1
46700  * Copyright(c) 2006-2007, Ext JS, LLC.
46701  *  
46702  
46703  */
46704
46705  
46706 /**
46707  * @class Roo.form.HtmlEditor.ToolbarContext
46708  * Context Toolbar
46709  * 
46710  * Usage:
46711  *
46712  new Roo.form.HtmlEditor({
46713     ....
46714     toolbars : [
46715         { xtype: 'ToolbarStandard', styles : {} }
46716         { xtype: 'ToolbarContext', disable : {} }
46717     ]
46718 })
46719
46720      
46721  * 
46722  * @config : {Object} disable List of elements to disable.. (not done yet.)
46723  * @config : {Object} styles  Map of styles available.
46724  * 
46725  */
46726
46727 Roo.form.HtmlEditor.ToolbarContext = function(config)
46728 {
46729     
46730     Roo.apply(this, config);
46731     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46732     // dont call parent... till later.
46733     this.styles = this.styles || {};
46734 }
46735
46736  
46737
46738 Roo.form.HtmlEditor.ToolbarContext.types = {
46739     'IMG' : {
46740         width : {
46741             title: "Width",
46742             width: 40
46743         },
46744         height:  {
46745             title: "Height",
46746             width: 40
46747         },
46748         align: {
46749             title: "Align",
46750             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46751             width : 80
46752             
46753         },
46754         border: {
46755             title: "Border",
46756             width: 40
46757         },
46758         alt: {
46759             title: "Alt",
46760             width: 120
46761         },
46762         src : {
46763             title: "Src",
46764             width: 220
46765         }
46766         
46767     },
46768     'A' : {
46769         name : {
46770             title: "Name",
46771             width: 50
46772         },
46773         target:  {
46774             title: "Target",
46775             width: 120
46776         },
46777         href:  {
46778             title: "Href",
46779             width: 220
46780         } // border?
46781         
46782     },
46783     'TABLE' : {
46784         rows : {
46785             title: "Rows",
46786             width: 20
46787         },
46788         cols : {
46789             title: "Cols",
46790             width: 20
46791         },
46792         width : {
46793             title: "Width",
46794             width: 40
46795         },
46796         height : {
46797             title: "Height",
46798             width: 40
46799         },
46800         border : {
46801             title: "Border",
46802             width: 20
46803         }
46804     },
46805     'TD' : {
46806         width : {
46807             title: "Width",
46808             width: 40
46809         },
46810         height : {
46811             title: "Height",
46812             width: 40
46813         },   
46814         align: {
46815             title: "Align",
46816             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46817             width: 80
46818         },
46819         valign: {
46820             title: "Valign",
46821             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46822             width: 80
46823         },
46824         colspan: {
46825             title: "Colspan",
46826             width: 20
46827             
46828         },
46829          'font-family'  : {
46830             title : "Font",
46831             style : 'fontFamily',
46832             displayField: 'display',
46833             optname : 'font-family',
46834             width: 140
46835         }
46836     },
46837     'INPUT' : {
46838         name : {
46839             title: "name",
46840             width: 120
46841         },
46842         value : {
46843             title: "Value",
46844             width: 120
46845         },
46846         width : {
46847             title: "Width",
46848             width: 40
46849         }
46850     },
46851     'LABEL' : {
46852         'for' : {
46853             title: "For",
46854             width: 120
46855         }
46856     },
46857     'TEXTAREA' : {
46858           name : {
46859             title: "name",
46860             width: 120
46861         },
46862         rows : {
46863             title: "Rows",
46864             width: 20
46865         },
46866         cols : {
46867             title: "Cols",
46868             width: 20
46869         }
46870     },
46871     'SELECT' : {
46872         name : {
46873             title: "name",
46874             width: 120
46875         },
46876         selectoptions : {
46877             title: "Options",
46878             width: 200
46879         }
46880     },
46881     
46882     // should we really allow this??
46883     // should this just be 
46884     'BODY' : {
46885         title : {
46886             title: "Title",
46887             width: 200,
46888             disabled : true
46889         }
46890     },
46891     'SPAN' : {
46892         'font-family'  : {
46893             title : "Font",
46894             style : 'fontFamily',
46895             displayField: 'display',
46896             optname : 'font-family',
46897             width: 140
46898         }
46899     },
46900     'DIV' : {
46901         'font-family'  : {
46902             title : "Font",
46903             style : 'fontFamily',
46904             displayField: 'display',
46905             optname : 'font-family',
46906             width: 140
46907         }
46908     },
46909      'P' : {
46910         'font-family'  : {
46911             title : "Font",
46912             style : 'fontFamily',
46913             displayField: 'display',
46914             optname : 'font-family',
46915             width: 140
46916         }
46917     },
46918     
46919     '*' : {
46920         // empty..
46921     }
46922
46923 };
46924
46925 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46926 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46927
46928 Roo.form.HtmlEditor.ToolbarContext.options = {
46929         'font-family'  : [ 
46930                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46931                 [ 'Courier New', 'Courier New'],
46932                 [ 'Tahoma', 'Tahoma'],
46933                 [ 'Times New Roman,serif', 'Times'],
46934                 [ 'Verdana','Verdana' ]
46935         ]
46936 };
46937
46938 // fixme - these need to be configurable..
46939  
46940
46941 //Roo.form.HtmlEditor.ToolbarContext.types
46942
46943
46944 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46945     
46946     tb: false,
46947     
46948     rendered: false,
46949     
46950     editor : false,
46951     editorcore : false,
46952     /**
46953      * @cfg {Object} disable  List of toolbar elements to disable
46954          
46955      */
46956     disable : false,
46957     /**
46958      * @cfg {Object} styles List of styles 
46959      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46960      *
46961      * These must be defined in the page, so they get rendered correctly..
46962      * .headline { }
46963      * TD.underline { }
46964      * 
46965      */
46966     styles : false,
46967     
46968     options: false,
46969     
46970     toolbars : false,
46971     
46972     init : function(editor)
46973     {
46974         this.editor = editor;
46975         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46976         var editorcore = this.editorcore;
46977         
46978         var fid = editorcore.frameId;
46979         var etb = this;
46980         function btn(id, toggle, handler){
46981             var xid = fid + '-'+ id ;
46982             return {
46983                 id : xid,
46984                 cmd : id,
46985                 cls : 'x-btn-icon x-edit-'+id,
46986                 enableToggle:toggle !== false,
46987                 scope: editorcore, // was editor...
46988                 handler:handler||editorcore.relayBtnCmd,
46989                 clickEvent:'mousedown',
46990                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46991                 tabIndex:-1
46992             };
46993         }
46994         // create a new element.
46995         var wdiv = editor.wrap.createChild({
46996                 tag: 'div'
46997             }, editor.wrap.dom.firstChild.nextSibling, true);
46998         
46999         // can we do this more than once??
47000         
47001          // stop form submits
47002       
47003  
47004         // disable everything...
47005         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47006         this.toolbars = {};
47007            
47008         for (var i in  ty) {
47009           
47010             this.toolbars[i] = this.buildToolbar(ty[i],i);
47011         }
47012         this.tb = this.toolbars.BODY;
47013         this.tb.el.show();
47014         this.buildFooter();
47015         this.footer.show();
47016         editor.on('hide', function( ) { this.footer.hide() }, this);
47017         editor.on('show', function( ) { this.footer.show() }, this);
47018         
47019          
47020         this.rendered = true;
47021         
47022         // the all the btns;
47023         editor.on('editorevent', this.updateToolbar, this);
47024         // other toolbars need to implement this..
47025         //editor.on('editmodechange', this.updateToolbar, this);
47026     },
47027     
47028     
47029     
47030     /**
47031      * Protected method that will not generally be called directly. It triggers
47032      * a toolbar update by reading the markup state of the current selection in the editor.
47033      *
47034      * Note you can force an update by calling on('editorevent', scope, false)
47035      */
47036     updateToolbar: function(editor,ev,sel){
47037
47038         //Roo.log(ev);
47039         // capture mouse up - this is handy for selecting images..
47040         // perhaps should go somewhere else...
47041         if(!this.editorcore.activated){
47042              this.editor.onFirstFocus();
47043             return;
47044         }
47045         
47046         
47047         
47048         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
47049         // selectNode - might want to handle IE?
47050         if (ev &&
47051             (ev.type == 'mouseup' || ev.type == 'click' ) &&
47052             ev.target && ev.target.tagName == 'IMG') {
47053             // they have click on an image...
47054             // let's see if we can change the selection...
47055             sel = ev.target;
47056          
47057               var nodeRange = sel.ownerDocument.createRange();
47058             try {
47059                 nodeRange.selectNode(sel);
47060             } catch (e) {
47061                 nodeRange.selectNodeContents(sel);
47062             }
47063             //nodeRange.collapse(true);
47064             var s = this.editorcore.win.getSelection();
47065             s.removeAllRanges();
47066             s.addRange(nodeRange);
47067         }  
47068         
47069       
47070         var updateFooter = sel ? false : true;
47071         
47072         
47073         var ans = this.editorcore.getAllAncestors();
47074         
47075         // pick
47076         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47077         
47078         if (!sel) { 
47079             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47080             sel = sel ? sel : this.editorcore.doc.body;
47081             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47082             
47083         }
47084         // pick a menu that exists..
47085         var tn = sel.tagName.toUpperCase();
47086         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47087         
47088         tn = sel.tagName.toUpperCase();
47089         
47090         var lastSel = this.tb.selectedNode;
47091         
47092         this.tb.selectedNode = sel;
47093         
47094         // if current menu does not match..
47095         
47096         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47097                 
47098             this.tb.el.hide();
47099             ///console.log("show: " + tn);
47100             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47101             this.tb.el.show();
47102             // update name
47103             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47104             
47105             
47106             // update attributes
47107             if (this.tb.fields) {
47108                 this.tb.fields.each(function(e) {
47109                     if (e.stylename) {
47110                         e.setValue(sel.style[e.stylename]);
47111                         return;
47112                     } 
47113                    e.setValue(sel.getAttribute(e.attrname));
47114                 });
47115             }
47116             
47117             var hasStyles = false;
47118             for(var i in this.styles) {
47119                 hasStyles = true;
47120                 break;
47121             }
47122             
47123             // update styles
47124             if (hasStyles) { 
47125                 var st = this.tb.fields.item(0);
47126                 
47127                 st.store.removeAll();
47128                
47129                 
47130                 var cn = sel.className.split(/\s+/);
47131                 
47132                 var avs = [];
47133                 if (this.styles['*']) {
47134                     
47135                     Roo.each(this.styles['*'], function(v) {
47136                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47137                     });
47138                 }
47139                 if (this.styles[tn]) { 
47140                     Roo.each(this.styles[tn], function(v) {
47141                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47142                     });
47143                 }
47144                 
47145                 st.store.loadData(avs);
47146                 st.collapse();
47147                 st.setValue(cn);
47148             }
47149             // flag our selected Node.
47150             this.tb.selectedNode = sel;
47151            
47152            
47153             Roo.menu.MenuMgr.hideAll();
47154
47155         }
47156         
47157         if (!updateFooter) {
47158             //this.footDisp.dom.innerHTML = ''; 
47159             return;
47160         }
47161         // update the footer
47162         //
47163         var html = '';
47164         
47165         this.footerEls = ans.reverse();
47166         Roo.each(this.footerEls, function(a,i) {
47167             if (!a) { return; }
47168             html += html.length ? ' &gt; '  :  '';
47169             
47170             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47171             
47172         });
47173        
47174         // 
47175         var sz = this.footDisp.up('td').getSize();
47176         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47177         this.footDisp.dom.style.marginLeft = '5px';
47178         
47179         this.footDisp.dom.style.overflow = 'hidden';
47180         
47181         this.footDisp.dom.innerHTML = html;
47182             
47183         //this.editorsyncValue();
47184     },
47185      
47186     
47187    
47188        
47189     // private
47190     onDestroy : function(){
47191         if(this.rendered){
47192             
47193             this.tb.items.each(function(item){
47194                 if(item.menu){
47195                     item.menu.removeAll();
47196                     if(item.menu.el){
47197                         item.menu.el.destroy();
47198                     }
47199                 }
47200                 item.destroy();
47201             });
47202              
47203         }
47204     },
47205     onFirstFocus: function() {
47206         // need to do this for all the toolbars..
47207         this.tb.items.each(function(item){
47208            item.enable();
47209         });
47210     },
47211     buildToolbar: function(tlist, nm)
47212     {
47213         var editor = this.editor;
47214         var editorcore = this.editorcore;
47215          // create a new element.
47216         var wdiv = editor.wrap.createChild({
47217                 tag: 'div'
47218             }, editor.wrap.dom.firstChild.nextSibling, true);
47219         
47220        
47221         var tb = new Roo.Toolbar(wdiv);
47222         // add the name..
47223         
47224         tb.add(nm+ ":&nbsp;");
47225         
47226         var styles = [];
47227         for(var i in this.styles) {
47228             styles.push(i);
47229         }
47230         
47231         // styles...
47232         if (styles && styles.length) {
47233             
47234             // this needs a multi-select checkbox...
47235             tb.addField( new Roo.form.ComboBox({
47236                 store: new Roo.data.SimpleStore({
47237                     id : 'val',
47238                     fields: ['val', 'selected'],
47239                     data : [] 
47240                 }),
47241                 name : '-roo-edit-className',
47242                 attrname : 'className',
47243                 displayField: 'val',
47244                 typeAhead: false,
47245                 mode: 'local',
47246                 editable : false,
47247                 triggerAction: 'all',
47248                 emptyText:'Select Style',
47249                 selectOnFocus:true,
47250                 width: 130,
47251                 listeners : {
47252                     'select': function(c, r, i) {
47253                         // initial support only for on class per el..
47254                         tb.selectedNode.className =  r ? r.get('val') : '';
47255                         editorcore.syncValue();
47256                     }
47257                 }
47258     
47259             }));
47260         }
47261         
47262         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47263         var tbops = tbc.options;
47264         
47265         for (var i in tlist) {
47266             
47267             var item = tlist[i];
47268             tb.add(item.title + ":&nbsp;");
47269             
47270             
47271             //optname == used so you can configure the options available..
47272             var opts = item.opts ? item.opts : false;
47273             if (item.optname) {
47274                 opts = tbops[item.optname];
47275            
47276             }
47277             
47278             if (opts) {
47279                 // opts == pulldown..
47280                 tb.addField( new Roo.form.ComboBox({
47281                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47282                         id : 'val',
47283                         fields: ['val', 'display'],
47284                         data : opts  
47285                     }),
47286                     name : '-roo-edit-' + i,
47287                     attrname : i,
47288                     stylename : item.style ? item.style : false,
47289                     displayField: item.displayField ? item.displayField : 'val',
47290                     valueField :  'val',
47291                     typeAhead: false,
47292                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47293                     editable : false,
47294                     triggerAction: 'all',
47295                     emptyText:'Select',
47296                     selectOnFocus:true,
47297                     width: item.width ? item.width  : 130,
47298                     listeners : {
47299                         'select': function(c, r, i) {
47300                             if (c.stylename) {
47301                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47302                                 return;
47303                             }
47304                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47305                         }
47306                     }
47307
47308                 }));
47309                 continue;
47310                     
47311                  
47312                 
47313                 tb.addField( new Roo.form.TextField({
47314                     name: i,
47315                     width: 100,
47316                     //allowBlank:false,
47317                     value: ''
47318                 }));
47319                 continue;
47320             }
47321             tb.addField( new Roo.form.TextField({
47322                 name: '-roo-edit-' + i,
47323                 attrname : i,
47324                 
47325                 width: item.width,
47326                 //allowBlank:true,
47327                 value: '',
47328                 listeners: {
47329                     'change' : function(f, nv, ov) {
47330                         tb.selectedNode.setAttribute(f.attrname, nv);
47331                         editorcore.syncValue();
47332                     }
47333                 }
47334             }));
47335              
47336         }
47337         
47338         var _this = this;
47339         
47340         if(nm == 'BODY'){
47341             tb.addSeparator();
47342         
47343             tb.addButton( {
47344                 text: 'Stylesheets',
47345
47346                 listeners : {
47347                     click : function ()
47348                     {
47349                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47350                     }
47351                 }
47352             });
47353         }
47354         
47355         tb.addFill();
47356         tb.addButton( {
47357             text: 'Remove Tag',
47358     
47359             listeners : {
47360                 click : function ()
47361                 {
47362                     // remove
47363                     // undo does not work.
47364                      
47365                     var sn = tb.selectedNode;
47366                     
47367                     var pn = sn.parentNode;
47368                     
47369                     var stn =  sn.childNodes[0];
47370                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47371                     while (sn.childNodes.length) {
47372                         var node = sn.childNodes[0];
47373                         sn.removeChild(node);
47374                         //Roo.log(node);
47375                         pn.insertBefore(node, sn);
47376                         
47377                     }
47378                     pn.removeChild(sn);
47379                     var range = editorcore.createRange();
47380         
47381                     range.setStart(stn,0);
47382                     range.setEnd(en,0); //????
47383                     //range.selectNode(sel);
47384                     
47385                     
47386                     var selection = editorcore.getSelection();
47387                     selection.removeAllRanges();
47388                     selection.addRange(range);
47389                     
47390                     
47391                     
47392                     //_this.updateToolbar(null, null, pn);
47393                     _this.updateToolbar(null, null, null);
47394                     _this.footDisp.dom.innerHTML = ''; 
47395                 }
47396             }
47397             
47398                     
47399                 
47400             
47401         });
47402         
47403         
47404         tb.el.on('click', function(e){
47405             e.preventDefault(); // what does this do?
47406         });
47407         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47408         tb.el.hide();
47409         tb.name = nm;
47410         // dont need to disable them... as they will get hidden
47411         return tb;
47412          
47413         
47414     },
47415     buildFooter : function()
47416     {
47417         
47418         var fel = this.editor.wrap.createChild();
47419         this.footer = new Roo.Toolbar(fel);
47420         // toolbar has scrolly on left / right?
47421         var footDisp= new Roo.Toolbar.Fill();
47422         var _t = this;
47423         this.footer.add(
47424             {
47425                 text : '&lt;',
47426                 xtype: 'Button',
47427                 handler : function() {
47428                     _t.footDisp.scrollTo('left',0,true)
47429                 }
47430             }
47431         );
47432         this.footer.add( footDisp );
47433         this.footer.add( 
47434             {
47435                 text : '&gt;',
47436                 xtype: 'Button',
47437                 handler : function() {
47438                     // no animation..
47439                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47440                 }
47441             }
47442         );
47443         var fel = Roo.get(footDisp.el);
47444         fel.addClass('x-editor-context');
47445         this.footDispWrap = fel; 
47446         this.footDispWrap.overflow  = 'hidden';
47447         
47448         this.footDisp = fel.createChild();
47449         this.footDispWrap.on('click', this.onContextClick, this)
47450         
47451         
47452     },
47453     onContextClick : function (ev,dom)
47454     {
47455         ev.preventDefault();
47456         var  cn = dom.className;
47457         //Roo.log(cn);
47458         if (!cn.match(/x-ed-loc-/)) {
47459             return;
47460         }
47461         var n = cn.split('-').pop();
47462         var ans = this.footerEls;
47463         var sel = ans[n];
47464         
47465          // pick
47466         var range = this.editorcore.createRange();
47467         
47468         range.selectNodeContents(sel);
47469         //range.selectNode(sel);
47470         
47471         
47472         var selection = this.editorcore.getSelection();
47473         selection.removeAllRanges();
47474         selection.addRange(range);
47475         
47476         
47477         
47478         this.updateToolbar(null, null, sel);
47479         
47480         
47481     }
47482     
47483     
47484     
47485     
47486     
47487 });
47488
47489
47490
47491
47492
47493 /*
47494  * Based on:
47495  * Ext JS Library 1.1.1
47496  * Copyright(c) 2006-2007, Ext JS, LLC.
47497  *
47498  * Originally Released Under LGPL - original licence link has changed is not relivant.
47499  *
47500  * Fork - LGPL
47501  * <script type="text/javascript">
47502  */
47503  
47504 /**
47505  * @class Roo.form.BasicForm
47506  * @extends Roo.util.Observable
47507  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47508  * @constructor
47509  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47510  * @param {Object} config Configuration options
47511  */
47512 Roo.form.BasicForm = function(el, config){
47513     this.allItems = [];
47514     this.childForms = [];
47515     Roo.apply(this, config);
47516     /*
47517      * The Roo.form.Field items in this form.
47518      * @type MixedCollection
47519      */
47520      
47521      
47522     this.items = new Roo.util.MixedCollection(false, function(o){
47523         return o.id || (o.id = Roo.id());
47524     });
47525     this.addEvents({
47526         /**
47527          * @event beforeaction
47528          * Fires before any action is performed. Return false to cancel the action.
47529          * @param {Form} this
47530          * @param {Action} action The action to be performed
47531          */
47532         beforeaction: true,
47533         /**
47534          * @event actionfailed
47535          * Fires when an action fails.
47536          * @param {Form} this
47537          * @param {Action} action The action that failed
47538          */
47539         actionfailed : true,
47540         /**
47541          * @event actioncomplete
47542          * Fires when an action is completed.
47543          * @param {Form} this
47544          * @param {Action} action The action that completed
47545          */
47546         actioncomplete : true
47547     });
47548     if(el){
47549         this.initEl(el);
47550     }
47551     Roo.form.BasicForm.superclass.constructor.call(this);
47552     
47553     Roo.form.BasicForm.popover.apply();
47554 };
47555
47556 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47557     /**
47558      * @cfg {String} method
47559      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47560      */
47561     /**
47562      * @cfg {DataReader} reader
47563      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47564      * This is optional as there is built-in support for processing JSON.
47565      */
47566     /**
47567      * @cfg {DataReader} errorReader
47568      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47569      * This is completely optional as there is built-in support for processing JSON.
47570      */
47571     /**
47572      * @cfg {String} url
47573      * The URL to use for form actions if one isn't supplied in the action options.
47574      */
47575     /**
47576      * @cfg {Boolean} fileUpload
47577      * Set to true if this form is a file upload.
47578      */
47579      
47580     /**
47581      * @cfg {Object} baseParams
47582      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47583      */
47584      /**
47585      
47586     /**
47587      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47588      */
47589     timeout: 30,
47590
47591     // private
47592     activeAction : null,
47593
47594     /**
47595      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47596      * or setValues() data instead of when the form was first created.
47597      */
47598     trackResetOnLoad : false,
47599     
47600     
47601     /**
47602      * childForms - used for multi-tab forms
47603      * @type {Array}
47604      */
47605     childForms : false,
47606     
47607     /**
47608      * allItems - full list of fields.
47609      * @type {Array}
47610      */
47611     allItems : false,
47612     
47613     /**
47614      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47615      * element by passing it or its id or mask the form itself by passing in true.
47616      * @type Mixed
47617      */
47618     waitMsgTarget : false,
47619     
47620     /**
47621      * @type Boolean
47622      */
47623     disableMask : false,
47624     
47625     /**
47626      * @cfg {Boolean} errorMask (true|false) default false
47627      */
47628     errorMask : false,
47629     
47630     /**
47631      * @cfg {Number} maskOffset Default 100
47632      */
47633     maskOffset : 100,
47634
47635     // private
47636     initEl : function(el){
47637         this.el = Roo.get(el);
47638         this.id = this.el.id || Roo.id();
47639         this.el.on('submit', this.onSubmit, this);
47640         this.el.addClass('x-form');
47641     },
47642
47643     // private
47644     onSubmit : function(e){
47645         e.stopEvent();
47646     },
47647
47648     /**
47649      * Returns true if client-side validation on the form is successful.
47650      * @return Boolean
47651      */
47652     isValid : function(){
47653         var valid = true;
47654         var target = false;
47655         this.items.each(function(f){
47656             if(f.validate()){
47657                 return;
47658             }
47659             
47660             valid = false;
47661                 
47662             if(!target && f.el.isVisible(true)){
47663                 target = f;
47664             }
47665         });
47666         
47667         if(this.errorMask && !valid){
47668             Roo.form.BasicForm.popover.mask(this, target);
47669         }
47670         
47671         return valid;
47672     },
47673     /**
47674      * Returns array of invalid form fields.
47675      * @return Array
47676      */
47677     
47678     invalidFields : function()
47679     {
47680         var ret = [];
47681         this.items.each(function(f){
47682             if(f.validate()){
47683                 return;
47684             }
47685             ret.push(f);
47686             
47687         });
47688         
47689         return ret;
47690     },
47691     
47692     
47693     /**
47694      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47695      * @return Boolean
47696      */
47697     isDirty : function(){
47698         var dirty = false;
47699         this.items.each(function(f){
47700            if(f.isDirty()){
47701                dirty = true;
47702                return false;
47703            }
47704         });
47705         return dirty;
47706     },
47707     
47708     /**
47709      * Returns true if any fields in this form have changed since their original load. (New version)
47710      * @return Boolean
47711      */
47712     
47713     hasChanged : function()
47714     {
47715         var dirty = false;
47716         this.items.each(function(f){
47717            if(f.hasChanged()){
47718                dirty = true;
47719                return false;
47720            }
47721         });
47722         return dirty;
47723         
47724     },
47725     /**
47726      * Resets all hasChanged to 'false' -
47727      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47728      * So hasChanged storage is only to be used for this purpose
47729      * @return Boolean
47730      */
47731     resetHasChanged : function()
47732     {
47733         this.items.each(function(f){
47734            f.resetHasChanged();
47735         });
47736         
47737     },
47738     
47739     
47740     /**
47741      * Performs a predefined action (submit or load) or custom actions you define on this form.
47742      * @param {String} actionName The name of the action type
47743      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47744      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47745      * accept other config options):
47746      * <pre>
47747 Property          Type             Description
47748 ----------------  ---------------  ----------------------------------------------------------------------------------
47749 url               String           The url for the action (defaults to the form's url)
47750 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47751 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47752 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47753                                    validate the form on the client (defaults to false)
47754      * </pre>
47755      * @return {BasicForm} this
47756      */
47757     doAction : function(action, options){
47758         if(typeof action == 'string'){
47759             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47760         }
47761         if(this.fireEvent('beforeaction', this, action) !== false){
47762             this.beforeAction(action);
47763             action.run.defer(100, action);
47764         }
47765         return this;
47766     },
47767
47768     /**
47769      * Shortcut to do a submit action.
47770      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47771      * @return {BasicForm} this
47772      */
47773     submit : function(options){
47774         this.doAction('submit', options);
47775         return this;
47776     },
47777
47778     /**
47779      * Shortcut to do a load action.
47780      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47781      * @return {BasicForm} this
47782      */
47783     load : function(options){
47784         this.doAction('load', options);
47785         return this;
47786     },
47787
47788     /**
47789      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47790      * @param {Record} record The record to edit
47791      * @return {BasicForm} this
47792      */
47793     updateRecord : function(record){
47794         record.beginEdit();
47795         var fs = record.fields;
47796         fs.each(function(f){
47797             var field = this.findField(f.name);
47798             if(field){
47799                 record.set(f.name, field.getValue());
47800             }
47801         }, this);
47802         record.endEdit();
47803         return this;
47804     },
47805
47806     /**
47807      * Loads an Roo.data.Record into this form.
47808      * @param {Record} record The record to load
47809      * @return {BasicForm} this
47810      */
47811     loadRecord : function(record){
47812         this.setValues(record.data);
47813         return this;
47814     },
47815
47816     // private
47817     beforeAction : function(action){
47818         var o = action.options;
47819         
47820         if(!this.disableMask) {
47821             if(this.waitMsgTarget === true){
47822                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47823             }else if(this.waitMsgTarget){
47824                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47825                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47826             }else {
47827                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47828             }
47829         }
47830         
47831          
47832     },
47833
47834     // private
47835     afterAction : function(action, success){
47836         this.activeAction = null;
47837         var o = action.options;
47838         
47839         if(!this.disableMask) {
47840             if(this.waitMsgTarget === true){
47841                 this.el.unmask();
47842             }else if(this.waitMsgTarget){
47843                 this.waitMsgTarget.unmask();
47844             }else{
47845                 Roo.MessageBox.updateProgress(1);
47846                 Roo.MessageBox.hide();
47847             }
47848         }
47849         
47850         if(success){
47851             if(o.reset){
47852                 this.reset();
47853             }
47854             Roo.callback(o.success, o.scope, [this, action]);
47855             this.fireEvent('actioncomplete', this, action);
47856             
47857         }else{
47858             
47859             // failure condition..
47860             // we have a scenario where updates need confirming.
47861             // eg. if a locking scenario exists..
47862             // we look for { errors : { needs_confirm : true }} in the response.
47863             if (
47864                 (typeof(action.result) != 'undefined')  &&
47865                 (typeof(action.result.errors) != 'undefined')  &&
47866                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47867            ){
47868                 var _t = this;
47869                 Roo.MessageBox.confirm(
47870                     "Change requires confirmation",
47871                     action.result.errorMsg,
47872                     function(r) {
47873                         if (r != 'yes') {
47874                             return;
47875                         }
47876                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47877                     }
47878                     
47879                 );
47880                 
47881                 
47882                 
47883                 return;
47884             }
47885             
47886             Roo.callback(o.failure, o.scope, [this, action]);
47887             // show an error message if no failed handler is set..
47888             if (!this.hasListener('actionfailed')) {
47889                 Roo.MessageBox.alert("Error",
47890                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47891                         action.result.errorMsg :
47892                         "Saving Failed, please check your entries or try again"
47893                 );
47894             }
47895             
47896             this.fireEvent('actionfailed', this, action);
47897         }
47898         
47899     },
47900
47901     /**
47902      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47903      * @param {String} id The value to search for
47904      * @return Field
47905      */
47906     findField : function(id){
47907         var field = this.items.get(id);
47908         if(!field){
47909             this.items.each(function(f){
47910                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47911                     field = f;
47912                     return false;
47913                 }
47914             });
47915         }
47916         return field || null;
47917     },
47918
47919     /**
47920      * Add a secondary form to this one, 
47921      * Used to provide tabbed forms. One form is primary, with hidden values 
47922      * which mirror the elements from the other forms.
47923      * 
47924      * @param {Roo.form.Form} form to add.
47925      * 
47926      */
47927     addForm : function(form)
47928     {
47929        
47930         if (this.childForms.indexOf(form) > -1) {
47931             // already added..
47932             return;
47933         }
47934         this.childForms.push(form);
47935         var n = '';
47936         Roo.each(form.allItems, function (fe) {
47937             
47938             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47939             if (this.findField(n)) { // already added..
47940                 return;
47941             }
47942             var add = new Roo.form.Hidden({
47943                 name : n
47944             });
47945             add.render(this.el);
47946             
47947             this.add( add );
47948         }, this);
47949         
47950     },
47951     /**
47952      * Mark fields in this form invalid in bulk.
47953      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47954      * @return {BasicForm} this
47955      */
47956     markInvalid : function(errors){
47957         if(errors instanceof Array){
47958             for(var i = 0, len = errors.length; i < len; i++){
47959                 var fieldError = errors[i];
47960                 var f = this.findField(fieldError.id);
47961                 if(f){
47962                     f.markInvalid(fieldError.msg);
47963                 }
47964             }
47965         }else{
47966             var field, id;
47967             for(id in errors){
47968                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47969                     field.markInvalid(errors[id]);
47970                 }
47971             }
47972         }
47973         Roo.each(this.childForms || [], function (f) {
47974             f.markInvalid(errors);
47975         });
47976         
47977         return this;
47978     },
47979
47980     /**
47981      * Set values for fields in this form in bulk.
47982      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
47983      * @return {BasicForm} this
47984      */
47985     setValues : function(values){
47986         if(values instanceof Array){ // array of objects
47987             for(var i = 0, len = values.length; i < len; i++){
47988                 var v = values[i];
47989                 var f = this.findField(v.id);
47990                 if(f){
47991                     f.setValue(v.value);
47992                     if(this.trackResetOnLoad){
47993                         f.originalValue = f.getValue();
47994                     }
47995                 }
47996             }
47997         }else{ // object hash
47998             var field, id;
47999             for(id in values){
48000                 if(typeof values[id] != 'function' && (field = this.findField(id))){
48001                     
48002                     if (field.setFromData && 
48003                         field.valueField && 
48004                         field.displayField &&
48005                         // combos' with local stores can 
48006                         // be queried via setValue()
48007                         // to set their value..
48008                         (field.store && !field.store.isLocal)
48009                         ) {
48010                         // it's a combo
48011                         var sd = { };
48012                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
48013                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
48014                         field.setFromData(sd);
48015                         
48016                     } else {
48017                         field.setValue(values[id]);
48018                     }
48019                     
48020                     
48021                     if(this.trackResetOnLoad){
48022                         field.originalValue = field.getValue();
48023                     }
48024                 }
48025             }
48026         }
48027         this.resetHasChanged();
48028         
48029         
48030         Roo.each(this.childForms || [], function (f) {
48031             f.setValues(values);
48032             f.resetHasChanged();
48033         });
48034                 
48035         return this;
48036     },
48037  
48038     /**
48039      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
48040      * they are returned as an array.
48041      * @param {Boolean} asString
48042      * @return {Object}
48043      */
48044     getValues : function(asString){
48045         if (this.childForms) {
48046             // copy values from the child forms
48047             Roo.each(this.childForms, function (f) {
48048                 this.setValues(f.getValues());
48049             }, this);
48050         }
48051         
48052         // use formdata
48053         if (typeof(FormData) != 'undefined' && asString !== true) {
48054             // this relies on a 'recent' version of chrome apparently...
48055             try {
48056                 var fd = (new FormData(this.el.dom)).entries();
48057                 var ret = {};
48058                 var ent = fd.next();
48059                 while (!ent.done) {
48060                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
48061                     ent = fd.next();
48062                 };
48063                 return ret;
48064             } catch(e) {
48065                 
48066             }
48067             
48068         }
48069         
48070         
48071         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48072         if(asString === true){
48073             return fs;
48074         }
48075         return Roo.urlDecode(fs);
48076     },
48077     
48078     /**
48079      * Returns the fields in this form as an object with key/value pairs. 
48080      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48081      * @return {Object}
48082      */
48083     getFieldValues : function(with_hidden)
48084     {
48085         if (this.childForms) {
48086             // copy values from the child forms
48087             // should this call getFieldValues - probably not as we do not currently copy
48088             // hidden fields when we generate..
48089             Roo.each(this.childForms, function (f) {
48090                 this.setValues(f.getValues());
48091             }, this);
48092         }
48093         
48094         var ret = {};
48095         this.items.each(function(f){
48096             if (!f.getName()) {
48097                 return;
48098             }
48099             var v = f.getValue();
48100             if (f.inputType =='radio') {
48101                 if (typeof(ret[f.getName()]) == 'undefined') {
48102                     ret[f.getName()] = ''; // empty..
48103                 }
48104                 
48105                 if (!f.el.dom.checked) {
48106                     return;
48107                     
48108                 }
48109                 v = f.el.dom.value;
48110                 
48111             }
48112             
48113             // not sure if this supported any more..
48114             if ((typeof(v) == 'object') && f.getRawValue) {
48115                 v = f.getRawValue() ; // dates..
48116             }
48117             // combo boxes where name != hiddenName...
48118             if (f.name != f.getName()) {
48119                 ret[f.name] = f.getRawValue();
48120             }
48121             ret[f.getName()] = v;
48122         });
48123         
48124         return ret;
48125     },
48126
48127     /**
48128      * Clears all invalid messages in this form.
48129      * @return {BasicForm} this
48130      */
48131     clearInvalid : function(){
48132         this.items.each(function(f){
48133            f.clearInvalid();
48134         });
48135         
48136         Roo.each(this.childForms || [], function (f) {
48137             f.clearInvalid();
48138         });
48139         
48140         
48141         return this;
48142     },
48143
48144     /**
48145      * Resets this form.
48146      * @return {BasicForm} this
48147      */
48148     reset : function(){
48149         this.items.each(function(f){
48150             f.reset();
48151         });
48152         
48153         Roo.each(this.childForms || [], function (f) {
48154             f.reset();
48155         });
48156         this.resetHasChanged();
48157         
48158         return this;
48159     },
48160
48161     /**
48162      * Add Roo.form components to this form.
48163      * @param {Field} field1
48164      * @param {Field} field2 (optional)
48165      * @param {Field} etc (optional)
48166      * @return {BasicForm} this
48167      */
48168     add : function(){
48169         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48170         return this;
48171     },
48172
48173
48174     /**
48175      * Removes a field from the items collection (does NOT remove its markup).
48176      * @param {Field} field
48177      * @return {BasicForm} this
48178      */
48179     remove : function(field){
48180         this.items.remove(field);
48181         return this;
48182     },
48183
48184     /**
48185      * Looks at the fields in this form, checks them for an id attribute,
48186      * and calls applyTo on the existing dom element with that id.
48187      * @return {BasicForm} this
48188      */
48189     render : function(){
48190         this.items.each(function(f){
48191             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48192                 f.applyTo(f.id);
48193             }
48194         });
48195         return this;
48196     },
48197
48198     /**
48199      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48200      * @param {Object} values
48201      * @return {BasicForm} this
48202      */
48203     applyToFields : function(o){
48204         this.items.each(function(f){
48205            Roo.apply(f, o);
48206         });
48207         return this;
48208     },
48209
48210     /**
48211      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48212      * @param {Object} values
48213      * @return {BasicForm} this
48214      */
48215     applyIfToFields : function(o){
48216         this.items.each(function(f){
48217            Roo.applyIf(f, o);
48218         });
48219         return this;
48220     }
48221 });
48222
48223 // back compat
48224 Roo.BasicForm = Roo.form.BasicForm;
48225
48226 Roo.apply(Roo.form.BasicForm, {
48227     
48228     popover : {
48229         
48230         padding : 5,
48231         
48232         isApplied : false,
48233         
48234         isMasked : false,
48235         
48236         form : false,
48237         
48238         target : false,
48239         
48240         intervalID : false,
48241         
48242         maskEl : false,
48243         
48244         apply : function()
48245         {
48246             if(this.isApplied){
48247                 return;
48248             }
48249             
48250             this.maskEl = {
48251                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48252                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48253                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48254                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48255             };
48256             
48257             this.maskEl.top.enableDisplayMode("block");
48258             this.maskEl.left.enableDisplayMode("block");
48259             this.maskEl.bottom.enableDisplayMode("block");
48260             this.maskEl.right.enableDisplayMode("block");
48261             
48262             Roo.get(document.body).on('click', function(){
48263                 this.unmask();
48264             }, this);
48265             
48266             Roo.get(document.body).on('touchstart', function(){
48267                 this.unmask();
48268             }, this);
48269             
48270             this.isApplied = true
48271         },
48272         
48273         mask : function(form, target)
48274         {
48275             this.form = form;
48276             
48277             this.target = target;
48278             
48279             if(!this.form.errorMask || !target.el){
48280                 return;
48281             }
48282             
48283             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48284             
48285             var ot = this.target.el.calcOffsetsTo(scrollable);
48286             
48287             var scrollTo = ot[1] - this.form.maskOffset;
48288             
48289             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48290             
48291             scrollable.scrollTo('top', scrollTo);
48292             
48293             var el = this.target.wrap || this.target.el;
48294             
48295             var box = el.getBox();
48296             
48297             this.maskEl.top.setStyle('position', 'absolute');
48298             this.maskEl.top.setStyle('z-index', 10000);
48299             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48300             this.maskEl.top.setLeft(0);
48301             this.maskEl.top.setTop(0);
48302             this.maskEl.top.show();
48303             
48304             this.maskEl.left.setStyle('position', 'absolute');
48305             this.maskEl.left.setStyle('z-index', 10000);
48306             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48307             this.maskEl.left.setLeft(0);
48308             this.maskEl.left.setTop(box.y - this.padding);
48309             this.maskEl.left.show();
48310
48311             this.maskEl.bottom.setStyle('position', 'absolute');
48312             this.maskEl.bottom.setStyle('z-index', 10000);
48313             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48314             this.maskEl.bottom.setLeft(0);
48315             this.maskEl.bottom.setTop(box.bottom + this.padding);
48316             this.maskEl.bottom.show();
48317
48318             this.maskEl.right.setStyle('position', 'absolute');
48319             this.maskEl.right.setStyle('z-index', 10000);
48320             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48321             this.maskEl.right.setLeft(box.right + this.padding);
48322             this.maskEl.right.setTop(box.y - this.padding);
48323             this.maskEl.right.show();
48324
48325             this.intervalID = window.setInterval(function() {
48326                 Roo.form.BasicForm.popover.unmask();
48327             }, 10000);
48328
48329             window.onwheel = function(){ return false;};
48330             
48331             (function(){ this.isMasked = true; }).defer(500, this);
48332             
48333         },
48334         
48335         unmask : function()
48336         {
48337             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48338                 return;
48339             }
48340             
48341             this.maskEl.top.setStyle('position', 'absolute');
48342             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48343             this.maskEl.top.hide();
48344
48345             this.maskEl.left.setStyle('position', 'absolute');
48346             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48347             this.maskEl.left.hide();
48348
48349             this.maskEl.bottom.setStyle('position', 'absolute');
48350             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48351             this.maskEl.bottom.hide();
48352
48353             this.maskEl.right.setStyle('position', 'absolute');
48354             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48355             this.maskEl.right.hide();
48356             
48357             window.onwheel = function(){ return true;};
48358             
48359             if(this.intervalID){
48360                 window.clearInterval(this.intervalID);
48361                 this.intervalID = false;
48362             }
48363             
48364             this.isMasked = false;
48365             
48366         }
48367         
48368     }
48369     
48370 });/*
48371  * Based on:
48372  * Ext JS Library 1.1.1
48373  * Copyright(c) 2006-2007, Ext JS, LLC.
48374  *
48375  * Originally Released Under LGPL - original licence link has changed is not relivant.
48376  *
48377  * Fork - LGPL
48378  * <script type="text/javascript">
48379  */
48380
48381 /**
48382  * @class Roo.form.Form
48383  * @extends Roo.form.BasicForm
48384  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48385  * @constructor
48386  * @param {Object} config Configuration options
48387  */
48388 Roo.form.Form = function(config){
48389     var xitems =  [];
48390     if (config.items) {
48391         xitems = config.items;
48392         delete config.items;
48393     }
48394    
48395     
48396     Roo.form.Form.superclass.constructor.call(this, null, config);
48397     this.url = this.url || this.action;
48398     if(!this.root){
48399         this.root = new Roo.form.Layout(Roo.applyIf({
48400             id: Roo.id()
48401         }, config));
48402     }
48403     this.active = this.root;
48404     /**
48405      * Array of all the buttons that have been added to this form via {@link addButton}
48406      * @type Array
48407      */
48408     this.buttons = [];
48409     this.allItems = [];
48410     this.addEvents({
48411         /**
48412          * @event clientvalidation
48413          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48414          * @param {Form} this
48415          * @param {Boolean} valid true if the form has passed client-side validation
48416          */
48417         clientvalidation: true,
48418         /**
48419          * @event rendered
48420          * Fires when the form is rendered
48421          * @param {Roo.form.Form} form
48422          */
48423         rendered : true
48424     });
48425     
48426     if (this.progressUrl) {
48427             // push a hidden field onto the list of fields..
48428             this.addxtype( {
48429                     xns: Roo.form, 
48430                     xtype : 'Hidden', 
48431                     name : 'UPLOAD_IDENTIFIER' 
48432             });
48433         }
48434         
48435     
48436     Roo.each(xitems, this.addxtype, this);
48437     
48438 };
48439
48440 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48441     /**
48442      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48443      */
48444     /**
48445      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48446      */
48447     /**
48448      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48449      */
48450     buttonAlign:'center',
48451
48452     /**
48453      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48454      */
48455     minButtonWidth:75,
48456
48457     /**
48458      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48459      * This property cascades to child containers if not set.
48460      */
48461     labelAlign:'left',
48462
48463     /**
48464      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48465      * fires a looping event with that state. This is required to bind buttons to the valid
48466      * state using the config value formBind:true on the button.
48467      */
48468     monitorValid : false,
48469
48470     /**
48471      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48472      */
48473     monitorPoll : 200,
48474     
48475     /**
48476      * @cfg {String} progressUrl - Url to return progress data 
48477      */
48478     
48479     progressUrl : false,
48480     /**
48481      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48482      * sending a formdata with extra parameters - eg uploaded elements.
48483      */
48484     
48485     formData : false,
48486     
48487     /**
48488      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48489      * fields are added and the column is closed. If no fields are passed the column remains open
48490      * until end() is called.
48491      * @param {Object} config The config to pass to the column
48492      * @param {Field} field1 (optional)
48493      * @param {Field} field2 (optional)
48494      * @param {Field} etc (optional)
48495      * @return Column The column container object
48496      */
48497     column : function(c){
48498         var col = new Roo.form.Column(c);
48499         this.start(col);
48500         if(arguments.length > 1){ // duplicate code required because of Opera
48501             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48502             this.end();
48503         }
48504         return col;
48505     },
48506
48507     /**
48508      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48509      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48510      * until end() is called.
48511      * @param {Object} config The config to pass to the fieldset
48512      * @param {Field} field1 (optional)
48513      * @param {Field} field2 (optional)
48514      * @param {Field} etc (optional)
48515      * @return FieldSet The fieldset container object
48516      */
48517     fieldset : function(c){
48518         var fs = new Roo.form.FieldSet(c);
48519         this.start(fs);
48520         if(arguments.length > 1){ // duplicate code required because of Opera
48521             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48522             this.end();
48523         }
48524         return fs;
48525     },
48526
48527     /**
48528      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48529      * fields are added and the container is closed. If no fields are passed the container remains open
48530      * until end() is called.
48531      * @param {Object} config The config to pass to the Layout
48532      * @param {Field} field1 (optional)
48533      * @param {Field} field2 (optional)
48534      * @param {Field} etc (optional)
48535      * @return Layout The container object
48536      */
48537     container : function(c){
48538         var l = new Roo.form.Layout(c);
48539         this.start(l);
48540         if(arguments.length > 1){ // duplicate code required because of Opera
48541             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48542             this.end();
48543         }
48544         return l;
48545     },
48546
48547     /**
48548      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48549      * @param {Object} container A Roo.form.Layout or subclass of Layout
48550      * @return {Form} this
48551      */
48552     start : function(c){
48553         // cascade label info
48554         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48555         this.active.stack.push(c);
48556         c.ownerCt = this.active;
48557         this.active = c;
48558         return this;
48559     },
48560
48561     /**
48562      * Closes the current open container
48563      * @return {Form} this
48564      */
48565     end : function(){
48566         if(this.active == this.root){
48567             return this;
48568         }
48569         this.active = this.active.ownerCt;
48570         return this;
48571     },
48572
48573     /**
48574      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48575      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48576      * as the label of the field.
48577      * @param {Field} field1
48578      * @param {Field} field2 (optional)
48579      * @param {Field} etc. (optional)
48580      * @return {Form} this
48581      */
48582     add : function(){
48583         this.active.stack.push.apply(this.active.stack, arguments);
48584         this.allItems.push.apply(this.allItems,arguments);
48585         var r = [];
48586         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48587             if(a[i].isFormField){
48588                 r.push(a[i]);
48589             }
48590         }
48591         if(r.length > 0){
48592             Roo.form.Form.superclass.add.apply(this, r);
48593         }
48594         return this;
48595     },
48596     
48597
48598     
48599     
48600     
48601      /**
48602      * Find any element that has been added to a form, using it's ID or name
48603      * This can include framesets, columns etc. along with regular fields..
48604      * @param {String} id - id or name to find.
48605      
48606      * @return {Element} e - or false if nothing found.
48607      */
48608     findbyId : function(id)
48609     {
48610         var ret = false;
48611         if (!id) {
48612             return ret;
48613         }
48614         Roo.each(this.allItems, function(f){
48615             if (f.id == id || f.name == id ){
48616                 ret = f;
48617                 return false;
48618             }
48619         });
48620         return ret;
48621     },
48622
48623     
48624     
48625     /**
48626      * Render this form into the passed container. This should only be called once!
48627      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48628      * @return {Form} this
48629      */
48630     render : function(ct)
48631     {
48632         
48633         
48634         
48635         ct = Roo.get(ct);
48636         var o = this.autoCreate || {
48637             tag: 'form',
48638             method : this.method || 'POST',
48639             id : this.id || Roo.id()
48640         };
48641         this.initEl(ct.createChild(o));
48642
48643         this.root.render(this.el);
48644         
48645        
48646              
48647         this.items.each(function(f){
48648             f.render('x-form-el-'+f.id);
48649         });
48650
48651         if(this.buttons.length > 0){
48652             // tables are required to maintain order and for correct IE layout
48653             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48654                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48655                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48656             }}, null, true);
48657             var tr = tb.getElementsByTagName('tr')[0];
48658             for(var i = 0, len = this.buttons.length; i < len; i++) {
48659                 var b = this.buttons[i];
48660                 var td = document.createElement('td');
48661                 td.className = 'x-form-btn-td';
48662                 b.render(tr.appendChild(td));
48663             }
48664         }
48665         if(this.monitorValid){ // initialize after render
48666             this.startMonitoring();
48667         }
48668         this.fireEvent('rendered', this);
48669         return this;
48670     },
48671
48672     /**
48673      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48674      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48675      * object or a valid Roo.DomHelper element config
48676      * @param {Function} handler The function called when the button is clicked
48677      * @param {Object} scope (optional) The scope of the handler function
48678      * @return {Roo.Button}
48679      */
48680     addButton : function(config, handler, scope){
48681         var bc = {
48682             handler: handler,
48683             scope: scope,
48684             minWidth: this.minButtonWidth,
48685             hideParent:true
48686         };
48687         if(typeof config == "string"){
48688             bc.text = config;
48689         }else{
48690             Roo.apply(bc, config);
48691         }
48692         var btn = new Roo.Button(null, bc);
48693         this.buttons.push(btn);
48694         return btn;
48695     },
48696
48697      /**
48698      * Adds a series of form elements (using the xtype property as the factory method.
48699      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48700      * @param {Object} config 
48701      */
48702     
48703     addxtype : function()
48704     {
48705         var ar = Array.prototype.slice.call(arguments, 0);
48706         var ret = false;
48707         for(var i = 0; i < ar.length; i++) {
48708             if (!ar[i]) {
48709                 continue; // skip -- if this happends something invalid got sent, we 
48710                 // should ignore it, as basically that interface element will not show up
48711                 // and that should be pretty obvious!!
48712             }
48713             
48714             if (Roo.form[ar[i].xtype]) {
48715                 ar[i].form = this;
48716                 var fe = Roo.factory(ar[i], Roo.form);
48717                 if (!ret) {
48718                     ret = fe;
48719                 }
48720                 fe.form = this;
48721                 if (fe.store) {
48722                     fe.store.form = this;
48723                 }
48724                 if (fe.isLayout) {  
48725                          
48726                     this.start(fe);
48727                     this.allItems.push(fe);
48728                     if (fe.items && fe.addxtype) {
48729                         fe.addxtype.apply(fe, fe.items);
48730                         delete fe.items;
48731                     }
48732                      this.end();
48733                     continue;
48734                 }
48735                 
48736                 
48737                  
48738                 this.add(fe);
48739               //  console.log('adding ' + ar[i].xtype);
48740             }
48741             if (ar[i].xtype == 'Button') {  
48742                 //console.log('adding button');
48743                 //console.log(ar[i]);
48744                 this.addButton(ar[i]);
48745                 this.allItems.push(fe);
48746                 continue;
48747             }
48748             
48749             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48750                 alert('end is not supported on xtype any more, use items');
48751             //    this.end();
48752             //    //console.log('adding end');
48753             }
48754             
48755         }
48756         return ret;
48757     },
48758     
48759     /**
48760      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48761      * option "monitorValid"
48762      */
48763     startMonitoring : function(){
48764         if(!this.bound){
48765             this.bound = true;
48766             Roo.TaskMgr.start({
48767                 run : this.bindHandler,
48768                 interval : this.monitorPoll || 200,
48769                 scope: this
48770             });
48771         }
48772     },
48773
48774     /**
48775      * Stops monitoring of the valid state of this form
48776      */
48777     stopMonitoring : function(){
48778         this.bound = false;
48779     },
48780
48781     // private
48782     bindHandler : function(){
48783         if(!this.bound){
48784             return false; // stops binding
48785         }
48786         var valid = true;
48787         this.items.each(function(f){
48788             if(!f.isValid(true)){
48789                 valid = false;
48790                 return false;
48791             }
48792         });
48793         for(var i = 0, len = this.buttons.length; i < len; i++){
48794             var btn = this.buttons[i];
48795             if(btn.formBind === true && btn.disabled === valid){
48796                 btn.setDisabled(!valid);
48797             }
48798         }
48799         this.fireEvent('clientvalidation', this, valid);
48800     }
48801     
48802     
48803     
48804     
48805     
48806     
48807     
48808     
48809 });
48810
48811
48812 // back compat
48813 Roo.Form = Roo.form.Form;
48814 /*
48815  * Based on:
48816  * Ext JS Library 1.1.1
48817  * Copyright(c) 2006-2007, Ext JS, LLC.
48818  *
48819  * Originally Released Under LGPL - original licence link has changed is not relivant.
48820  *
48821  * Fork - LGPL
48822  * <script type="text/javascript">
48823  */
48824
48825 // as we use this in bootstrap.
48826 Roo.namespace('Roo.form');
48827  /**
48828  * @class Roo.form.Action
48829  * Internal Class used to handle form actions
48830  * @constructor
48831  * @param {Roo.form.BasicForm} el The form element or its id
48832  * @param {Object} config Configuration options
48833  */
48834
48835  
48836  
48837 // define the action interface
48838 Roo.form.Action = function(form, options){
48839     this.form = form;
48840     this.options = options || {};
48841 };
48842 /**
48843  * Client Validation Failed
48844  * @const 
48845  */
48846 Roo.form.Action.CLIENT_INVALID = 'client';
48847 /**
48848  * Server Validation Failed
48849  * @const 
48850  */
48851 Roo.form.Action.SERVER_INVALID = 'server';
48852  /**
48853  * Connect to Server Failed
48854  * @const 
48855  */
48856 Roo.form.Action.CONNECT_FAILURE = 'connect';
48857 /**
48858  * Reading Data from Server Failed
48859  * @const 
48860  */
48861 Roo.form.Action.LOAD_FAILURE = 'load';
48862
48863 Roo.form.Action.prototype = {
48864     type : 'default',
48865     failureType : undefined,
48866     response : undefined,
48867     result : undefined,
48868
48869     // interface method
48870     run : function(options){
48871
48872     },
48873
48874     // interface method
48875     success : function(response){
48876
48877     },
48878
48879     // interface method
48880     handleResponse : function(response){
48881
48882     },
48883
48884     // default connection failure
48885     failure : function(response){
48886         
48887         this.response = response;
48888         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48889         this.form.afterAction(this, false);
48890     },
48891
48892     processResponse : function(response){
48893         this.response = response;
48894         if(!response.responseText){
48895             return true;
48896         }
48897         this.result = this.handleResponse(response);
48898         return this.result;
48899     },
48900
48901     // utility functions used internally
48902     getUrl : function(appendParams){
48903         var url = this.options.url || this.form.url || this.form.el.dom.action;
48904         if(appendParams){
48905             var p = this.getParams();
48906             if(p){
48907                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48908             }
48909         }
48910         return url;
48911     },
48912
48913     getMethod : function(){
48914         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48915     },
48916
48917     getParams : function(){
48918         var bp = this.form.baseParams;
48919         var p = this.options.params;
48920         if(p){
48921             if(typeof p == "object"){
48922                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48923             }else if(typeof p == 'string' && bp){
48924                 p += '&' + Roo.urlEncode(bp);
48925             }
48926         }else if(bp){
48927             p = Roo.urlEncode(bp);
48928         }
48929         return p;
48930     },
48931
48932     createCallback : function(){
48933         return {
48934             success: this.success,
48935             failure: this.failure,
48936             scope: this,
48937             timeout: (this.form.timeout*1000),
48938             upload: this.form.fileUpload ? this.success : undefined
48939         };
48940     }
48941 };
48942
48943 Roo.form.Action.Submit = function(form, options){
48944     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48945 };
48946
48947 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48948     type : 'submit',
48949
48950     haveProgress : false,
48951     uploadComplete : false,
48952     
48953     // uploadProgress indicator.
48954     uploadProgress : function()
48955     {
48956         if (!this.form.progressUrl) {
48957             return;
48958         }
48959         
48960         if (!this.haveProgress) {
48961             Roo.MessageBox.progress("Uploading", "Uploading");
48962         }
48963         if (this.uploadComplete) {
48964            Roo.MessageBox.hide();
48965            return;
48966         }
48967         
48968         this.haveProgress = true;
48969    
48970         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
48971         
48972         var c = new Roo.data.Connection();
48973         c.request({
48974             url : this.form.progressUrl,
48975             params: {
48976                 id : uid
48977             },
48978             method: 'GET',
48979             success : function(req){
48980                //console.log(data);
48981                 var rdata = false;
48982                 var edata;
48983                 try  {
48984                    rdata = Roo.decode(req.responseText)
48985                 } catch (e) {
48986                     Roo.log("Invalid data from server..");
48987                     Roo.log(edata);
48988                     return;
48989                 }
48990                 if (!rdata || !rdata.success) {
48991                     Roo.log(rdata);
48992                     Roo.MessageBox.alert(Roo.encode(rdata));
48993                     return;
48994                 }
48995                 var data = rdata.data;
48996                 
48997                 if (this.uploadComplete) {
48998                    Roo.MessageBox.hide();
48999                    return;
49000                 }
49001                    
49002                 if (data){
49003                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
49004                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
49005                     );
49006                 }
49007                 this.uploadProgress.defer(2000,this);
49008             },
49009        
49010             failure: function(data) {
49011                 Roo.log('progress url failed ');
49012                 Roo.log(data);
49013             },
49014             scope : this
49015         });
49016            
49017     },
49018     
49019     
49020     run : function()
49021     {
49022         // run get Values on the form, so it syncs any secondary forms.
49023         this.form.getValues();
49024         
49025         var o = this.options;
49026         var method = this.getMethod();
49027         var isPost = method == 'POST';
49028         if(o.clientValidation === false || this.form.isValid()){
49029             
49030             if (this.form.progressUrl) {
49031                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
49032                     (new Date() * 1) + '' + Math.random());
49033                     
49034             } 
49035             
49036             
49037             Roo.Ajax.request(Roo.apply(this.createCallback(), {
49038                 form:this.form.el.dom,
49039                 url:this.getUrl(!isPost),
49040                 method: method,
49041                 params:isPost ? this.getParams() : null,
49042                 isUpload: this.form.fileUpload,
49043                 formData : this.form.formData
49044             }));
49045             
49046             this.uploadProgress();
49047
49048         }else if (o.clientValidation !== false){ // client validation failed
49049             this.failureType = Roo.form.Action.CLIENT_INVALID;
49050             this.form.afterAction(this, false);
49051         }
49052     },
49053
49054     success : function(response)
49055     {
49056         this.uploadComplete= true;
49057         if (this.haveProgress) {
49058             Roo.MessageBox.hide();
49059         }
49060         
49061         
49062         var result = this.processResponse(response);
49063         if(result === true || result.success){
49064             this.form.afterAction(this, true);
49065             return;
49066         }
49067         if(result.errors){
49068             this.form.markInvalid(result.errors);
49069             this.failureType = Roo.form.Action.SERVER_INVALID;
49070         }
49071         this.form.afterAction(this, false);
49072     },
49073     failure : function(response)
49074     {
49075         this.uploadComplete= true;
49076         if (this.haveProgress) {
49077             Roo.MessageBox.hide();
49078         }
49079         
49080         this.response = response;
49081         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49082         this.form.afterAction(this, false);
49083     },
49084     
49085     handleResponse : function(response){
49086         if(this.form.errorReader){
49087             var rs = this.form.errorReader.read(response);
49088             var errors = [];
49089             if(rs.records){
49090                 for(var i = 0, len = rs.records.length; i < len; i++) {
49091                     var r = rs.records[i];
49092                     errors[i] = r.data;
49093                 }
49094             }
49095             if(errors.length < 1){
49096                 errors = null;
49097             }
49098             return {
49099                 success : rs.success,
49100                 errors : errors
49101             };
49102         }
49103         var ret = false;
49104         try {
49105             ret = Roo.decode(response.responseText);
49106         } catch (e) {
49107             ret = {
49108                 success: false,
49109                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49110                 errors : []
49111             };
49112         }
49113         return ret;
49114         
49115     }
49116 });
49117
49118
49119 Roo.form.Action.Load = function(form, options){
49120     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49121     this.reader = this.form.reader;
49122 };
49123
49124 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49125     type : 'load',
49126
49127     run : function(){
49128         
49129         Roo.Ajax.request(Roo.apply(
49130                 this.createCallback(), {
49131                     method:this.getMethod(),
49132                     url:this.getUrl(false),
49133                     params:this.getParams()
49134         }));
49135     },
49136
49137     success : function(response){
49138         
49139         var result = this.processResponse(response);
49140         if(result === true || !result.success || !result.data){
49141             this.failureType = Roo.form.Action.LOAD_FAILURE;
49142             this.form.afterAction(this, false);
49143             return;
49144         }
49145         this.form.clearInvalid();
49146         this.form.setValues(result.data);
49147         this.form.afterAction(this, true);
49148     },
49149
49150     handleResponse : function(response){
49151         if(this.form.reader){
49152             var rs = this.form.reader.read(response);
49153             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49154             return {
49155                 success : rs.success,
49156                 data : data
49157             };
49158         }
49159         return Roo.decode(response.responseText);
49160     }
49161 });
49162
49163 Roo.form.Action.ACTION_TYPES = {
49164     'load' : Roo.form.Action.Load,
49165     'submit' : Roo.form.Action.Submit
49166 };/*
49167  * Based on:
49168  * Ext JS Library 1.1.1
49169  * Copyright(c) 2006-2007, Ext JS, LLC.
49170  *
49171  * Originally Released Under LGPL - original licence link has changed is not relivant.
49172  *
49173  * Fork - LGPL
49174  * <script type="text/javascript">
49175  */
49176  
49177 /**
49178  * @class Roo.form.Layout
49179  * @extends Roo.Component
49180  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49181  * @constructor
49182  * @param {Object} config Configuration options
49183  */
49184 Roo.form.Layout = function(config){
49185     var xitems = [];
49186     if (config.items) {
49187         xitems = config.items;
49188         delete config.items;
49189     }
49190     Roo.form.Layout.superclass.constructor.call(this, config);
49191     this.stack = [];
49192     Roo.each(xitems, this.addxtype, this);
49193      
49194 };
49195
49196 Roo.extend(Roo.form.Layout, Roo.Component, {
49197     /**
49198      * @cfg {String/Object} autoCreate
49199      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49200      */
49201     /**
49202      * @cfg {String/Object/Function} style
49203      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49204      * a function which returns such a specification.
49205      */
49206     /**
49207      * @cfg {String} labelAlign
49208      * Valid values are "left," "top" and "right" (defaults to "left")
49209      */
49210     /**
49211      * @cfg {Number} labelWidth
49212      * Fixed width in pixels of all field labels (defaults to undefined)
49213      */
49214     /**
49215      * @cfg {Boolean} clear
49216      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49217      */
49218     clear : true,
49219     /**
49220      * @cfg {String} labelSeparator
49221      * The separator to use after field labels (defaults to ':')
49222      */
49223     labelSeparator : ':',
49224     /**
49225      * @cfg {Boolean} hideLabels
49226      * True to suppress the display of field labels in this layout (defaults to false)
49227      */
49228     hideLabels : false,
49229
49230     // private
49231     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49232     
49233     isLayout : true,
49234     
49235     // private
49236     onRender : function(ct, position){
49237         if(this.el){ // from markup
49238             this.el = Roo.get(this.el);
49239         }else {  // generate
49240             var cfg = this.getAutoCreate();
49241             this.el = ct.createChild(cfg, position);
49242         }
49243         if(this.style){
49244             this.el.applyStyles(this.style);
49245         }
49246         if(this.labelAlign){
49247             this.el.addClass('x-form-label-'+this.labelAlign);
49248         }
49249         if(this.hideLabels){
49250             this.labelStyle = "display:none";
49251             this.elementStyle = "padding-left:0;";
49252         }else{
49253             if(typeof this.labelWidth == 'number'){
49254                 this.labelStyle = "width:"+this.labelWidth+"px;";
49255                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49256             }
49257             if(this.labelAlign == 'top'){
49258                 this.labelStyle = "width:auto;";
49259                 this.elementStyle = "padding-left:0;";
49260             }
49261         }
49262         var stack = this.stack;
49263         var slen = stack.length;
49264         if(slen > 0){
49265             if(!this.fieldTpl){
49266                 var t = new Roo.Template(
49267                     '<div class="x-form-item {5}">',
49268                         '<label for="{0}" style="{2}">{1}{4}</label>',
49269                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49270                         '</div>',
49271                     '</div><div class="x-form-clear-left"></div>'
49272                 );
49273                 t.disableFormats = true;
49274                 t.compile();
49275                 Roo.form.Layout.prototype.fieldTpl = t;
49276             }
49277             for(var i = 0; i < slen; i++) {
49278                 if(stack[i].isFormField){
49279                     this.renderField(stack[i]);
49280                 }else{
49281                     this.renderComponent(stack[i]);
49282                 }
49283             }
49284         }
49285         if(this.clear){
49286             this.el.createChild({cls:'x-form-clear'});
49287         }
49288     },
49289
49290     // private
49291     renderField : function(f){
49292         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49293                f.id, //0
49294                f.fieldLabel, //1
49295                f.labelStyle||this.labelStyle||'', //2
49296                this.elementStyle||'', //3
49297                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49298                f.itemCls||this.itemCls||''  //5
49299        ], true).getPrevSibling());
49300     },
49301
49302     // private
49303     renderComponent : function(c){
49304         c.render(c.isLayout ? this.el : this.el.createChild());    
49305     },
49306     /**
49307      * Adds a object form elements (using the xtype property as the factory method.)
49308      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49309      * @param {Object} config 
49310      */
49311     addxtype : function(o)
49312     {
49313         // create the lement.
49314         o.form = this.form;
49315         var fe = Roo.factory(o, Roo.form);
49316         this.form.allItems.push(fe);
49317         this.stack.push(fe);
49318         
49319         if (fe.isFormField) {
49320             this.form.items.add(fe);
49321         }
49322          
49323         return fe;
49324     }
49325 });
49326
49327 /**
49328  * @class Roo.form.Column
49329  * @extends Roo.form.Layout
49330  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49331  * @constructor
49332  * @param {Object} config Configuration options
49333  */
49334 Roo.form.Column = function(config){
49335     Roo.form.Column.superclass.constructor.call(this, config);
49336 };
49337
49338 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49339     /**
49340      * @cfg {Number/String} width
49341      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49342      */
49343     /**
49344      * @cfg {String/Object} autoCreate
49345      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49346      */
49347
49348     // private
49349     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49350
49351     // private
49352     onRender : function(ct, position){
49353         Roo.form.Column.superclass.onRender.call(this, ct, position);
49354         if(this.width){
49355             this.el.setWidth(this.width);
49356         }
49357     }
49358 });
49359
49360
49361 /**
49362  * @class Roo.form.Row
49363  * @extends Roo.form.Layout
49364  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49365  * @constructor
49366  * @param {Object} config Configuration options
49367  */
49368
49369  
49370 Roo.form.Row = function(config){
49371     Roo.form.Row.superclass.constructor.call(this, config);
49372 };
49373  
49374 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49375       /**
49376      * @cfg {Number/String} width
49377      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49378      */
49379     /**
49380      * @cfg {Number/String} height
49381      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49382      */
49383     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49384     
49385     padWidth : 20,
49386     // private
49387     onRender : function(ct, position){
49388         //console.log('row render');
49389         if(!this.rowTpl){
49390             var t = new Roo.Template(
49391                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49392                     '<label for="{0}" style="{2}">{1}{4}</label>',
49393                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49394                     '</div>',
49395                 '</div>'
49396             );
49397             t.disableFormats = true;
49398             t.compile();
49399             Roo.form.Layout.prototype.rowTpl = t;
49400         }
49401         this.fieldTpl = this.rowTpl;
49402         
49403         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49404         var labelWidth = 100;
49405         
49406         if ((this.labelAlign != 'top')) {
49407             if (typeof this.labelWidth == 'number') {
49408                 labelWidth = this.labelWidth
49409             }
49410             this.padWidth =  20 + labelWidth;
49411             
49412         }
49413         
49414         Roo.form.Column.superclass.onRender.call(this, ct, position);
49415         if(this.width){
49416             this.el.setWidth(this.width);
49417         }
49418         if(this.height){
49419             this.el.setHeight(this.height);
49420         }
49421     },
49422     
49423     // private
49424     renderField : function(f){
49425         f.fieldEl = this.fieldTpl.append(this.el, [
49426                f.id, f.fieldLabel,
49427                f.labelStyle||this.labelStyle||'',
49428                this.elementStyle||'',
49429                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49430                f.itemCls||this.itemCls||'',
49431                f.width ? f.width + this.padWidth : 160 + this.padWidth
49432        ],true);
49433     }
49434 });
49435  
49436
49437 /**
49438  * @class Roo.form.FieldSet
49439  * @extends Roo.form.Layout
49440  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49441  * @constructor
49442  * @param {Object} config Configuration options
49443  */
49444 Roo.form.FieldSet = function(config){
49445     Roo.form.FieldSet.superclass.constructor.call(this, config);
49446 };
49447
49448 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49449     /**
49450      * @cfg {String} legend
49451      * The text to display as the legend for the FieldSet (defaults to '')
49452      */
49453     /**
49454      * @cfg {String/Object} autoCreate
49455      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49456      */
49457
49458     // private
49459     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49460
49461     // private
49462     onRender : function(ct, position){
49463         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49464         if(this.legend){
49465             this.setLegend(this.legend);
49466         }
49467     },
49468
49469     // private
49470     setLegend : function(text){
49471         if(this.rendered){
49472             this.el.child('legend').update(text);
49473         }
49474     }
49475 });/*
49476  * Based on:
49477  * Ext JS Library 1.1.1
49478  * Copyright(c) 2006-2007, Ext JS, LLC.
49479  *
49480  * Originally Released Under LGPL - original licence link has changed is not relivant.
49481  *
49482  * Fork - LGPL
49483  * <script type="text/javascript">
49484  */
49485 /**
49486  * @class Roo.form.VTypes
49487  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49488  * @singleton
49489  */
49490 Roo.form.VTypes = function(){
49491     // closure these in so they are only created once.
49492     var alpha = /^[a-zA-Z_]+$/;
49493     var alphanum = /^[a-zA-Z0-9_]+$/;
49494     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49495     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49496
49497     // All these messages and functions are configurable
49498     return {
49499         /**
49500          * The function used to validate email addresses
49501          * @param {String} value The email address
49502          */
49503         'email' : function(v){
49504             return email.test(v);
49505         },
49506         /**
49507          * The error text to display when the email validation function returns false
49508          * @type String
49509          */
49510         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49511         /**
49512          * The keystroke filter mask to be applied on email input
49513          * @type RegExp
49514          */
49515         'emailMask' : /[a-z0-9_\.\-@]/i,
49516
49517         /**
49518          * The function used to validate URLs
49519          * @param {String} value The URL
49520          */
49521         'url' : function(v){
49522             return url.test(v);
49523         },
49524         /**
49525          * The error text to display when the url validation function returns false
49526          * @type String
49527          */
49528         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49529         
49530         /**
49531          * The function used to validate alpha values
49532          * @param {String} value The value
49533          */
49534         'alpha' : function(v){
49535             return alpha.test(v);
49536         },
49537         /**
49538          * The error text to display when the alpha validation function returns false
49539          * @type String
49540          */
49541         'alphaText' : 'This field should only contain letters and _',
49542         /**
49543          * The keystroke filter mask to be applied on alpha input
49544          * @type RegExp
49545          */
49546         'alphaMask' : /[a-z_]/i,
49547
49548         /**
49549          * The function used to validate alphanumeric values
49550          * @param {String} value The value
49551          */
49552         'alphanum' : function(v){
49553             return alphanum.test(v);
49554         },
49555         /**
49556          * The error text to display when the alphanumeric validation function returns false
49557          * @type String
49558          */
49559         'alphanumText' : 'This field should only contain letters, numbers and _',
49560         /**
49561          * The keystroke filter mask to be applied on alphanumeric input
49562          * @type RegExp
49563          */
49564         'alphanumMask' : /[a-z0-9_]/i
49565     };
49566 }();//<script type="text/javascript">
49567
49568 /**
49569  * @class Roo.form.FCKeditor
49570  * @extends Roo.form.TextArea
49571  * Wrapper around the FCKEditor http://www.fckeditor.net
49572  * @constructor
49573  * Creates a new FCKeditor
49574  * @param {Object} config Configuration options
49575  */
49576 Roo.form.FCKeditor = function(config){
49577     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49578     this.addEvents({
49579          /**
49580          * @event editorinit
49581          * Fired when the editor is initialized - you can add extra handlers here..
49582          * @param {FCKeditor} this
49583          * @param {Object} the FCK object.
49584          */
49585         editorinit : true
49586     });
49587     
49588     
49589 };
49590 Roo.form.FCKeditor.editors = { };
49591 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49592 {
49593     //defaultAutoCreate : {
49594     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49595     //},
49596     // private
49597     /**
49598      * @cfg {Object} fck options - see fck manual for details.
49599      */
49600     fckconfig : false,
49601     
49602     /**
49603      * @cfg {Object} fck toolbar set (Basic or Default)
49604      */
49605     toolbarSet : 'Basic',
49606     /**
49607      * @cfg {Object} fck BasePath
49608      */ 
49609     basePath : '/fckeditor/',
49610     
49611     
49612     frame : false,
49613     
49614     value : '',
49615     
49616    
49617     onRender : function(ct, position)
49618     {
49619         if(!this.el){
49620             this.defaultAutoCreate = {
49621                 tag: "textarea",
49622                 style:"width:300px;height:60px;",
49623                 autocomplete: "new-password"
49624             };
49625         }
49626         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49627         /*
49628         if(this.grow){
49629             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49630             if(this.preventScrollbars){
49631                 this.el.setStyle("overflow", "hidden");
49632             }
49633             this.el.setHeight(this.growMin);
49634         }
49635         */
49636         //console.log('onrender' + this.getId() );
49637         Roo.form.FCKeditor.editors[this.getId()] = this;
49638          
49639
49640         this.replaceTextarea() ;
49641         
49642     },
49643     
49644     getEditor : function() {
49645         return this.fckEditor;
49646     },
49647     /**
49648      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49649      * @param {Mixed} value The value to set
49650      */
49651     
49652     
49653     setValue : function(value)
49654     {
49655         //console.log('setValue: ' + value);
49656         
49657         if(typeof(value) == 'undefined') { // not sure why this is happending...
49658             return;
49659         }
49660         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49661         
49662         //if(!this.el || !this.getEditor()) {
49663         //    this.value = value;
49664             //this.setValue.defer(100,this,[value]);    
49665         //    return;
49666         //} 
49667         
49668         if(!this.getEditor()) {
49669             return;
49670         }
49671         
49672         this.getEditor().SetData(value);
49673         
49674         //
49675
49676     },
49677
49678     /**
49679      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49680      * @return {Mixed} value The field value
49681      */
49682     getValue : function()
49683     {
49684         
49685         if (this.frame && this.frame.dom.style.display == 'none') {
49686             return Roo.form.FCKeditor.superclass.getValue.call(this);
49687         }
49688         
49689         if(!this.el || !this.getEditor()) {
49690            
49691            // this.getValue.defer(100,this); 
49692             return this.value;
49693         }
49694        
49695         
49696         var value=this.getEditor().GetData();
49697         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49698         return Roo.form.FCKeditor.superclass.getValue.call(this);
49699         
49700
49701     },
49702
49703     /**
49704      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49705      * @return {Mixed} value The field value
49706      */
49707     getRawValue : function()
49708     {
49709         if (this.frame && this.frame.dom.style.display == 'none') {
49710             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49711         }
49712         
49713         if(!this.el || !this.getEditor()) {
49714             //this.getRawValue.defer(100,this); 
49715             return this.value;
49716             return;
49717         }
49718         
49719         
49720         
49721         var value=this.getEditor().GetData();
49722         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49723         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49724          
49725     },
49726     
49727     setSize : function(w,h) {
49728         
49729         
49730         
49731         //if (this.frame && this.frame.dom.style.display == 'none') {
49732         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49733         //    return;
49734         //}
49735         //if(!this.el || !this.getEditor()) {
49736         //    this.setSize.defer(100,this, [w,h]); 
49737         //    return;
49738         //}
49739         
49740         
49741         
49742         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49743         
49744         this.frame.dom.setAttribute('width', w);
49745         this.frame.dom.setAttribute('height', h);
49746         this.frame.setSize(w,h);
49747         
49748     },
49749     
49750     toggleSourceEdit : function(value) {
49751         
49752       
49753          
49754         this.el.dom.style.display = value ? '' : 'none';
49755         this.frame.dom.style.display = value ?  'none' : '';
49756         
49757     },
49758     
49759     
49760     focus: function(tag)
49761     {
49762         if (this.frame.dom.style.display == 'none') {
49763             return Roo.form.FCKeditor.superclass.focus.call(this);
49764         }
49765         if(!this.el || !this.getEditor()) {
49766             this.focus.defer(100,this, [tag]); 
49767             return;
49768         }
49769         
49770         
49771         
49772         
49773         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49774         this.getEditor().Focus();
49775         if (tgs.length) {
49776             if (!this.getEditor().Selection.GetSelection()) {
49777                 this.focus.defer(100,this, [tag]); 
49778                 return;
49779             }
49780             
49781             
49782             var r = this.getEditor().EditorDocument.createRange();
49783             r.setStart(tgs[0],0);
49784             r.setEnd(tgs[0],0);
49785             this.getEditor().Selection.GetSelection().removeAllRanges();
49786             this.getEditor().Selection.GetSelection().addRange(r);
49787             this.getEditor().Focus();
49788         }
49789         
49790     },
49791     
49792     
49793     
49794     replaceTextarea : function()
49795     {
49796         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49797             return ;
49798         }
49799         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49800         //{
49801             // We must check the elements firstly using the Id and then the name.
49802         var oTextarea = document.getElementById( this.getId() );
49803         
49804         var colElementsByName = document.getElementsByName( this.getId() ) ;
49805          
49806         oTextarea.style.display = 'none' ;
49807
49808         if ( oTextarea.tabIndex ) {            
49809             this.TabIndex = oTextarea.tabIndex ;
49810         }
49811         
49812         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49813         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49814         this.frame = Roo.get(this.getId() + '___Frame')
49815     },
49816     
49817     _getConfigHtml : function()
49818     {
49819         var sConfig = '' ;
49820
49821         for ( var o in this.fckconfig ) {
49822             sConfig += sConfig.length > 0  ? '&amp;' : '';
49823             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49824         }
49825
49826         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49827     },
49828     
49829     
49830     _getIFrameHtml : function()
49831     {
49832         var sFile = 'fckeditor.html' ;
49833         /* no idea what this is about..
49834         try
49835         {
49836             if ( (/fcksource=true/i).test( window.top.location.search ) )
49837                 sFile = 'fckeditor.original.html' ;
49838         }
49839         catch (e) { 
49840         */
49841
49842         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49843         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49844         
49845         
49846         var html = '<iframe id="' + this.getId() +
49847             '___Frame" src="' + sLink +
49848             '" width="' + this.width +
49849             '" height="' + this.height + '"' +
49850             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49851             ' frameborder="0" scrolling="no"></iframe>' ;
49852
49853         return html ;
49854     },
49855     
49856     _insertHtmlBefore : function( html, element )
49857     {
49858         if ( element.insertAdjacentHTML )       {
49859             // IE
49860             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49861         } else { // Gecko
49862             var oRange = document.createRange() ;
49863             oRange.setStartBefore( element ) ;
49864             var oFragment = oRange.createContextualFragment( html );
49865             element.parentNode.insertBefore( oFragment, element ) ;
49866         }
49867     }
49868     
49869     
49870   
49871     
49872     
49873     
49874     
49875
49876 });
49877
49878 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49879
49880 function FCKeditor_OnComplete(editorInstance){
49881     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49882     f.fckEditor = editorInstance;
49883     //console.log("loaded");
49884     f.fireEvent('editorinit', f, editorInstance);
49885
49886   
49887
49888  
49889
49890
49891
49892
49893
49894
49895
49896
49897
49898
49899
49900
49901
49902
49903
49904 //<script type="text/javascript">
49905 /**
49906  * @class Roo.form.GridField
49907  * @extends Roo.form.Field
49908  * Embed a grid (or editable grid into a form)
49909  * STATUS ALPHA
49910  * 
49911  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49912  * it needs 
49913  * xgrid.store = Roo.data.Store
49914  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49915  * xgrid.store.reader = Roo.data.JsonReader 
49916  * 
49917  * 
49918  * @constructor
49919  * Creates a new GridField
49920  * @param {Object} config Configuration options
49921  */
49922 Roo.form.GridField = function(config){
49923     Roo.form.GridField.superclass.constructor.call(this, config);
49924      
49925 };
49926
49927 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49928     /**
49929      * @cfg {Number} width  - used to restrict width of grid..
49930      */
49931     width : 100,
49932     /**
49933      * @cfg {Number} height - used to restrict height of grid..
49934      */
49935     height : 50,
49936      /**
49937      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49938          * 
49939          *}
49940      */
49941     xgrid : false, 
49942     /**
49943      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49944      * {tag: "input", type: "checkbox", autocomplete: "off"})
49945      */
49946    // defaultAutoCreate : { tag: 'div' },
49947     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49948     /**
49949      * @cfg {String} addTitle Text to include for adding a title.
49950      */
49951     addTitle : false,
49952     //
49953     onResize : function(){
49954         Roo.form.Field.superclass.onResize.apply(this, arguments);
49955     },
49956
49957     initEvents : function(){
49958         // Roo.form.Checkbox.superclass.initEvents.call(this);
49959         // has no events...
49960        
49961     },
49962
49963
49964     getResizeEl : function(){
49965         return this.wrap;
49966     },
49967
49968     getPositionEl : function(){
49969         return this.wrap;
49970     },
49971
49972     // private
49973     onRender : function(ct, position){
49974         
49975         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
49976         var style = this.style;
49977         delete this.style;
49978         
49979         Roo.form.GridField.superclass.onRender.call(this, ct, position);
49980         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
49981         this.viewEl = this.wrap.createChild({ tag: 'div' });
49982         if (style) {
49983             this.viewEl.applyStyles(style);
49984         }
49985         if (this.width) {
49986             this.viewEl.setWidth(this.width);
49987         }
49988         if (this.height) {
49989             this.viewEl.setHeight(this.height);
49990         }
49991         //if(this.inputValue !== undefined){
49992         //this.setValue(this.value);
49993         
49994         
49995         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
49996         
49997         
49998         this.grid.render();
49999         this.grid.getDataSource().on('remove', this.refreshValue, this);
50000         this.grid.getDataSource().on('update', this.refreshValue, this);
50001         this.grid.on('afteredit', this.refreshValue, this);
50002  
50003     },
50004      
50005     
50006     /**
50007      * Sets the value of the item. 
50008      * @param {String} either an object  or a string..
50009      */
50010     setValue : function(v){
50011         //this.value = v;
50012         v = v || []; // empty set..
50013         // this does not seem smart - it really only affects memoryproxy grids..
50014         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
50015             var ds = this.grid.getDataSource();
50016             // assumes a json reader..
50017             var data = {}
50018             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
50019             ds.loadData( data);
50020         }
50021         // clear selection so it does not get stale.
50022         if (this.grid.sm) { 
50023             this.grid.sm.clearSelections();
50024         }
50025         
50026         Roo.form.GridField.superclass.setValue.call(this, v);
50027         this.refreshValue();
50028         // should load data in the grid really....
50029     },
50030     
50031     // private
50032     refreshValue: function() {
50033          var val = [];
50034         this.grid.getDataSource().each(function(r) {
50035             val.push(r.data);
50036         });
50037         this.el.dom.value = Roo.encode(val);
50038     }
50039     
50040      
50041     
50042     
50043 });/*
50044  * Based on:
50045  * Ext JS Library 1.1.1
50046  * Copyright(c) 2006-2007, Ext JS, LLC.
50047  *
50048  * Originally Released Under LGPL - original licence link has changed is not relivant.
50049  *
50050  * Fork - LGPL
50051  * <script type="text/javascript">
50052  */
50053 /**
50054  * @class Roo.form.DisplayField
50055  * @extends Roo.form.Field
50056  * A generic Field to display non-editable data.
50057  * @cfg {Boolean} closable (true|false) default false
50058  * @constructor
50059  * Creates a new Display Field item.
50060  * @param {Object} config Configuration options
50061  */
50062 Roo.form.DisplayField = function(config){
50063     Roo.form.DisplayField.superclass.constructor.call(this, config);
50064     
50065     this.addEvents({
50066         /**
50067          * @event close
50068          * Fires after the click the close btn
50069              * @param {Roo.form.DisplayField} this
50070              */
50071         close : true
50072     });
50073 };
50074
50075 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50076     inputType:      'hidden',
50077     allowBlank:     true,
50078     readOnly:         true,
50079     
50080  
50081     /**
50082      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50083      */
50084     focusClass : undefined,
50085     /**
50086      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50087      */
50088     fieldClass: 'x-form-field',
50089     
50090      /**
50091      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50092      */
50093     valueRenderer: undefined,
50094     
50095     width: 100,
50096     /**
50097      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50098      * {tag: "input", type: "checkbox", autocomplete: "off"})
50099      */
50100      
50101  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50102  
50103     closable : false,
50104     
50105     onResize : function(){
50106         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50107         
50108     },
50109
50110     initEvents : function(){
50111         // Roo.form.Checkbox.superclass.initEvents.call(this);
50112         // has no events...
50113         
50114         if(this.closable){
50115             this.closeEl.on('click', this.onClose, this);
50116         }
50117        
50118     },
50119
50120
50121     getResizeEl : function(){
50122         return this.wrap;
50123     },
50124
50125     getPositionEl : function(){
50126         return this.wrap;
50127     },
50128
50129     // private
50130     onRender : function(ct, position){
50131         
50132         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50133         //if(this.inputValue !== undefined){
50134         this.wrap = this.el.wrap();
50135         
50136         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50137         
50138         if(this.closable){
50139             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50140         }
50141         
50142         if (this.bodyStyle) {
50143             this.viewEl.applyStyles(this.bodyStyle);
50144         }
50145         //this.viewEl.setStyle('padding', '2px');
50146         
50147         this.setValue(this.value);
50148         
50149     },
50150 /*
50151     // private
50152     initValue : Roo.emptyFn,
50153
50154   */
50155
50156         // private
50157     onClick : function(){
50158         
50159     },
50160
50161     /**
50162      * Sets the checked state of the checkbox.
50163      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50164      */
50165     setValue : function(v){
50166         this.value = v;
50167         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50168         // this might be called before we have a dom element..
50169         if (!this.viewEl) {
50170             return;
50171         }
50172         this.viewEl.dom.innerHTML = html;
50173         Roo.form.DisplayField.superclass.setValue.call(this, v);
50174
50175     },
50176     
50177     onClose : function(e)
50178     {
50179         e.preventDefault();
50180         
50181         this.fireEvent('close', this);
50182     }
50183 });/*
50184  * 
50185  * Licence- LGPL
50186  * 
50187  */
50188
50189 /**
50190  * @class Roo.form.DayPicker
50191  * @extends Roo.form.Field
50192  * A Day picker show [M] [T] [W] ....
50193  * @constructor
50194  * Creates a new Day Picker
50195  * @param {Object} config Configuration options
50196  */
50197 Roo.form.DayPicker= function(config){
50198     Roo.form.DayPicker.superclass.constructor.call(this, config);
50199      
50200 };
50201
50202 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50203     /**
50204      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50205      */
50206     focusClass : undefined,
50207     /**
50208      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50209      */
50210     fieldClass: "x-form-field",
50211    
50212     /**
50213      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50214      * {tag: "input", type: "checkbox", autocomplete: "off"})
50215      */
50216     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50217     
50218    
50219     actionMode : 'viewEl', 
50220     //
50221     // private
50222  
50223     inputType : 'hidden',
50224     
50225      
50226     inputElement: false, // real input element?
50227     basedOn: false, // ????
50228     
50229     isFormField: true, // not sure where this is needed!!!!
50230
50231     onResize : function(){
50232         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50233         if(!this.boxLabel){
50234             this.el.alignTo(this.wrap, 'c-c');
50235         }
50236     },
50237
50238     initEvents : function(){
50239         Roo.form.Checkbox.superclass.initEvents.call(this);
50240         this.el.on("click", this.onClick,  this);
50241         this.el.on("change", this.onClick,  this);
50242     },
50243
50244
50245     getResizeEl : function(){
50246         return this.wrap;
50247     },
50248
50249     getPositionEl : function(){
50250         return this.wrap;
50251     },
50252
50253     
50254     // private
50255     onRender : function(ct, position){
50256         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50257        
50258         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50259         
50260         var r1 = '<table><tr>';
50261         var r2 = '<tr class="x-form-daypick-icons">';
50262         for (var i=0; i < 7; i++) {
50263             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50264             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50265         }
50266         
50267         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50268         viewEl.select('img').on('click', this.onClick, this);
50269         this.viewEl = viewEl;   
50270         
50271         
50272         // this will not work on Chrome!!!
50273         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50274         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50275         
50276         
50277           
50278
50279     },
50280
50281     // private
50282     initValue : Roo.emptyFn,
50283
50284     /**
50285      * Returns the checked state of the checkbox.
50286      * @return {Boolean} True if checked, else false
50287      */
50288     getValue : function(){
50289         return this.el.dom.value;
50290         
50291     },
50292
50293         // private
50294     onClick : function(e){ 
50295         //this.setChecked(!this.checked);
50296         Roo.get(e.target).toggleClass('x-menu-item-checked');
50297         this.refreshValue();
50298         //if(this.el.dom.checked != this.checked){
50299         //    this.setValue(this.el.dom.checked);
50300        // }
50301     },
50302     
50303     // private
50304     refreshValue : function()
50305     {
50306         var val = '';
50307         this.viewEl.select('img',true).each(function(e,i,n)  {
50308             val += e.is(".x-menu-item-checked") ? String(n) : '';
50309         });
50310         this.setValue(val, true);
50311     },
50312
50313     /**
50314      * Sets the checked state of the checkbox.
50315      * On is always based on a string comparison between inputValue and the param.
50316      * @param {Boolean/String} value - the value to set 
50317      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50318      */
50319     setValue : function(v,suppressEvent){
50320         if (!this.el.dom) {
50321             return;
50322         }
50323         var old = this.el.dom.value ;
50324         this.el.dom.value = v;
50325         if (suppressEvent) {
50326             return ;
50327         }
50328          
50329         // update display..
50330         this.viewEl.select('img',true).each(function(e,i,n)  {
50331             
50332             var on = e.is(".x-menu-item-checked");
50333             var newv = v.indexOf(String(n)) > -1;
50334             if (on != newv) {
50335                 e.toggleClass('x-menu-item-checked');
50336             }
50337             
50338         });
50339         
50340         
50341         this.fireEvent('change', this, v, old);
50342         
50343         
50344     },
50345    
50346     // handle setting of hidden value by some other method!!?!?
50347     setFromHidden: function()
50348     {
50349         if(!this.el){
50350             return;
50351         }
50352         //console.log("SET FROM HIDDEN");
50353         //alert('setFrom hidden');
50354         this.setValue(this.el.dom.value);
50355     },
50356     
50357     onDestroy : function()
50358     {
50359         if(this.viewEl){
50360             Roo.get(this.viewEl).remove();
50361         }
50362          
50363         Roo.form.DayPicker.superclass.onDestroy.call(this);
50364     }
50365
50366 });/*
50367  * RooJS Library 1.1.1
50368  * Copyright(c) 2008-2011  Alan Knowles
50369  *
50370  * License - LGPL
50371  */
50372  
50373
50374 /**
50375  * @class Roo.form.ComboCheck
50376  * @extends Roo.form.ComboBox
50377  * A combobox for multiple select items.
50378  *
50379  * FIXME - could do with a reset button..
50380  * 
50381  * @constructor
50382  * Create a new ComboCheck
50383  * @param {Object} config Configuration options
50384  */
50385 Roo.form.ComboCheck = function(config){
50386     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50387     // should verify some data...
50388     // like
50389     // hiddenName = required..
50390     // displayField = required
50391     // valudField == required
50392     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50393     var _t = this;
50394     Roo.each(req, function(e) {
50395         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50396             throw "Roo.form.ComboCheck : missing value for: " + e;
50397         }
50398     });
50399     
50400     
50401 };
50402
50403 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50404      
50405      
50406     editable : false,
50407      
50408     selectedClass: 'x-menu-item-checked', 
50409     
50410     // private
50411     onRender : function(ct, position){
50412         var _t = this;
50413         
50414         
50415         
50416         if(!this.tpl){
50417             var cls = 'x-combo-list';
50418
50419             
50420             this.tpl =  new Roo.Template({
50421                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50422                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50423                    '<span>{' + this.displayField + '}</span>' +
50424                     '</div>' 
50425                 
50426             });
50427         }
50428  
50429         
50430         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50431         this.view.singleSelect = false;
50432         this.view.multiSelect = true;
50433         this.view.toggleSelect = true;
50434         this.pageTb.add(new Roo.Toolbar.Fill(), {
50435             
50436             text: 'Done',
50437             handler: function()
50438             {
50439                 _t.collapse();
50440             }
50441         });
50442     },
50443     
50444     onViewOver : function(e, t){
50445         // do nothing...
50446         return;
50447         
50448     },
50449     
50450     onViewClick : function(doFocus,index){
50451         return;
50452         
50453     },
50454     select: function () {
50455         //Roo.log("SELECT CALLED");
50456     },
50457      
50458     selectByValue : function(xv, scrollIntoView){
50459         var ar = this.getValueArray();
50460         var sels = [];
50461         
50462         Roo.each(ar, function(v) {
50463             if(v === undefined || v === null){
50464                 return;
50465             }
50466             var r = this.findRecord(this.valueField, v);
50467             if(r){
50468                 sels.push(this.store.indexOf(r))
50469                 
50470             }
50471         },this);
50472         this.view.select(sels);
50473         return false;
50474     },
50475     
50476     
50477     
50478     onSelect : function(record, index){
50479        // Roo.log("onselect Called");
50480        // this is only called by the clear button now..
50481         this.view.clearSelections();
50482         this.setValue('[]');
50483         if (this.value != this.valueBefore) {
50484             this.fireEvent('change', this, this.value, this.valueBefore);
50485             this.valueBefore = this.value;
50486         }
50487     },
50488     getValueArray : function()
50489     {
50490         var ar = [] ;
50491         
50492         try {
50493             //Roo.log(this.value);
50494             if (typeof(this.value) == 'undefined') {
50495                 return [];
50496             }
50497             var ar = Roo.decode(this.value);
50498             return  ar instanceof Array ? ar : []; //?? valid?
50499             
50500         } catch(e) {
50501             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50502             return [];
50503         }
50504          
50505     },
50506     expand : function ()
50507     {
50508         
50509         Roo.form.ComboCheck.superclass.expand.call(this);
50510         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50511         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50512         
50513
50514     },
50515     
50516     collapse : function(){
50517         Roo.form.ComboCheck.superclass.collapse.call(this);
50518         var sl = this.view.getSelectedIndexes();
50519         var st = this.store;
50520         var nv = [];
50521         var tv = [];
50522         var r;
50523         Roo.each(sl, function(i) {
50524             r = st.getAt(i);
50525             nv.push(r.get(this.valueField));
50526         },this);
50527         this.setValue(Roo.encode(nv));
50528         if (this.value != this.valueBefore) {
50529
50530             this.fireEvent('change', this, this.value, this.valueBefore);
50531             this.valueBefore = this.value;
50532         }
50533         
50534     },
50535     
50536     setValue : function(v){
50537         // Roo.log(v);
50538         this.value = v;
50539         
50540         var vals = this.getValueArray();
50541         var tv = [];
50542         Roo.each(vals, function(k) {
50543             var r = this.findRecord(this.valueField, k);
50544             if(r){
50545                 tv.push(r.data[this.displayField]);
50546             }else if(this.valueNotFoundText !== undefined){
50547                 tv.push( this.valueNotFoundText );
50548             }
50549         },this);
50550        // Roo.log(tv);
50551         
50552         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50553         this.hiddenField.value = v;
50554         this.value = v;
50555     }
50556     
50557 });/*
50558  * Based on:
50559  * Ext JS Library 1.1.1
50560  * Copyright(c) 2006-2007, Ext JS, LLC.
50561  *
50562  * Originally Released Under LGPL - original licence link has changed is not relivant.
50563  *
50564  * Fork - LGPL
50565  * <script type="text/javascript">
50566  */
50567  
50568 /**
50569  * @class Roo.form.Signature
50570  * @extends Roo.form.Field
50571  * Signature field.  
50572  * @constructor
50573  * 
50574  * @param {Object} config Configuration options
50575  */
50576
50577 Roo.form.Signature = function(config){
50578     Roo.form.Signature.superclass.constructor.call(this, config);
50579     
50580     this.addEvents({// not in used??
50581          /**
50582          * @event confirm
50583          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50584              * @param {Roo.form.Signature} combo This combo box
50585              */
50586         'confirm' : true,
50587         /**
50588          * @event reset
50589          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50590              * @param {Roo.form.ComboBox} combo This combo box
50591              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50592              */
50593         'reset' : true
50594     });
50595 };
50596
50597 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50598     /**
50599      * @cfg {Object} labels Label to use when rendering a form.
50600      * defaults to 
50601      * labels : { 
50602      *      clear : "Clear",
50603      *      confirm : "Confirm"
50604      *  }
50605      */
50606     labels : { 
50607         clear : "Clear",
50608         confirm : "Confirm"
50609     },
50610     /**
50611      * @cfg {Number} width The signature panel width (defaults to 300)
50612      */
50613     width: 300,
50614     /**
50615      * @cfg {Number} height The signature panel height (defaults to 100)
50616      */
50617     height : 100,
50618     /**
50619      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50620      */
50621     allowBlank : false,
50622     
50623     //private
50624     // {Object} signPanel The signature SVG panel element (defaults to {})
50625     signPanel : {},
50626     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50627     isMouseDown : false,
50628     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50629     isConfirmed : false,
50630     // {String} signatureTmp SVG mapping string (defaults to empty string)
50631     signatureTmp : '',
50632     
50633     
50634     defaultAutoCreate : { // modified by initCompnoent..
50635         tag: "input",
50636         type:"hidden"
50637     },
50638
50639     // private
50640     onRender : function(ct, position){
50641         
50642         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50643         
50644         this.wrap = this.el.wrap({
50645             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50646         });
50647         
50648         this.createToolbar(this);
50649         this.signPanel = this.wrap.createChild({
50650                 tag: 'div',
50651                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50652             }, this.el
50653         );
50654             
50655         this.svgID = Roo.id();
50656         this.svgEl = this.signPanel.createChild({
50657               xmlns : 'http://www.w3.org/2000/svg',
50658               tag : 'svg',
50659               id : this.svgID + "-svg",
50660               width: this.width,
50661               height: this.height,
50662               viewBox: '0 0 '+this.width+' '+this.height,
50663               cn : [
50664                 {
50665                     tag: "rect",
50666                     id: this.svgID + "-svg-r",
50667                     width: this.width,
50668                     height: this.height,
50669                     fill: "#ffa"
50670                 },
50671                 {
50672                     tag: "line",
50673                     id: this.svgID + "-svg-l",
50674                     x1: "0", // start
50675                     y1: (this.height*0.8), // start set the line in 80% of height
50676                     x2: this.width, // end
50677                     y2: (this.height*0.8), // end set the line in 80% of height
50678                     'stroke': "#666",
50679                     'stroke-width': "1",
50680                     'stroke-dasharray': "3",
50681                     'shape-rendering': "crispEdges",
50682                     'pointer-events': "none"
50683                 },
50684                 {
50685                     tag: "path",
50686                     id: this.svgID + "-svg-p",
50687                     'stroke': "navy",
50688                     'stroke-width': "3",
50689                     'fill': "none",
50690                     'pointer-events': 'none'
50691                 }
50692               ]
50693         });
50694         this.createSVG();
50695         this.svgBox = this.svgEl.dom.getScreenCTM();
50696     },
50697     createSVG : function(){ 
50698         var svg = this.signPanel;
50699         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50700         var t = this;
50701
50702         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50703         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50704         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50705         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50706         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50707         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50708         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50709         
50710     },
50711     isTouchEvent : function(e){
50712         return e.type.match(/^touch/);
50713     },
50714     getCoords : function (e) {
50715         var pt    = this.svgEl.dom.createSVGPoint();
50716         pt.x = e.clientX; 
50717         pt.y = e.clientY;
50718         if (this.isTouchEvent(e)) {
50719             pt.x =  e.targetTouches[0].clientX;
50720             pt.y = e.targetTouches[0].clientY;
50721         }
50722         var a = this.svgEl.dom.getScreenCTM();
50723         var b = a.inverse();
50724         var mx = pt.matrixTransform(b);
50725         return mx.x + ',' + mx.y;
50726     },
50727     //mouse event headler 
50728     down : function (e) {
50729         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50730         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50731         
50732         this.isMouseDown = true;
50733         
50734         e.preventDefault();
50735     },
50736     move : function (e) {
50737         if (this.isMouseDown) {
50738             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50739             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50740         }
50741         
50742         e.preventDefault();
50743     },
50744     up : function (e) {
50745         this.isMouseDown = false;
50746         var sp = this.signatureTmp.split(' ');
50747         
50748         if(sp.length > 1){
50749             if(!sp[sp.length-2].match(/^L/)){
50750                 sp.pop();
50751                 sp.pop();
50752                 sp.push("");
50753                 this.signatureTmp = sp.join(" ");
50754             }
50755         }
50756         if(this.getValue() != this.signatureTmp){
50757             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50758             this.isConfirmed = false;
50759         }
50760         e.preventDefault();
50761     },
50762     
50763     /**
50764      * Protected method that will not generally be called directly. It
50765      * is called when the editor creates its toolbar. Override this method if you need to
50766      * add custom toolbar buttons.
50767      * @param {HtmlEditor} editor
50768      */
50769     createToolbar : function(editor){
50770          function btn(id, toggle, handler){
50771             var xid = fid + '-'+ id ;
50772             return {
50773                 id : xid,
50774                 cmd : id,
50775                 cls : 'x-btn-icon x-edit-'+id,
50776                 enableToggle:toggle !== false,
50777                 scope: editor, // was editor...
50778                 handler:handler||editor.relayBtnCmd,
50779                 clickEvent:'mousedown',
50780                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50781                 tabIndex:-1
50782             };
50783         }
50784         
50785         
50786         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50787         this.tb = tb;
50788         this.tb.add(
50789            {
50790                 cls : ' x-signature-btn x-signature-'+id,
50791                 scope: editor, // was editor...
50792                 handler: this.reset,
50793                 clickEvent:'mousedown',
50794                 text: this.labels.clear
50795             },
50796             {
50797                  xtype : 'Fill',
50798                  xns: Roo.Toolbar
50799             }, 
50800             {
50801                 cls : '  x-signature-btn x-signature-'+id,
50802                 scope: editor, // was editor...
50803                 handler: this.confirmHandler,
50804                 clickEvent:'mousedown',
50805                 text: this.labels.confirm
50806             }
50807         );
50808     
50809     },
50810     //public
50811     /**
50812      * when user is clicked confirm then show this image.....
50813      * 
50814      * @return {String} Image Data URI
50815      */
50816     getImageDataURI : function(){
50817         var svg = this.svgEl.dom.parentNode.innerHTML;
50818         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50819         return src; 
50820     },
50821     /**
50822      * 
50823      * @return {Boolean} this.isConfirmed
50824      */
50825     getConfirmed : function(){
50826         return this.isConfirmed;
50827     },
50828     /**
50829      * 
50830      * @return {Number} this.width
50831      */
50832     getWidth : function(){
50833         return this.width;
50834     },
50835     /**
50836      * 
50837      * @return {Number} this.height
50838      */
50839     getHeight : function(){
50840         return this.height;
50841     },
50842     // private
50843     getSignature : function(){
50844         return this.signatureTmp;
50845     },
50846     // private
50847     reset : function(){
50848         this.signatureTmp = '';
50849         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50850         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50851         this.isConfirmed = false;
50852         Roo.form.Signature.superclass.reset.call(this);
50853     },
50854     setSignature : function(s){
50855         this.signatureTmp = s;
50856         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50857         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50858         this.setValue(s);
50859         this.isConfirmed = false;
50860         Roo.form.Signature.superclass.reset.call(this);
50861     }, 
50862     test : function(){
50863 //        Roo.log(this.signPanel.dom.contentWindow.up())
50864     },
50865     //private
50866     setConfirmed : function(){
50867         
50868         
50869         
50870 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50871     },
50872     // private
50873     confirmHandler : function(){
50874         if(!this.getSignature()){
50875             return;
50876         }
50877         
50878         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50879         this.setValue(this.getSignature());
50880         this.isConfirmed = true;
50881         
50882         this.fireEvent('confirm', this);
50883     },
50884     // private
50885     // Subclasses should provide the validation implementation by overriding this
50886     validateValue : function(value){
50887         if(this.allowBlank){
50888             return true;
50889         }
50890         
50891         if(this.isConfirmed){
50892             return true;
50893         }
50894         return false;
50895     }
50896 });/*
50897  * Based on:
50898  * Ext JS Library 1.1.1
50899  * Copyright(c) 2006-2007, Ext JS, LLC.
50900  *
50901  * Originally Released Under LGPL - original licence link has changed is not relivant.
50902  *
50903  * Fork - LGPL
50904  * <script type="text/javascript">
50905  */
50906  
50907
50908 /**
50909  * @class Roo.form.ComboBox
50910  * @extends Roo.form.TriggerField
50911  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50912  * @constructor
50913  * Create a new ComboBox.
50914  * @param {Object} config Configuration options
50915  */
50916 Roo.form.Select = function(config){
50917     Roo.form.Select.superclass.constructor.call(this, config);
50918      
50919 };
50920
50921 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50922     /**
50923      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50924      */
50925     /**
50926      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50927      * rendering into an Roo.Editor, defaults to false)
50928      */
50929     /**
50930      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50931      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50932      */
50933     /**
50934      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50935      */
50936     /**
50937      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50938      * the dropdown list (defaults to undefined, with no header element)
50939      */
50940
50941      /**
50942      * @cfg {String/Roo.Template} tpl The template to use to render the output
50943      */
50944      
50945     // private
50946     defaultAutoCreate : {tag: "select"  },
50947     /**
50948      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50949      */
50950     listWidth: undefined,
50951     /**
50952      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50953      * mode = 'remote' or 'text' if mode = 'local')
50954      */
50955     displayField: undefined,
50956     /**
50957      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50958      * mode = 'remote' or 'value' if mode = 'local'). 
50959      * Note: use of a valueField requires the user make a selection
50960      * in order for a value to be mapped.
50961      */
50962     valueField: undefined,
50963     
50964     
50965     /**
50966      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
50967      * field's data value (defaults to the underlying DOM element's name)
50968      */
50969     hiddenName: undefined,
50970     /**
50971      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
50972      */
50973     listClass: '',
50974     /**
50975      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
50976      */
50977     selectedClass: 'x-combo-selected',
50978     /**
50979      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
50980      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
50981      * which displays a downward arrow icon).
50982      */
50983     triggerClass : 'x-form-arrow-trigger',
50984     /**
50985      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
50986      */
50987     shadow:'sides',
50988     /**
50989      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
50990      * anchor positions (defaults to 'tl-bl')
50991      */
50992     listAlign: 'tl-bl?',
50993     /**
50994      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
50995      */
50996     maxHeight: 300,
50997     /**
50998      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
50999      * query specified by the allQuery config option (defaults to 'query')
51000      */
51001     triggerAction: 'query',
51002     /**
51003      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
51004      * (defaults to 4, does not apply if editable = false)
51005      */
51006     minChars : 4,
51007     /**
51008      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
51009      * delay (typeAheadDelay) if it matches a known value (defaults to false)
51010      */
51011     typeAhead: false,
51012     /**
51013      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
51014      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
51015      */
51016     queryDelay: 500,
51017     /**
51018      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
51019      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
51020      */
51021     pageSize: 0,
51022     /**
51023      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
51024      * when editable = true (defaults to false)
51025      */
51026     selectOnFocus:false,
51027     /**
51028      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
51029      */
51030     queryParam: 'query',
51031     /**
51032      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
51033      * when mode = 'remote' (defaults to 'Loading...')
51034      */
51035     loadingText: 'Loading...',
51036     /**
51037      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
51038      */
51039     resizable: false,
51040     /**
51041      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
51042      */
51043     handleHeight : 8,
51044     /**
51045      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
51046      * traditional select (defaults to true)
51047      */
51048     editable: true,
51049     /**
51050      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
51051      */
51052     allQuery: '',
51053     /**
51054      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
51055      */
51056     mode: 'remote',
51057     /**
51058      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
51059      * listWidth has a higher value)
51060      */
51061     minListWidth : 70,
51062     /**
51063      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51064      * allow the user to set arbitrary text into the field (defaults to false)
51065      */
51066     forceSelection:false,
51067     /**
51068      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51069      * if typeAhead = true (defaults to 250)
51070      */
51071     typeAheadDelay : 250,
51072     /**
51073      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51074      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51075      */
51076     valueNotFoundText : undefined,
51077     
51078     /**
51079      * @cfg {String} defaultValue The value displayed after loading the store.
51080      */
51081     defaultValue: '',
51082     
51083     /**
51084      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51085      */
51086     blockFocus : false,
51087     
51088     /**
51089      * @cfg {Boolean} disableClear Disable showing of clear button.
51090      */
51091     disableClear : false,
51092     /**
51093      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51094      */
51095     alwaysQuery : false,
51096     
51097     //private
51098     addicon : false,
51099     editicon: false,
51100     
51101     // element that contains real text value.. (when hidden is used..)
51102      
51103     // private
51104     onRender : function(ct, position){
51105         Roo.form.Field.prototype.onRender.call(this, ct, position);
51106         
51107         if(this.store){
51108             this.store.on('beforeload', this.onBeforeLoad, this);
51109             this.store.on('load', this.onLoad, this);
51110             this.store.on('loadexception', this.onLoadException, this);
51111             this.store.load({});
51112         }
51113         
51114         
51115         
51116     },
51117
51118     // private
51119     initEvents : function(){
51120         //Roo.form.ComboBox.superclass.initEvents.call(this);
51121  
51122     },
51123
51124     onDestroy : function(){
51125        
51126         if(this.store){
51127             this.store.un('beforeload', this.onBeforeLoad, this);
51128             this.store.un('load', this.onLoad, this);
51129             this.store.un('loadexception', this.onLoadException, this);
51130         }
51131         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51132     },
51133
51134     // private
51135     fireKey : function(e){
51136         if(e.isNavKeyPress() && !this.list.isVisible()){
51137             this.fireEvent("specialkey", this, e);
51138         }
51139     },
51140
51141     // private
51142     onResize: function(w, h){
51143         
51144         return; 
51145     
51146         
51147     },
51148
51149     /**
51150      * Allow or prevent the user from directly editing the field text.  If false is passed,
51151      * the user will only be able to select from the items defined in the dropdown list.  This method
51152      * is the runtime equivalent of setting the 'editable' config option at config time.
51153      * @param {Boolean} value True to allow the user to directly edit the field text
51154      */
51155     setEditable : function(value){
51156          
51157     },
51158
51159     // private
51160     onBeforeLoad : function(){
51161         
51162         Roo.log("Select before load");
51163         return;
51164     
51165         this.innerList.update(this.loadingText ?
51166                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51167         //this.restrictHeight();
51168         this.selectedIndex = -1;
51169     },
51170
51171     // private
51172     onLoad : function(){
51173
51174     
51175         var dom = this.el.dom;
51176         dom.innerHTML = '';
51177          var od = dom.ownerDocument;
51178          
51179         if (this.emptyText) {
51180             var op = od.createElement('option');
51181             op.setAttribute('value', '');
51182             op.innerHTML = String.format('{0}', this.emptyText);
51183             dom.appendChild(op);
51184         }
51185         if(this.store.getCount() > 0){
51186            
51187             var vf = this.valueField;
51188             var df = this.displayField;
51189             this.store.data.each(function(r) {
51190                 // which colmsn to use... testing - cdoe / title..
51191                 var op = od.createElement('option');
51192                 op.setAttribute('value', r.data[vf]);
51193                 op.innerHTML = String.format('{0}', r.data[df]);
51194                 dom.appendChild(op);
51195             });
51196             if (typeof(this.defaultValue != 'undefined')) {
51197                 this.setValue(this.defaultValue);
51198             }
51199             
51200              
51201         }else{
51202             //this.onEmptyResults();
51203         }
51204         //this.el.focus();
51205     },
51206     // private
51207     onLoadException : function()
51208     {
51209         dom.innerHTML = '';
51210             
51211         Roo.log("Select on load exception");
51212         return;
51213     
51214         this.collapse();
51215         Roo.log(this.store.reader.jsonData);
51216         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51217             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51218         }
51219         
51220         
51221     },
51222     // private
51223     onTypeAhead : function(){
51224          
51225     },
51226
51227     // private
51228     onSelect : function(record, index){
51229         Roo.log('on select?');
51230         return;
51231         if(this.fireEvent('beforeselect', this, record, index) !== false){
51232             this.setFromData(index > -1 ? record.data : false);
51233             this.collapse();
51234             this.fireEvent('select', this, record, index);
51235         }
51236     },
51237
51238     /**
51239      * Returns the currently selected field value or empty string if no value is set.
51240      * @return {String} value The selected value
51241      */
51242     getValue : function(){
51243         var dom = this.el.dom;
51244         this.value = dom.options[dom.selectedIndex].value;
51245         return this.value;
51246         
51247     },
51248
51249     /**
51250      * Clears any text/value currently set in the field
51251      */
51252     clearValue : function(){
51253         this.value = '';
51254         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51255         
51256     },
51257
51258     /**
51259      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51260      * will be displayed in the field.  If the value does not match the data value of an existing item,
51261      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51262      * Otherwise the field will be blank (although the value will still be set).
51263      * @param {String} value The value to match
51264      */
51265     setValue : function(v){
51266         var d = this.el.dom;
51267         for (var i =0; i < d.options.length;i++) {
51268             if (v == d.options[i].value) {
51269                 d.selectedIndex = i;
51270                 this.value = v;
51271                 return;
51272             }
51273         }
51274         this.clearValue();
51275     },
51276     /**
51277      * @property {Object} the last set data for the element
51278      */
51279     
51280     lastData : false,
51281     /**
51282      * Sets the value of the field based on a object which is related to the record format for the store.
51283      * @param {Object} value the value to set as. or false on reset?
51284      */
51285     setFromData : function(o){
51286         Roo.log('setfrom data?');
51287          
51288         
51289         
51290     },
51291     // private
51292     reset : function(){
51293         this.clearValue();
51294     },
51295     // private
51296     findRecord : function(prop, value){
51297         
51298         return false;
51299     
51300         var record;
51301         if(this.store.getCount() > 0){
51302             this.store.each(function(r){
51303                 if(r.data[prop] == value){
51304                     record = r;
51305                     return false;
51306                 }
51307                 return true;
51308             });
51309         }
51310         return record;
51311     },
51312     
51313     getName: function()
51314     {
51315         // returns hidden if it's set..
51316         if (!this.rendered) {return ''};
51317         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51318         
51319     },
51320      
51321
51322     
51323
51324     // private
51325     onEmptyResults : function(){
51326         Roo.log('empty results');
51327         //this.collapse();
51328     },
51329
51330     /**
51331      * Returns true if the dropdown list is expanded, else false.
51332      */
51333     isExpanded : function(){
51334         return false;
51335     },
51336
51337     /**
51338      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51339      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51340      * @param {String} value The data value of the item to select
51341      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51342      * selected item if it is not currently in view (defaults to true)
51343      * @return {Boolean} True if the value matched an item in the list, else false
51344      */
51345     selectByValue : function(v, scrollIntoView){
51346         Roo.log('select By Value');
51347         return false;
51348     
51349         if(v !== undefined && v !== null){
51350             var r = this.findRecord(this.valueField || this.displayField, v);
51351             if(r){
51352                 this.select(this.store.indexOf(r), scrollIntoView);
51353                 return true;
51354             }
51355         }
51356         return false;
51357     },
51358
51359     /**
51360      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51361      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51362      * @param {Number} index The zero-based index of the list item to select
51363      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51364      * selected item if it is not currently in view (defaults to true)
51365      */
51366     select : function(index, scrollIntoView){
51367         Roo.log('select ');
51368         return  ;
51369         
51370         this.selectedIndex = index;
51371         this.view.select(index);
51372         if(scrollIntoView !== false){
51373             var el = this.view.getNode(index);
51374             if(el){
51375                 this.innerList.scrollChildIntoView(el, false);
51376             }
51377         }
51378     },
51379
51380       
51381
51382     // private
51383     validateBlur : function(){
51384         
51385         return;
51386         
51387     },
51388
51389     // private
51390     initQuery : function(){
51391         this.doQuery(this.getRawValue());
51392     },
51393
51394     // private
51395     doForce : function(){
51396         if(this.el.dom.value.length > 0){
51397             this.el.dom.value =
51398                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51399              
51400         }
51401     },
51402
51403     /**
51404      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51405      * query allowing the query action to be canceled if needed.
51406      * @param {String} query The SQL query to execute
51407      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51408      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51409      * saved in the current store (defaults to false)
51410      */
51411     doQuery : function(q, forceAll){
51412         
51413         Roo.log('doQuery?');
51414         if(q === undefined || q === null){
51415             q = '';
51416         }
51417         var qe = {
51418             query: q,
51419             forceAll: forceAll,
51420             combo: this,
51421             cancel:false
51422         };
51423         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51424             return false;
51425         }
51426         q = qe.query;
51427         forceAll = qe.forceAll;
51428         if(forceAll === true || (q.length >= this.minChars)){
51429             if(this.lastQuery != q || this.alwaysQuery){
51430                 this.lastQuery = q;
51431                 if(this.mode == 'local'){
51432                     this.selectedIndex = -1;
51433                     if(forceAll){
51434                         this.store.clearFilter();
51435                     }else{
51436                         this.store.filter(this.displayField, q);
51437                     }
51438                     this.onLoad();
51439                 }else{
51440                     this.store.baseParams[this.queryParam] = q;
51441                     this.store.load({
51442                         params: this.getParams(q)
51443                     });
51444                     this.expand();
51445                 }
51446             }else{
51447                 this.selectedIndex = -1;
51448                 this.onLoad();   
51449             }
51450         }
51451     },
51452
51453     // private
51454     getParams : function(q){
51455         var p = {};
51456         //p[this.queryParam] = q;
51457         if(this.pageSize){
51458             p.start = 0;
51459             p.limit = this.pageSize;
51460         }
51461         return p;
51462     },
51463
51464     /**
51465      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51466      */
51467     collapse : function(){
51468         
51469     },
51470
51471     // private
51472     collapseIf : function(e){
51473         
51474     },
51475
51476     /**
51477      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51478      */
51479     expand : function(){
51480         
51481     } ,
51482
51483     // private
51484      
51485
51486     /** 
51487     * @cfg {Boolean} grow 
51488     * @hide 
51489     */
51490     /** 
51491     * @cfg {Number} growMin 
51492     * @hide 
51493     */
51494     /** 
51495     * @cfg {Number} growMax 
51496     * @hide 
51497     */
51498     /**
51499      * @hide
51500      * @method autoSize
51501      */
51502     
51503     setWidth : function()
51504     {
51505         
51506     },
51507     getResizeEl : function(){
51508         return this.el;
51509     }
51510 });//<script type="text/javasscript">
51511  
51512
51513 /**
51514  * @class Roo.DDView
51515  * A DnD enabled version of Roo.View.
51516  * @param {Element/String} container The Element in which to create the View.
51517  * @param {String} tpl The template string used to create the markup for each element of the View
51518  * @param {Object} config The configuration properties. These include all the config options of
51519  * {@link Roo.View} plus some specific to this class.<br>
51520  * <p>
51521  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51522  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51523  * <p>
51524  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51525 .x-view-drag-insert-above {
51526         border-top:1px dotted #3366cc;
51527 }
51528 .x-view-drag-insert-below {
51529         border-bottom:1px dotted #3366cc;
51530 }
51531 </code></pre>
51532  * 
51533  */
51534  
51535 Roo.DDView = function(container, tpl, config) {
51536     Roo.DDView.superclass.constructor.apply(this, arguments);
51537     this.getEl().setStyle("outline", "0px none");
51538     this.getEl().unselectable();
51539     if (this.dragGroup) {
51540         this.setDraggable(this.dragGroup.split(","));
51541     }
51542     if (this.dropGroup) {
51543         this.setDroppable(this.dropGroup.split(","));
51544     }
51545     if (this.deletable) {
51546         this.setDeletable();
51547     }
51548     this.isDirtyFlag = false;
51549         this.addEvents({
51550                 "drop" : true
51551         });
51552 };
51553
51554 Roo.extend(Roo.DDView, Roo.View, {
51555 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51556 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51557 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51558 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51559
51560         isFormField: true,
51561
51562         reset: Roo.emptyFn,
51563         
51564         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51565
51566         validate: function() {
51567                 return true;
51568         },
51569         
51570         destroy: function() {
51571                 this.purgeListeners();
51572                 this.getEl.removeAllListeners();
51573                 this.getEl().remove();
51574                 if (this.dragZone) {
51575                         if (this.dragZone.destroy) {
51576                                 this.dragZone.destroy();
51577                         }
51578                 }
51579                 if (this.dropZone) {
51580                         if (this.dropZone.destroy) {
51581                                 this.dropZone.destroy();
51582                         }
51583                 }
51584         },
51585
51586 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51587         getName: function() {
51588                 return this.name;
51589         },
51590
51591 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51592         setValue: function(v) {
51593                 if (!this.store) {
51594                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51595                 }
51596                 var data = {};
51597                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51598                 this.store.proxy = new Roo.data.MemoryProxy(data);
51599                 this.store.load();
51600         },
51601
51602 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51603         getValue: function() {
51604                 var result = '(';
51605                 this.store.each(function(rec) {
51606                         result += rec.id + ',';
51607                 });
51608                 return result.substr(0, result.length - 1) + ')';
51609         },
51610         
51611         getIds: function() {
51612                 var i = 0, result = new Array(this.store.getCount());
51613                 this.store.each(function(rec) {
51614                         result[i++] = rec.id;
51615                 });
51616                 return result;
51617         },
51618         
51619         isDirty: function() {
51620                 return this.isDirtyFlag;
51621         },
51622
51623 /**
51624  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51625  *      whole Element becomes the target, and this causes the drop gesture to append.
51626  */
51627     getTargetFromEvent : function(e) {
51628                 var target = e.getTarget();
51629                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51630                 target = target.parentNode;
51631                 }
51632                 if (!target) {
51633                         target = this.el.dom.lastChild || this.el.dom;
51634                 }
51635                 return target;
51636     },
51637
51638 /**
51639  *      Create the drag data which consists of an object which has the property "ddel" as
51640  *      the drag proxy element. 
51641  */
51642     getDragData : function(e) {
51643         var target = this.findItemFromChild(e.getTarget());
51644                 if(target) {
51645                         this.handleSelection(e);
51646                         var selNodes = this.getSelectedNodes();
51647             var dragData = {
51648                 source: this,
51649                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51650                 nodes: selNodes,
51651                 records: []
51652                         };
51653                         var selectedIndices = this.getSelectedIndexes();
51654                         for (var i = 0; i < selectedIndices.length; i++) {
51655                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51656                         }
51657                         if (selNodes.length == 1) {
51658                                 dragData.ddel = target.cloneNode(true); // the div element
51659                         } else {
51660                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51661                                 div.className = 'multi-proxy';
51662                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51663                                         div.appendChild(selNodes[i].cloneNode(true));
51664                                 }
51665                                 dragData.ddel = div;
51666                         }
51667             //console.log(dragData)
51668             //console.log(dragData.ddel.innerHTML)
51669                         return dragData;
51670                 }
51671         //console.log('nodragData')
51672                 return false;
51673     },
51674     
51675 /**     Specify to which ddGroup items in this DDView may be dragged. */
51676     setDraggable: function(ddGroup) {
51677         if (ddGroup instanceof Array) {
51678                 Roo.each(ddGroup, this.setDraggable, this);
51679                 return;
51680         }
51681         if (this.dragZone) {
51682                 this.dragZone.addToGroup(ddGroup);
51683         } else {
51684                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51685                                 containerScroll: true,
51686                                 ddGroup: ddGroup 
51687
51688                         });
51689 //                      Draggability implies selection. DragZone's mousedown selects the element.
51690                         if (!this.multiSelect) { this.singleSelect = true; }
51691
51692 //                      Wire the DragZone's handlers up to methods in *this*
51693                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51694                 }
51695     },
51696
51697 /**     Specify from which ddGroup this DDView accepts drops. */
51698     setDroppable: function(ddGroup) {
51699         if (ddGroup instanceof Array) {
51700                 Roo.each(ddGroup, this.setDroppable, this);
51701                 return;
51702         }
51703         if (this.dropZone) {
51704                 this.dropZone.addToGroup(ddGroup);
51705         } else {
51706                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51707                                 containerScroll: true,
51708                                 ddGroup: ddGroup
51709                         });
51710
51711 //                      Wire the DropZone's handlers up to methods in *this*
51712                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51713                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51714                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51715                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51716                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51717                 }
51718     },
51719
51720 /**     Decide whether to drop above or below a View node. */
51721     getDropPoint : function(e, n, dd){
51722         if (n == this.el.dom) { return "above"; }
51723                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51724                 var c = t + (b - t) / 2;
51725                 var y = Roo.lib.Event.getPageY(e);
51726                 if(y <= c) {
51727                         return "above";
51728                 }else{
51729                         return "below";
51730                 }
51731     },
51732
51733     onNodeEnter : function(n, dd, e, data){
51734                 return false;
51735     },
51736     
51737     onNodeOver : function(n, dd, e, data){
51738                 var pt = this.getDropPoint(e, n, dd);
51739                 // set the insert point style on the target node
51740                 var dragElClass = this.dropNotAllowed;
51741                 if (pt) {
51742                         var targetElClass;
51743                         if (pt == "above"){
51744                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51745                                 targetElClass = "x-view-drag-insert-above";
51746                         } else {
51747                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51748                                 targetElClass = "x-view-drag-insert-below";
51749                         }
51750                         if (this.lastInsertClass != targetElClass){
51751                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51752                                 this.lastInsertClass = targetElClass;
51753                         }
51754                 }
51755                 return dragElClass;
51756         },
51757
51758     onNodeOut : function(n, dd, e, data){
51759                 this.removeDropIndicators(n);
51760     },
51761
51762     onNodeDrop : function(n, dd, e, data){
51763         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51764                 return false;
51765         }
51766         var pt = this.getDropPoint(e, n, dd);
51767                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51768                 if (pt == "below") { insertAt++; }
51769                 for (var i = 0; i < data.records.length; i++) {
51770                         var r = data.records[i];
51771                         var dup = this.store.getById(r.id);
51772                         if (dup && (dd != this.dragZone)) {
51773                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51774                         } else {
51775                                 if (data.copy) {
51776                                         this.store.insert(insertAt++, r.copy());
51777                                 } else {
51778                                         data.source.isDirtyFlag = true;
51779                                         r.store.remove(r);
51780                                         this.store.insert(insertAt++, r);
51781                                 }
51782                                 this.isDirtyFlag = true;
51783                         }
51784                 }
51785                 this.dragZone.cachedTarget = null;
51786                 return true;
51787     },
51788
51789     removeDropIndicators : function(n){
51790                 if(n){
51791                         Roo.fly(n).removeClass([
51792                                 "x-view-drag-insert-above",
51793                                 "x-view-drag-insert-below"]);
51794                         this.lastInsertClass = "_noclass";
51795                 }
51796     },
51797
51798 /**
51799  *      Utility method. Add a delete option to the DDView's context menu.
51800  *      @param {String} imageUrl The URL of the "delete" icon image.
51801  */
51802         setDeletable: function(imageUrl) {
51803                 if (!this.singleSelect && !this.multiSelect) {
51804                         this.singleSelect = true;
51805                 }
51806                 var c = this.getContextMenu();
51807                 this.contextMenu.on("itemclick", function(item) {
51808                         switch (item.id) {
51809                                 case "delete":
51810                                         this.remove(this.getSelectedIndexes());
51811                                         break;
51812                         }
51813                 }, this);
51814                 this.contextMenu.add({
51815                         icon: imageUrl,
51816                         id: "delete",
51817                         text: 'Delete'
51818                 });
51819         },
51820         
51821 /**     Return the context menu for this DDView. */
51822         getContextMenu: function() {
51823                 if (!this.contextMenu) {
51824 //                      Create the View's context menu
51825                         this.contextMenu = new Roo.menu.Menu({
51826                                 id: this.id + "-contextmenu"
51827                         });
51828                         this.el.on("contextmenu", this.showContextMenu, this);
51829                 }
51830                 return this.contextMenu;
51831         },
51832         
51833         disableContextMenu: function() {
51834                 if (this.contextMenu) {
51835                         this.el.un("contextmenu", this.showContextMenu, this);
51836                 }
51837         },
51838
51839         showContextMenu: function(e, item) {
51840         item = this.findItemFromChild(e.getTarget());
51841                 if (item) {
51842                         e.stopEvent();
51843                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51844                         this.contextMenu.showAt(e.getXY());
51845             }
51846     },
51847
51848 /**
51849  *      Remove {@link Roo.data.Record}s at the specified indices.
51850  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51851  */
51852     remove: function(selectedIndices) {
51853                 selectedIndices = [].concat(selectedIndices);
51854                 for (var i = 0; i < selectedIndices.length; i++) {
51855                         var rec = this.store.getAt(selectedIndices[i]);
51856                         this.store.remove(rec);
51857                 }
51858     },
51859
51860 /**
51861  *      Double click fires the event, but also, if this is draggable, and there is only one other
51862  *      related DropZone, it transfers the selected node.
51863  */
51864     onDblClick : function(e){
51865         var item = this.findItemFromChild(e.getTarget());
51866         if(item){
51867             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51868                 return false;
51869             }
51870             if (this.dragGroup) {
51871                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51872                     while (targets.indexOf(this.dropZone) > -1) {
51873                             targets.remove(this.dropZone);
51874                                 }
51875                     if (targets.length == 1) {
51876                                         this.dragZone.cachedTarget = null;
51877                         var el = Roo.get(targets[0].getEl());
51878                         var box = el.getBox(true);
51879                         targets[0].onNodeDrop(el.dom, {
51880                                 target: el.dom,
51881                                 xy: [box.x, box.y + box.height - 1]
51882                         }, null, this.getDragData(e));
51883                     }
51884                 }
51885         }
51886     },
51887     
51888     handleSelection: function(e) {
51889                 this.dragZone.cachedTarget = null;
51890         var item = this.findItemFromChild(e.getTarget());
51891         if (!item) {
51892                 this.clearSelections(true);
51893                 return;
51894         }
51895                 if (item && (this.multiSelect || this.singleSelect)){
51896                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51897                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51898                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51899                                 this.unselect(item);
51900                         } else {
51901                                 this.select(item, this.multiSelect && e.ctrlKey);
51902                                 this.lastSelection = item;
51903                         }
51904                 }
51905     },
51906
51907     onItemClick : function(item, index, e){
51908                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51909                         return false;
51910                 }
51911                 return true;
51912     },
51913
51914     unselect : function(nodeInfo, suppressEvent){
51915                 var node = this.getNode(nodeInfo);
51916                 if(node && this.isSelected(node)){
51917                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51918                                 Roo.fly(node).removeClass(this.selectedClass);
51919                                 this.selections.remove(node);
51920                                 if(!suppressEvent){
51921                                         this.fireEvent("selectionchange", this, this.selections);
51922                                 }
51923                         }
51924                 }
51925     }
51926 });
51927 /*
51928  * Based on:
51929  * Ext JS Library 1.1.1
51930  * Copyright(c) 2006-2007, Ext JS, LLC.
51931  *
51932  * Originally Released Under LGPL - original licence link has changed is not relivant.
51933  *
51934  * Fork - LGPL
51935  * <script type="text/javascript">
51936  */
51937  
51938 /**
51939  * @class Roo.LayoutManager
51940  * @extends Roo.util.Observable
51941  * Base class for layout managers.
51942  */
51943 Roo.LayoutManager = function(container, config){
51944     Roo.LayoutManager.superclass.constructor.call(this);
51945     this.el = Roo.get(container);
51946     // ie scrollbar fix
51947     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51948         document.body.scroll = "no";
51949     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51950         this.el.position('relative');
51951     }
51952     this.id = this.el.id;
51953     this.el.addClass("x-layout-container");
51954     /** false to disable window resize monitoring @type Boolean */
51955     this.monitorWindowResize = true;
51956     this.regions = {};
51957     this.addEvents({
51958         /**
51959          * @event layout
51960          * Fires when a layout is performed. 
51961          * @param {Roo.LayoutManager} this
51962          */
51963         "layout" : true,
51964         /**
51965          * @event regionresized
51966          * Fires when the user resizes a region. 
51967          * @param {Roo.LayoutRegion} region The resized region
51968          * @param {Number} newSize The new size (width for east/west, height for north/south)
51969          */
51970         "regionresized" : true,
51971         /**
51972          * @event regioncollapsed
51973          * Fires when a region is collapsed. 
51974          * @param {Roo.LayoutRegion} region The collapsed region
51975          */
51976         "regioncollapsed" : true,
51977         /**
51978          * @event regionexpanded
51979          * Fires when a region is expanded.  
51980          * @param {Roo.LayoutRegion} region The expanded region
51981          */
51982         "regionexpanded" : true
51983     });
51984     this.updating = false;
51985     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
51986 };
51987
51988 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
51989     /**
51990      * Returns true if this layout is currently being updated
51991      * @return {Boolean}
51992      */
51993     isUpdating : function(){
51994         return this.updating; 
51995     },
51996     
51997     /**
51998      * Suspend the LayoutManager from doing auto-layouts while
51999      * making multiple add or remove calls
52000      */
52001     beginUpdate : function(){
52002         this.updating = true;    
52003     },
52004     
52005     /**
52006      * Restore auto-layouts and optionally disable the manager from performing a layout
52007      * @param {Boolean} noLayout true to disable a layout update 
52008      */
52009     endUpdate : function(noLayout){
52010         this.updating = false;
52011         if(!noLayout){
52012             this.layout();
52013         }    
52014     },
52015     
52016     layout: function(){
52017         
52018     },
52019     
52020     onRegionResized : function(region, newSize){
52021         this.fireEvent("regionresized", region, newSize);
52022         this.layout();
52023     },
52024     
52025     onRegionCollapsed : function(region){
52026         this.fireEvent("regioncollapsed", region);
52027     },
52028     
52029     onRegionExpanded : function(region){
52030         this.fireEvent("regionexpanded", region);
52031     },
52032         
52033     /**
52034      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
52035      * performs box-model adjustments.
52036      * @return {Object} The size as an object {width: (the width), height: (the height)}
52037      */
52038     getViewSize : function(){
52039         var size;
52040         if(this.el.dom != document.body){
52041             size = this.el.getSize();
52042         }else{
52043             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
52044         }
52045         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
52046         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
52047         return size;
52048     },
52049     
52050     /**
52051      * Returns the Element this layout is bound to.
52052      * @return {Roo.Element}
52053      */
52054     getEl : function(){
52055         return this.el;
52056     },
52057     
52058     /**
52059      * Returns the specified region.
52060      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
52061      * @return {Roo.LayoutRegion}
52062      */
52063     getRegion : function(target){
52064         return this.regions[target.toLowerCase()];
52065     },
52066     
52067     onWindowResize : function(){
52068         if(this.monitorWindowResize){
52069             this.layout();
52070         }
52071     }
52072 });/*
52073  * Based on:
52074  * Ext JS Library 1.1.1
52075  * Copyright(c) 2006-2007, Ext JS, LLC.
52076  *
52077  * Originally Released Under LGPL - original licence link has changed is not relivant.
52078  *
52079  * Fork - LGPL
52080  * <script type="text/javascript">
52081  */
52082 /**
52083  * @class Roo.BorderLayout
52084  * @extends Roo.LayoutManager
52085  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52086  * please see: <br><br>
52087  * <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>
52088  * <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>
52089  * Example:
52090  <pre><code>
52091  var layout = new Roo.BorderLayout(document.body, {
52092     north: {
52093         initialSize: 25,
52094         titlebar: false
52095     },
52096     west: {
52097         split:true,
52098         initialSize: 200,
52099         minSize: 175,
52100         maxSize: 400,
52101         titlebar: true,
52102         collapsible: true
52103     },
52104     east: {
52105         split:true,
52106         initialSize: 202,
52107         minSize: 175,
52108         maxSize: 400,
52109         titlebar: true,
52110         collapsible: true
52111     },
52112     south: {
52113         split:true,
52114         initialSize: 100,
52115         minSize: 100,
52116         maxSize: 200,
52117         titlebar: true,
52118         collapsible: true
52119     },
52120     center: {
52121         titlebar: true,
52122         autoScroll:true,
52123         resizeTabs: true,
52124         minTabWidth: 50,
52125         preferredTabWidth: 150
52126     }
52127 });
52128
52129 // shorthand
52130 var CP = Roo.ContentPanel;
52131
52132 layout.beginUpdate();
52133 layout.add("north", new CP("north", "North"));
52134 layout.add("south", new CP("south", {title: "South", closable: true}));
52135 layout.add("west", new CP("west", {title: "West"}));
52136 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52137 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52138 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52139 layout.getRegion("center").showPanel("center1");
52140 layout.endUpdate();
52141 </code></pre>
52142
52143 <b>The container the layout is rendered into can be either the body element or any other element.
52144 If it is not the body element, the container needs to either be an absolute positioned element,
52145 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52146 the container size if it is not the body element.</b>
52147
52148 * @constructor
52149 * Create a new BorderLayout
52150 * @param {String/HTMLElement/Element} container The container this layout is bound to
52151 * @param {Object} config Configuration options
52152  */
52153 Roo.BorderLayout = function(container, config){
52154     config = config || {};
52155     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52156     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52157     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52158         var target = this.factory.validRegions[i];
52159         if(config[target]){
52160             this.addRegion(target, config[target]);
52161         }
52162     }
52163 };
52164
52165 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52166     /**
52167      * Creates and adds a new region if it doesn't already exist.
52168      * @param {String} target The target region key (north, south, east, west or center).
52169      * @param {Object} config The regions config object
52170      * @return {BorderLayoutRegion} The new region
52171      */
52172     addRegion : function(target, config){
52173         if(!this.regions[target]){
52174             var r = this.factory.create(target, this, config);
52175             this.bindRegion(target, r);
52176         }
52177         return this.regions[target];
52178     },
52179
52180     // private (kinda)
52181     bindRegion : function(name, r){
52182         this.regions[name] = r;
52183         r.on("visibilitychange", this.layout, this);
52184         r.on("paneladded", this.layout, this);
52185         r.on("panelremoved", this.layout, this);
52186         r.on("invalidated", this.layout, this);
52187         r.on("resized", this.onRegionResized, this);
52188         r.on("collapsed", this.onRegionCollapsed, this);
52189         r.on("expanded", this.onRegionExpanded, this);
52190     },
52191
52192     /**
52193      * Performs a layout update.
52194      */
52195     layout : function(){
52196         if(this.updating) {
52197             return;
52198         }
52199         var size = this.getViewSize();
52200         var w = size.width;
52201         var h = size.height;
52202         var centerW = w;
52203         var centerH = h;
52204         var centerY = 0;
52205         var centerX = 0;
52206         //var x = 0, y = 0;
52207
52208         var rs = this.regions;
52209         var north = rs["north"];
52210         var south = rs["south"]; 
52211         var west = rs["west"];
52212         var east = rs["east"];
52213         var center = rs["center"];
52214         //if(this.hideOnLayout){ // not supported anymore
52215             //c.el.setStyle("display", "none");
52216         //}
52217         if(north && north.isVisible()){
52218             var b = north.getBox();
52219             var m = north.getMargins();
52220             b.width = w - (m.left+m.right);
52221             b.x = m.left;
52222             b.y = m.top;
52223             centerY = b.height + b.y + m.bottom;
52224             centerH -= centerY;
52225             north.updateBox(this.safeBox(b));
52226         }
52227         if(south && south.isVisible()){
52228             var b = south.getBox();
52229             var m = south.getMargins();
52230             b.width = w - (m.left+m.right);
52231             b.x = m.left;
52232             var totalHeight = (b.height + m.top + m.bottom);
52233             b.y = h - totalHeight + m.top;
52234             centerH -= totalHeight;
52235             south.updateBox(this.safeBox(b));
52236         }
52237         if(west && west.isVisible()){
52238             var b = west.getBox();
52239             var m = west.getMargins();
52240             b.height = centerH - (m.top+m.bottom);
52241             b.x = m.left;
52242             b.y = centerY + m.top;
52243             var totalWidth = (b.width + m.left + m.right);
52244             centerX += totalWidth;
52245             centerW -= totalWidth;
52246             west.updateBox(this.safeBox(b));
52247         }
52248         if(east && east.isVisible()){
52249             var b = east.getBox();
52250             var m = east.getMargins();
52251             b.height = centerH - (m.top+m.bottom);
52252             var totalWidth = (b.width + m.left + m.right);
52253             b.x = w - totalWidth + m.left;
52254             b.y = centerY + m.top;
52255             centerW -= totalWidth;
52256             east.updateBox(this.safeBox(b));
52257         }
52258         if(center){
52259             var m = center.getMargins();
52260             var centerBox = {
52261                 x: centerX + m.left,
52262                 y: centerY + m.top,
52263                 width: centerW - (m.left+m.right),
52264                 height: centerH - (m.top+m.bottom)
52265             };
52266             //if(this.hideOnLayout){
52267                 //center.el.setStyle("display", "block");
52268             //}
52269             center.updateBox(this.safeBox(centerBox));
52270         }
52271         this.el.repaint();
52272         this.fireEvent("layout", this);
52273     },
52274
52275     // private
52276     safeBox : function(box){
52277         box.width = Math.max(0, box.width);
52278         box.height = Math.max(0, box.height);
52279         return box;
52280     },
52281
52282     /**
52283      * Adds a ContentPanel (or subclass) to this layout.
52284      * @param {String} target The target region key (north, south, east, west or center).
52285      * @param {Roo.ContentPanel} panel The panel to add
52286      * @return {Roo.ContentPanel} The added panel
52287      */
52288     add : function(target, panel){
52289          
52290         target = target.toLowerCase();
52291         return this.regions[target].add(panel);
52292     },
52293
52294     /**
52295      * Remove a ContentPanel (or subclass) to this layout.
52296      * @param {String} target The target region key (north, south, east, west or center).
52297      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52298      * @return {Roo.ContentPanel} The removed panel
52299      */
52300     remove : function(target, panel){
52301         target = target.toLowerCase();
52302         return this.regions[target].remove(panel);
52303     },
52304
52305     /**
52306      * Searches all regions for a panel with the specified id
52307      * @param {String} panelId
52308      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52309      */
52310     findPanel : function(panelId){
52311         var rs = this.regions;
52312         for(var target in rs){
52313             if(typeof rs[target] != "function"){
52314                 var p = rs[target].getPanel(panelId);
52315                 if(p){
52316                     return p;
52317                 }
52318             }
52319         }
52320         return null;
52321     },
52322
52323     /**
52324      * Searches all regions for a panel with the specified id and activates (shows) it.
52325      * @param {String/ContentPanel} panelId The panels id or the panel itself
52326      * @return {Roo.ContentPanel} The shown panel or null
52327      */
52328     showPanel : function(panelId) {
52329       var rs = this.regions;
52330       for(var target in rs){
52331          var r = rs[target];
52332          if(typeof r != "function"){
52333             if(r.hasPanel(panelId)){
52334                return r.showPanel(panelId);
52335             }
52336          }
52337       }
52338       return null;
52339    },
52340
52341    /**
52342      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52343      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52344      */
52345     restoreState : function(provider){
52346         if(!provider){
52347             provider = Roo.state.Manager;
52348         }
52349         var sm = new Roo.LayoutStateManager();
52350         sm.init(this, provider);
52351     },
52352
52353     /**
52354      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52355      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52356      * a valid ContentPanel config object.  Example:
52357      * <pre><code>
52358 // Create the main layout
52359 var layout = new Roo.BorderLayout('main-ct', {
52360     west: {
52361         split:true,
52362         minSize: 175,
52363         titlebar: true
52364     },
52365     center: {
52366         title:'Components'
52367     }
52368 }, 'main-ct');
52369
52370 // Create and add multiple ContentPanels at once via configs
52371 layout.batchAdd({
52372    west: {
52373        id: 'source-files',
52374        autoCreate:true,
52375        title:'Ext Source Files',
52376        autoScroll:true,
52377        fitToFrame:true
52378    },
52379    center : {
52380        el: cview,
52381        autoScroll:true,
52382        fitToFrame:true,
52383        toolbar: tb,
52384        resizeEl:'cbody'
52385    }
52386 });
52387 </code></pre>
52388      * @param {Object} regions An object containing ContentPanel configs by region name
52389      */
52390     batchAdd : function(regions){
52391         this.beginUpdate();
52392         for(var rname in regions){
52393             var lr = this.regions[rname];
52394             if(lr){
52395                 this.addTypedPanels(lr, regions[rname]);
52396             }
52397         }
52398         this.endUpdate();
52399     },
52400
52401     // private
52402     addTypedPanels : function(lr, ps){
52403         if(typeof ps == 'string'){
52404             lr.add(new Roo.ContentPanel(ps));
52405         }
52406         else if(ps instanceof Array){
52407             for(var i =0, len = ps.length; i < len; i++){
52408                 this.addTypedPanels(lr, ps[i]);
52409             }
52410         }
52411         else if(!ps.events){ // raw config?
52412             var el = ps.el;
52413             delete ps.el; // prevent conflict
52414             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52415         }
52416         else {  // panel object assumed!
52417             lr.add(ps);
52418         }
52419     },
52420     /**
52421      * Adds a xtype elements to the layout.
52422      * <pre><code>
52423
52424 layout.addxtype({
52425        xtype : 'ContentPanel',
52426        region: 'west',
52427        items: [ .... ]
52428    }
52429 );
52430
52431 layout.addxtype({
52432         xtype : 'NestedLayoutPanel',
52433         region: 'west',
52434         layout: {
52435            center: { },
52436            west: { }   
52437         },
52438         items : [ ... list of content panels or nested layout panels.. ]
52439    }
52440 );
52441 </code></pre>
52442      * @param {Object} cfg Xtype definition of item to add.
52443      */
52444     addxtype : function(cfg)
52445     {
52446         // basically accepts a pannel...
52447         // can accept a layout region..!?!?
52448         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52449         
52450         if (!cfg.xtype.match(/Panel$/)) {
52451             return false;
52452         }
52453         var ret = false;
52454         
52455         if (typeof(cfg.region) == 'undefined') {
52456             Roo.log("Failed to add Panel, region was not set");
52457             Roo.log(cfg);
52458             return false;
52459         }
52460         var region = cfg.region;
52461         delete cfg.region;
52462         
52463           
52464         var xitems = [];
52465         if (cfg.items) {
52466             xitems = cfg.items;
52467             delete cfg.items;
52468         }
52469         var nb = false;
52470         
52471         switch(cfg.xtype) 
52472         {
52473             case 'ContentPanel':  // ContentPanel (el, cfg)
52474             case 'ScrollPanel':  // ContentPanel (el, cfg)
52475             case 'ViewPanel': 
52476                 if(cfg.autoCreate) {
52477                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52478                 } else {
52479                     var el = this.el.createChild();
52480                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52481                 }
52482                 
52483                 this.add(region, ret);
52484                 break;
52485             
52486             
52487             case 'TreePanel': // our new panel!
52488                 cfg.el = this.el.createChild();
52489                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52490                 this.add(region, ret);
52491                 break;
52492             
52493             case 'NestedLayoutPanel': 
52494                 // create a new Layout (which is  a Border Layout...
52495                 var el = this.el.createChild();
52496                 var clayout = cfg.layout;
52497                 delete cfg.layout;
52498                 clayout.items   = clayout.items  || [];
52499                 // replace this exitems with the clayout ones..
52500                 xitems = clayout.items;
52501                  
52502                 
52503                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52504                     cfg.background = false;
52505                 }
52506                 var layout = new Roo.BorderLayout(el, clayout);
52507                 
52508                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52509                 //console.log('adding nested layout panel '  + cfg.toSource());
52510                 this.add(region, ret);
52511                 nb = {}; /// find first...
52512                 break;
52513                 
52514             case 'GridPanel': 
52515             
52516                 // needs grid and region
52517                 
52518                 //var el = this.getRegion(region).el.createChild();
52519                 var el = this.el.createChild();
52520                 // create the grid first...
52521                 
52522                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52523                 delete cfg.grid;
52524                 if (region == 'center' && this.active ) {
52525                     cfg.background = false;
52526                 }
52527                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52528                 
52529                 this.add(region, ret);
52530                 if (cfg.background) {
52531                     ret.on('activate', function(gp) {
52532                         if (!gp.grid.rendered) {
52533                             gp.grid.render();
52534                         }
52535                     });
52536                 } else {
52537                     grid.render();
52538                 }
52539                 break;
52540            
52541            
52542            
52543                 
52544                 
52545                 
52546             default:
52547                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52548                     
52549                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52550                     this.add(region, ret);
52551                 } else {
52552                 
52553                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52554                     return null;
52555                 }
52556                 
52557              // GridPanel (grid, cfg)
52558             
52559         }
52560         this.beginUpdate();
52561         // add children..
52562         var region = '';
52563         var abn = {};
52564         Roo.each(xitems, function(i)  {
52565             region = nb && i.region ? i.region : false;
52566             
52567             var add = ret.addxtype(i);
52568            
52569             if (region) {
52570                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52571                 if (!i.background) {
52572                     abn[region] = nb[region] ;
52573                 }
52574             }
52575             
52576         });
52577         this.endUpdate();
52578
52579         // make the last non-background panel active..
52580         //if (nb) { Roo.log(abn); }
52581         if (nb) {
52582             
52583             for(var r in abn) {
52584                 region = this.getRegion(r);
52585                 if (region) {
52586                     // tried using nb[r], but it does not work..
52587                      
52588                     region.showPanel(abn[r]);
52589                    
52590                 }
52591             }
52592         }
52593         return ret;
52594         
52595     }
52596 });
52597
52598 /**
52599  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52600  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52601  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52602  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52603  * <pre><code>
52604 // shorthand
52605 var CP = Roo.ContentPanel;
52606
52607 var layout = Roo.BorderLayout.create({
52608     north: {
52609         initialSize: 25,
52610         titlebar: false,
52611         panels: [new CP("north", "North")]
52612     },
52613     west: {
52614         split:true,
52615         initialSize: 200,
52616         minSize: 175,
52617         maxSize: 400,
52618         titlebar: true,
52619         collapsible: true,
52620         panels: [new CP("west", {title: "West"})]
52621     },
52622     east: {
52623         split:true,
52624         initialSize: 202,
52625         minSize: 175,
52626         maxSize: 400,
52627         titlebar: true,
52628         collapsible: true,
52629         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52630     },
52631     south: {
52632         split:true,
52633         initialSize: 100,
52634         minSize: 100,
52635         maxSize: 200,
52636         titlebar: true,
52637         collapsible: true,
52638         panels: [new CP("south", {title: "South", closable: true})]
52639     },
52640     center: {
52641         titlebar: true,
52642         autoScroll:true,
52643         resizeTabs: true,
52644         minTabWidth: 50,
52645         preferredTabWidth: 150,
52646         panels: [
52647             new CP("center1", {title: "Close Me", closable: true}),
52648             new CP("center2", {title: "Center Panel", closable: false})
52649         ]
52650     }
52651 }, document.body);
52652
52653 layout.getRegion("center").showPanel("center1");
52654 </code></pre>
52655  * @param config
52656  * @param targetEl
52657  */
52658 Roo.BorderLayout.create = function(config, targetEl){
52659     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52660     layout.beginUpdate();
52661     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52662     for(var j = 0, jlen = regions.length; j < jlen; j++){
52663         var lr = regions[j];
52664         if(layout.regions[lr] && config[lr].panels){
52665             var r = layout.regions[lr];
52666             var ps = config[lr].panels;
52667             layout.addTypedPanels(r, ps);
52668         }
52669     }
52670     layout.endUpdate();
52671     return layout;
52672 };
52673
52674 // private
52675 Roo.BorderLayout.RegionFactory = {
52676     // private
52677     validRegions : ["north","south","east","west","center"],
52678
52679     // private
52680     create : function(target, mgr, config){
52681         target = target.toLowerCase();
52682         if(config.lightweight || config.basic){
52683             return new Roo.BasicLayoutRegion(mgr, config, target);
52684         }
52685         switch(target){
52686             case "north":
52687                 return new Roo.NorthLayoutRegion(mgr, config);
52688             case "south":
52689                 return new Roo.SouthLayoutRegion(mgr, config);
52690             case "east":
52691                 return new Roo.EastLayoutRegion(mgr, config);
52692             case "west":
52693                 return new Roo.WestLayoutRegion(mgr, config);
52694             case "center":
52695                 return new Roo.CenterLayoutRegion(mgr, config);
52696         }
52697         throw 'Layout region "'+target+'" not supported.';
52698     }
52699 };/*
52700  * Based on:
52701  * Ext JS Library 1.1.1
52702  * Copyright(c) 2006-2007, Ext JS, LLC.
52703  *
52704  * Originally Released Under LGPL - original licence link has changed is not relivant.
52705  *
52706  * Fork - LGPL
52707  * <script type="text/javascript">
52708  */
52709  
52710 /**
52711  * @class Roo.BasicLayoutRegion
52712  * @extends Roo.util.Observable
52713  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52714  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52715  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52716  */
52717 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52718     this.mgr = mgr;
52719     this.position  = pos;
52720     this.events = {
52721         /**
52722          * @scope Roo.BasicLayoutRegion
52723          */
52724         
52725         /**
52726          * @event beforeremove
52727          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52728          * @param {Roo.LayoutRegion} this
52729          * @param {Roo.ContentPanel} panel The panel
52730          * @param {Object} e The cancel event object
52731          */
52732         "beforeremove" : true,
52733         /**
52734          * @event invalidated
52735          * Fires when the layout for this region is changed.
52736          * @param {Roo.LayoutRegion} this
52737          */
52738         "invalidated" : true,
52739         /**
52740          * @event visibilitychange
52741          * Fires when this region is shown or hidden 
52742          * @param {Roo.LayoutRegion} this
52743          * @param {Boolean} visibility true or false
52744          */
52745         "visibilitychange" : true,
52746         /**
52747          * @event paneladded
52748          * Fires when a panel is added. 
52749          * @param {Roo.LayoutRegion} this
52750          * @param {Roo.ContentPanel} panel The panel
52751          */
52752         "paneladded" : true,
52753         /**
52754          * @event panelremoved
52755          * Fires when a panel is removed. 
52756          * @param {Roo.LayoutRegion} this
52757          * @param {Roo.ContentPanel} panel The panel
52758          */
52759         "panelremoved" : true,
52760         /**
52761          * @event beforecollapse
52762          * Fires when this region before collapse.
52763          * @param {Roo.LayoutRegion} this
52764          */
52765         "beforecollapse" : true,
52766         /**
52767          * @event collapsed
52768          * Fires when this region is collapsed.
52769          * @param {Roo.LayoutRegion} this
52770          */
52771         "collapsed" : true,
52772         /**
52773          * @event expanded
52774          * Fires when this region is expanded.
52775          * @param {Roo.LayoutRegion} this
52776          */
52777         "expanded" : true,
52778         /**
52779          * @event slideshow
52780          * Fires when this region is slid into view.
52781          * @param {Roo.LayoutRegion} this
52782          */
52783         "slideshow" : true,
52784         /**
52785          * @event slidehide
52786          * Fires when this region slides out of view. 
52787          * @param {Roo.LayoutRegion} this
52788          */
52789         "slidehide" : true,
52790         /**
52791          * @event panelactivated
52792          * Fires when a panel is activated. 
52793          * @param {Roo.LayoutRegion} this
52794          * @param {Roo.ContentPanel} panel The activated panel
52795          */
52796         "panelactivated" : true,
52797         /**
52798          * @event resized
52799          * Fires when the user resizes this region. 
52800          * @param {Roo.LayoutRegion} this
52801          * @param {Number} newSize The new size (width for east/west, height for north/south)
52802          */
52803         "resized" : true
52804     };
52805     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52806     this.panels = new Roo.util.MixedCollection();
52807     this.panels.getKey = this.getPanelId.createDelegate(this);
52808     this.box = null;
52809     this.activePanel = null;
52810     // ensure listeners are added...
52811     
52812     if (config.listeners || config.events) {
52813         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52814             listeners : config.listeners || {},
52815             events : config.events || {}
52816         });
52817     }
52818     
52819     if(skipConfig !== true){
52820         this.applyConfig(config);
52821     }
52822 };
52823
52824 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52825     getPanelId : function(p){
52826         return p.getId();
52827     },
52828     
52829     applyConfig : function(config){
52830         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52831         this.config = config;
52832         
52833     },
52834     
52835     /**
52836      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52837      * the width, for horizontal (north, south) the height.
52838      * @param {Number} newSize The new width or height
52839      */
52840     resizeTo : function(newSize){
52841         var el = this.el ? this.el :
52842                  (this.activePanel ? this.activePanel.getEl() : null);
52843         if(el){
52844             switch(this.position){
52845                 case "east":
52846                 case "west":
52847                     el.setWidth(newSize);
52848                     this.fireEvent("resized", this, newSize);
52849                 break;
52850                 case "north":
52851                 case "south":
52852                     el.setHeight(newSize);
52853                     this.fireEvent("resized", this, newSize);
52854                 break;                
52855             }
52856         }
52857     },
52858     
52859     getBox : function(){
52860         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52861     },
52862     
52863     getMargins : function(){
52864         return this.margins;
52865     },
52866     
52867     updateBox : function(box){
52868         this.box = box;
52869         var el = this.activePanel.getEl();
52870         el.dom.style.left = box.x + "px";
52871         el.dom.style.top = box.y + "px";
52872         this.activePanel.setSize(box.width, box.height);
52873     },
52874     
52875     /**
52876      * Returns the container element for this region.
52877      * @return {Roo.Element}
52878      */
52879     getEl : function(){
52880         return this.activePanel;
52881     },
52882     
52883     /**
52884      * Returns true if this region is currently visible.
52885      * @return {Boolean}
52886      */
52887     isVisible : function(){
52888         return this.activePanel ? true : false;
52889     },
52890     
52891     setActivePanel : function(panel){
52892         panel = this.getPanel(panel);
52893         if(this.activePanel && this.activePanel != panel){
52894             this.activePanel.setActiveState(false);
52895             this.activePanel.getEl().setLeftTop(-10000,-10000);
52896         }
52897         this.activePanel = panel;
52898         panel.setActiveState(true);
52899         if(this.box){
52900             panel.setSize(this.box.width, this.box.height);
52901         }
52902         this.fireEvent("panelactivated", this, panel);
52903         this.fireEvent("invalidated");
52904     },
52905     
52906     /**
52907      * Show the specified panel.
52908      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52909      * @return {Roo.ContentPanel} The shown panel or null
52910      */
52911     showPanel : function(panel){
52912         if(panel = this.getPanel(panel)){
52913             this.setActivePanel(panel);
52914         }
52915         return panel;
52916     },
52917     
52918     /**
52919      * Get the active panel for this region.
52920      * @return {Roo.ContentPanel} The active panel or null
52921      */
52922     getActivePanel : function(){
52923         return this.activePanel;
52924     },
52925     
52926     /**
52927      * Add the passed ContentPanel(s)
52928      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52929      * @return {Roo.ContentPanel} The panel added (if only one was added)
52930      */
52931     add : function(panel){
52932         if(arguments.length > 1){
52933             for(var i = 0, len = arguments.length; i < len; i++) {
52934                 this.add(arguments[i]);
52935             }
52936             return null;
52937         }
52938         if(this.hasPanel(panel)){
52939             this.showPanel(panel);
52940             return panel;
52941         }
52942         var el = panel.getEl();
52943         if(el.dom.parentNode != this.mgr.el.dom){
52944             this.mgr.el.dom.appendChild(el.dom);
52945         }
52946         if(panel.setRegion){
52947             panel.setRegion(this);
52948         }
52949         this.panels.add(panel);
52950         el.setStyle("position", "absolute");
52951         if(!panel.background){
52952             this.setActivePanel(panel);
52953             if(this.config.initialSize && this.panels.getCount()==1){
52954                 this.resizeTo(this.config.initialSize);
52955             }
52956         }
52957         this.fireEvent("paneladded", this, panel);
52958         return panel;
52959     },
52960     
52961     /**
52962      * Returns true if the panel is in this region.
52963      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52964      * @return {Boolean}
52965      */
52966     hasPanel : function(panel){
52967         if(typeof panel == "object"){ // must be panel obj
52968             panel = panel.getId();
52969         }
52970         return this.getPanel(panel) ? true : false;
52971     },
52972     
52973     /**
52974      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52975      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52976      * @param {Boolean} preservePanel Overrides the config preservePanel option
52977      * @return {Roo.ContentPanel} The panel that was removed
52978      */
52979     remove : function(panel, preservePanel){
52980         panel = this.getPanel(panel);
52981         if(!panel){
52982             return null;
52983         }
52984         var e = {};
52985         this.fireEvent("beforeremove", this, panel, e);
52986         if(e.cancel === true){
52987             return null;
52988         }
52989         var panelId = panel.getId();
52990         this.panels.removeKey(panelId);
52991         return panel;
52992     },
52993     
52994     /**
52995      * Returns the panel specified or null if it's not in this region.
52996      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52997      * @return {Roo.ContentPanel}
52998      */
52999     getPanel : function(id){
53000         if(typeof id == "object"){ // must be panel obj
53001             return id;
53002         }
53003         return this.panels.get(id);
53004     },
53005     
53006     /**
53007      * Returns this regions position (north/south/east/west/center).
53008      * @return {String} 
53009      */
53010     getPosition: function(){
53011         return this.position;    
53012     }
53013 });/*
53014  * Based on:
53015  * Ext JS Library 1.1.1
53016  * Copyright(c) 2006-2007, Ext JS, LLC.
53017  *
53018  * Originally Released Under LGPL - original licence link has changed is not relivant.
53019  *
53020  * Fork - LGPL
53021  * <script type="text/javascript">
53022  */
53023  
53024 /**
53025  * @class Roo.LayoutRegion
53026  * @extends Roo.BasicLayoutRegion
53027  * This class represents a region in a layout manager.
53028  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
53029  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
53030  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
53031  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
53032  * @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})
53033  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
53034  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
53035  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
53036  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
53037  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
53038  * @cfg {String}    title           The title for the region (overrides panel titles)
53039  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
53040  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
53041  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
53042  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
53043  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
53044  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
53045  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
53046  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
53047  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
53048  * @cfg {Boolean}   showPin         True to show a pin button
53049  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
53050  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
53051  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
53052  * @cfg {Number}    width           For East/West panels
53053  * @cfg {Number}    height          For North/South panels
53054  * @cfg {Boolean}   split           To show the splitter
53055  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
53056  */
53057 Roo.LayoutRegion = function(mgr, config, pos){
53058     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
53059     var dh = Roo.DomHelper;
53060     /** This region's container element 
53061     * @type Roo.Element */
53062     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53063     /** This region's title element 
53064     * @type Roo.Element */
53065
53066     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53067         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53068         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53069     ]}, true);
53070     this.titleEl.enableDisplayMode();
53071     /** This region's title text element 
53072     * @type HTMLElement */
53073     this.titleTextEl = this.titleEl.dom.firstChild;
53074     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53075     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53076     this.closeBtn.enableDisplayMode();
53077     this.closeBtn.on("click", this.closeClicked, this);
53078     this.closeBtn.hide();
53079
53080     this.createBody(config);
53081     this.visible = true;
53082     this.collapsed = false;
53083
53084     if(config.hideWhenEmpty){
53085         this.hide();
53086         this.on("paneladded", this.validateVisibility, this);
53087         this.on("panelremoved", this.validateVisibility, this);
53088     }
53089     this.applyConfig(config);
53090 };
53091
53092 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53093
53094     createBody : function(){
53095         /** This region's body element 
53096         * @type Roo.Element */
53097         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53098     },
53099
53100     applyConfig : function(c){
53101         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53102             var dh = Roo.DomHelper;
53103             if(c.titlebar !== false){
53104                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53105                 this.collapseBtn.on("click", this.collapse, this);
53106                 this.collapseBtn.enableDisplayMode();
53107
53108                 if(c.showPin === true || this.showPin){
53109                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53110                     this.stickBtn.enableDisplayMode();
53111                     this.stickBtn.on("click", this.expand, this);
53112                     this.stickBtn.hide();
53113                 }
53114             }
53115             /** This region's collapsed element
53116             * @type Roo.Element */
53117             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53118                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53119             ]}, true);
53120             if(c.floatable !== false){
53121                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53122                this.collapsedEl.on("click", this.collapseClick, this);
53123             }
53124
53125             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53126                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53127                    id: "message", unselectable: "on", style:{"float":"left"}});
53128                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53129              }
53130             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53131             this.expandBtn.on("click", this.expand, this);
53132         }
53133         if(this.collapseBtn){
53134             this.collapseBtn.setVisible(c.collapsible == true);
53135         }
53136         this.cmargins = c.cmargins || this.cmargins ||
53137                          (this.position == "west" || this.position == "east" ?
53138                              {top: 0, left: 2, right:2, bottom: 0} :
53139                              {top: 2, left: 0, right:0, bottom: 2});
53140         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53141         this.bottomTabs = c.tabPosition != "top";
53142         this.autoScroll = c.autoScroll || false;
53143         if(this.autoScroll){
53144             this.bodyEl.setStyle("overflow", "auto");
53145         }else{
53146             this.bodyEl.setStyle("overflow", "hidden");
53147         }
53148         //if(c.titlebar !== false){
53149             if((!c.titlebar && !c.title) || c.titlebar === false){
53150                 this.titleEl.hide();
53151             }else{
53152                 this.titleEl.show();
53153                 if(c.title){
53154                     this.titleTextEl.innerHTML = c.title;
53155                 }
53156             }
53157         //}
53158         this.duration = c.duration || .30;
53159         this.slideDuration = c.slideDuration || .45;
53160         this.config = c;
53161         if(c.collapsed){
53162             this.collapse(true);
53163         }
53164         if(c.hidden){
53165             this.hide();
53166         }
53167     },
53168     /**
53169      * Returns true if this region is currently visible.
53170      * @return {Boolean}
53171      */
53172     isVisible : function(){
53173         return this.visible;
53174     },
53175
53176     /**
53177      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53178      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53179      */
53180     setCollapsedTitle : function(title){
53181         title = title || "&#160;";
53182         if(this.collapsedTitleTextEl){
53183             this.collapsedTitleTextEl.innerHTML = title;
53184         }
53185     },
53186
53187     getBox : function(){
53188         var b;
53189         if(!this.collapsed){
53190             b = this.el.getBox(false, true);
53191         }else{
53192             b = this.collapsedEl.getBox(false, true);
53193         }
53194         return b;
53195     },
53196
53197     getMargins : function(){
53198         return this.collapsed ? this.cmargins : this.margins;
53199     },
53200
53201     highlight : function(){
53202         this.el.addClass("x-layout-panel-dragover");
53203     },
53204
53205     unhighlight : function(){
53206         this.el.removeClass("x-layout-panel-dragover");
53207     },
53208
53209     updateBox : function(box){
53210         this.box = box;
53211         if(!this.collapsed){
53212             this.el.dom.style.left = box.x + "px";
53213             this.el.dom.style.top = box.y + "px";
53214             this.updateBody(box.width, box.height);
53215         }else{
53216             this.collapsedEl.dom.style.left = box.x + "px";
53217             this.collapsedEl.dom.style.top = box.y + "px";
53218             this.collapsedEl.setSize(box.width, box.height);
53219         }
53220         if(this.tabs){
53221             this.tabs.autoSizeTabs();
53222         }
53223     },
53224
53225     updateBody : function(w, h){
53226         if(w !== null){
53227             this.el.setWidth(w);
53228             w -= this.el.getBorderWidth("rl");
53229             if(this.config.adjustments){
53230                 w += this.config.adjustments[0];
53231             }
53232         }
53233         if(h !== null){
53234             this.el.setHeight(h);
53235             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53236             h -= this.el.getBorderWidth("tb");
53237             if(this.config.adjustments){
53238                 h += this.config.adjustments[1];
53239             }
53240             this.bodyEl.setHeight(h);
53241             if(this.tabs){
53242                 h = this.tabs.syncHeight(h);
53243             }
53244         }
53245         if(this.panelSize){
53246             w = w !== null ? w : this.panelSize.width;
53247             h = h !== null ? h : this.panelSize.height;
53248         }
53249         if(this.activePanel){
53250             var el = this.activePanel.getEl();
53251             w = w !== null ? w : el.getWidth();
53252             h = h !== null ? h : el.getHeight();
53253             this.panelSize = {width: w, height: h};
53254             this.activePanel.setSize(w, h);
53255         }
53256         if(Roo.isIE && this.tabs){
53257             this.tabs.el.repaint();
53258         }
53259     },
53260
53261     /**
53262      * Returns the container element for this region.
53263      * @return {Roo.Element}
53264      */
53265     getEl : function(){
53266         return this.el;
53267     },
53268
53269     /**
53270      * Hides this region.
53271      */
53272     hide : function(){
53273         if(!this.collapsed){
53274             this.el.dom.style.left = "-2000px";
53275             this.el.hide();
53276         }else{
53277             this.collapsedEl.dom.style.left = "-2000px";
53278             this.collapsedEl.hide();
53279         }
53280         this.visible = false;
53281         this.fireEvent("visibilitychange", this, false);
53282     },
53283
53284     /**
53285      * Shows this region if it was previously hidden.
53286      */
53287     show : function(){
53288         if(!this.collapsed){
53289             this.el.show();
53290         }else{
53291             this.collapsedEl.show();
53292         }
53293         this.visible = true;
53294         this.fireEvent("visibilitychange", this, true);
53295     },
53296
53297     closeClicked : function(){
53298         if(this.activePanel){
53299             this.remove(this.activePanel);
53300         }
53301     },
53302
53303     collapseClick : function(e){
53304         if(this.isSlid){
53305            e.stopPropagation();
53306            this.slideIn();
53307         }else{
53308            e.stopPropagation();
53309            this.slideOut();
53310         }
53311     },
53312
53313     /**
53314      * Collapses this region.
53315      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53316      */
53317     collapse : function(skipAnim, skipCheck){
53318         if(this.collapsed) {
53319             return;
53320         }
53321         
53322         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53323             
53324             this.collapsed = true;
53325             if(this.split){
53326                 this.split.el.hide();
53327             }
53328             if(this.config.animate && skipAnim !== true){
53329                 this.fireEvent("invalidated", this);
53330                 this.animateCollapse();
53331             }else{
53332                 this.el.setLocation(-20000,-20000);
53333                 this.el.hide();
53334                 this.collapsedEl.show();
53335                 this.fireEvent("collapsed", this);
53336                 this.fireEvent("invalidated", this);
53337             }
53338         }
53339         
53340     },
53341
53342     animateCollapse : function(){
53343         // overridden
53344     },
53345
53346     /**
53347      * Expands this region if it was previously collapsed.
53348      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53349      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53350      */
53351     expand : function(e, skipAnim){
53352         if(e) {
53353             e.stopPropagation();
53354         }
53355         if(!this.collapsed || this.el.hasActiveFx()) {
53356             return;
53357         }
53358         if(this.isSlid){
53359             this.afterSlideIn();
53360             skipAnim = true;
53361         }
53362         this.collapsed = false;
53363         if(this.config.animate && skipAnim !== true){
53364             this.animateExpand();
53365         }else{
53366             this.el.show();
53367             if(this.split){
53368                 this.split.el.show();
53369             }
53370             this.collapsedEl.setLocation(-2000,-2000);
53371             this.collapsedEl.hide();
53372             this.fireEvent("invalidated", this);
53373             this.fireEvent("expanded", this);
53374         }
53375     },
53376
53377     animateExpand : function(){
53378         // overridden
53379     },
53380
53381     initTabs : function()
53382     {
53383         this.bodyEl.setStyle("overflow", "hidden");
53384         var ts = new Roo.TabPanel(
53385                 this.bodyEl.dom,
53386                 {
53387                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53388                     disableTooltips: this.config.disableTabTips,
53389                     toolbar : this.config.toolbar
53390                 }
53391         );
53392         if(this.config.hideTabs){
53393             ts.stripWrap.setDisplayed(false);
53394         }
53395         this.tabs = ts;
53396         ts.resizeTabs = this.config.resizeTabs === true;
53397         ts.minTabWidth = this.config.minTabWidth || 40;
53398         ts.maxTabWidth = this.config.maxTabWidth || 250;
53399         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53400         ts.monitorResize = false;
53401         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53402         ts.bodyEl.addClass('x-layout-tabs-body');
53403         this.panels.each(this.initPanelAsTab, this);
53404     },
53405
53406     initPanelAsTab : function(panel){
53407         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53408                     this.config.closeOnTab && panel.isClosable());
53409         if(panel.tabTip !== undefined){
53410             ti.setTooltip(panel.tabTip);
53411         }
53412         ti.on("activate", function(){
53413               this.setActivePanel(panel);
53414         }, this);
53415         if(this.config.closeOnTab){
53416             ti.on("beforeclose", function(t, e){
53417                 e.cancel = true;
53418                 this.remove(panel);
53419             }, this);
53420         }
53421         return ti;
53422     },
53423
53424     updatePanelTitle : function(panel, title){
53425         if(this.activePanel == panel){
53426             this.updateTitle(title);
53427         }
53428         if(this.tabs){
53429             var ti = this.tabs.getTab(panel.getEl().id);
53430             ti.setText(title);
53431             if(panel.tabTip !== undefined){
53432                 ti.setTooltip(panel.tabTip);
53433             }
53434         }
53435     },
53436
53437     updateTitle : function(title){
53438         if(this.titleTextEl && !this.config.title){
53439             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53440         }
53441     },
53442
53443     setActivePanel : function(panel){
53444         panel = this.getPanel(panel);
53445         if(this.activePanel && this.activePanel != panel){
53446             this.activePanel.setActiveState(false);
53447         }
53448         this.activePanel = panel;
53449         panel.setActiveState(true);
53450         if(this.panelSize){
53451             panel.setSize(this.panelSize.width, this.panelSize.height);
53452         }
53453         if(this.closeBtn){
53454             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53455         }
53456         this.updateTitle(panel.getTitle());
53457         if(this.tabs){
53458             this.fireEvent("invalidated", this);
53459         }
53460         this.fireEvent("panelactivated", this, panel);
53461     },
53462
53463     /**
53464      * Shows the specified panel.
53465      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53466      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53467      */
53468     showPanel : function(panel)
53469     {
53470         panel = this.getPanel(panel);
53471         if(panel){
53472             if(this.tabs){
53473                 var tab = this.tabs.getTab(panel.getEl().id);
53474                 if(tab.isHidden()){
53475                     this.tabs.unhideTab(tab.id);
53476                 }
53477                 tab.activate();
53478             }else{
53479                 this.setActivePanel(panel);
53480             }
53481         }
53482         return panel;
53483     },
53484
53485     /**
53486      * Get the active panel for this region.
53487      * @return {Roo.ContentPanel} The active panel or null
53488      */
53489     getActivePanel : function(){
53490         return this.activePanel;
53491     },
53492
53493     validateVisibility : function(){
53494         if(this.panels.getCount() < 1){
53495             this.updateTitle("&#160;");
53496             this.closeBtn.hide();
53497             this.hide();
53498         }else{
53499             if(!this.isVisible()){
53500                 this.show();
53501             }
53502         }
53503     },
53504
53505     /**
53506      * Adds the passed ContentPanel(s) to this region.
53507      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53508      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53509      */
53510     add : function(panel){
53511         if(arguments.length > 1){
53512             for(var i = 0, len = arguments.length; i < len; i++) {
53513                 this.add(arguments[i]);
53514             }
53515             return null;
53516         }
53517         if(this.hasPanel(panel)){
53518             this.showPanel(panel);
53519             return panel;
53520         }
53521         panel.setRegion(this);
53522         this.panels.add(panel);
53523         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53524             this.bodyEl.dom.appendChild(panel.getEl().dom);
53525             if(panel.background !== true){
53526                 this.setActivePanel(panel);
53527             }
53528             this.fireEvent("paneladded", this, panel);
53529             return panel;
53530         }
53531         if(!this.tabs){
53532             this.initTabs();
53533         }else{
53534             this.initPanelAsTab(panel);
53535         }
53536         if(panel.background !== true){
53537             this.tabs.activate(panel.getEl().id);
53538         }
53539         this.fireEvent("paneladded", this, panel);
53540         return panel;
53541     },
53542
53543     /**
53544      * Hides the tab for the specified panel.
53545      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53546      */
53547     hidePanel : function(panel){
53548         if(this.tabs && (panel = this.getPanel(panel))){
53549             this.tabs.hideTab(panel.getEl().id);
53550         }
53551     },
53552
53553     /**
53554      * Unhides the tab for a previously hidden panel.
53555      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53556      */
53557     unhidePanel : function(panel){
53558         if(this.tabs && (panel = this.getPanel(panel))){
53559             this.tabs.unhideTab(panel.getEl().id);
53560         }
53561     },
53562
53563     clearPanels : function(){
53564         while(this.panels.getCount() > 0){
53565              this.remove(this.panels.first());
53566         }
53567     },
53568
53569     /**
53570      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53571      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53572      * @param {Boolean} preservePanel Overrides the config preservePanel option
53573      * @return {Roo.ContentPanel} The panel that was removed
53574      */
53575     remove : function(panel, preservePanel){
53576         panel = this.getPanel(panel);
53577         if(!panel){
53578             return null;
53579         }
53580         var e = {};
53581         this.fireEvent("beforeremove", this, panel, e);
53582         if(e.cancel === true){
53583             return null;
53584         }
53585         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53586         var panelId = panel.getId();
53587         this.panels.removeKey(panelId);
53588         if(preservePanel){
53589             document.body.appendChild(panel.getEl().dom);
53590         }
53591         if(this.tabs){
53592             this.tabs.removeTab(panel.getEl().id);
53593         }else if (!preservePanel){
53594             this.bodyEl.dom.removeChild(panel.getEl().dom);
53595         }
53596         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53597             var p = this.panels.first();
53598             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53599             tempEl.appendChild(p.getEl().dom);
53600             this.bodyEl.update("");
53601             this.bodyEl.dom.appendChild(p.getEl().dom);
53602             tempEl = null;
53603             this.updateTitle(p.getTitle());
53604             this.tabs = null;
53605             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53606             this.setActivePanel(p);
53607         }
53608         panel.setRegion(null);
53609         if(this.activePanel == panel){
53610             this.activePanel = null;
53611         }
53612         if(this.config.autoDestroy !== false && preservePanel !== true){
53613             try{panel.destroy();}catch(e){}
53614         }
53615         this.fireEvent("panelremoved", this, panel);
53616         return panel;
53617     },
53618
53619     /**
53620      * Returns the TabPanel component used by this region
53621      * @return {Roo.TabPanel}
53622      */
53623     getTabs : function(){
53624         return this.tabs;
53625     },
53626
53627     createTool : function(parentEl, className){
53628         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53629             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53630         btn.addClassOnOver("x-layout-tools-button-over");
53631         return btn;
53632     }
53633 });/*
53634  * Based on:
53635  * Ext JS Library 1.1.1
53636  * Copyright(c) 2006-2007, Ext JS, LLC.
53637  *
53638  * Originally Released Under LGPL - original licence link has changed is not relivant.
53639  *
53640  * Fork - LGPL
53641  * <script type="text/javascript">
53642  */
53643  
53644
53645
53646 /**
53647  * @class Roo.SplitLayoutRegion
53648  * @extends Roo.LayoutRegion
53649  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53650  */
53651 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53652     this.cursor = cursor;
53653     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53654 };
53655
53656 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53657     splitTip : "Drag to resize.",
53658     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53659     useSplitTips : false,
53660
53661     applyConfig : function(config){
53662         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53663         if(config.split){
53664             if(!this.split){
53665                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53666                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53667                 /** The SplitBar for this region 
53668                 * @type Roo.SplitBar */
53669                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53670                 this.split.on("moved", this.onSplitMove, this);
53671                 this.split.useShim = config.useShim === true;
53672                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53673                 if(this.useSplitTips){
53674                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53675                 }
53676                 if(config.collapsible){
53677                     this.split.el.on("dblclick", this.collapse,  this);
53678                 }
53679             }
53680             if(typeof config.minSize != "undefined"){
53681                 this.split.minSize = config.minSize;
53682             }
53683             if(typeof config.maxSize != "undefined"){
53684                 this.split.maxSize = config.maxSize;
53685             }
53686             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53687                 this.hideSplitter();
53688             }
53689         }
53690     },
53691
53692     getHMaxSize : function(){
53693          var cmax = this.config.maxSize || 10000;
53694          var center = this.mgr.getRegion("center");
53695          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53696     },
53697
53698     getVMaxSize : function(){
53699          var cmax = this.config.maxSize || 10000;
53700          var center = this.mgr.getRegion("center");
53701          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53702     },
53703
53704     onSplitMove : function(split, newSize){
53705         this.fireEvent("resized", this, newSize);
53706     },
53707     
53708     /** 
53709      * Returns the {@link Roo.SplitBar} for this region.
53710      * @return {Roo.SplitBar}
53711      */
53712     getSplitBar : function(){
53713         return this.split;
53714     },
53715     
53716     hide : function(){
53717         this.hideSplitter();
53718         Roo.SplitLayoutRegion.superclass.hide.call(this);
53719     },
53720
53721     hideSplitter : function(){
53722         if(this.split){
53723             this.split.el.setLocation(-2000,-2000);
53724             this.split.el.hide();
53725         }
53726     },
53727
53728     show : function(){
53729         if(this.split){
53730             this.split.el.show();
53731         }
53732         Roo.SplitLayoutRegion.superclass.show.call(this);
53733     },
53734     
53735     beforeSlide: function(){
53736         if(Roo.isGecko){// firefox overflow auto bug workaround
53737             this.bodyEl.clip();
53738             if(this.tabs) {
53739                 this.tabs.bodyEl.clip();
53740             }
53741             if(this.activePanel){
53742                 this.activePanel.getEl().clip();
53743                 
53744                 if(this.activePanel.beforeSlide){
53745                     this.activePanel.beforeSlide();
53746                 }
53747             }
53748         }
53749     },
53750     
53751     afterSlide : function(){
53752         if(Roo.isGecko){// firefox overflow auto bug workaround
53753             this.bodyEl.unclip();
53754             if(this.tabs) {
53755                 this.tabs.bodyEl.unclip();
53756             }
53757             if(this.activePanel){
53758                 this.activePanel.getEl().unclip();
53759                 if(this.activePanel.afterSlide){
53760                     this.activePanel.afterSlide();
53761                 }
53762             }
53763         }
53764     },
53765
53766     initAutoHide : function(){
53767         if(this.autoHide !== false){
53768             if(!this.autoHideHd){
53769                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53770                 this.autoHideHd = {
53771                     "mouseout": function(e){
53772                         if(!e.within(this.el, true)){
53773                             st.delay(500);
53774                         }
53775                     },
53776                     "mouseover" : function(e){
53777                         st.cancel();
53778                     },
53779                     scope : this
53780                 };
53781             }
53782             this.el.on(this.autoHideHd);
53783         }
53784     },
53785
53786     clearAutoHide : function(){
53787         if(this.autoHide !== false){
53788             this.el.un("mouseout", this.autoHideHd.mouseout);
53789             this.el.un("mouseover", this.autoHideHd.mouseover);
53790         }
53791     },
53792
53793     clearMonitor : function(){
53794         Roo.get(document).un("click", this.slideInIf, this);
53795     },
53796
53797     // these names are backwards but not changed for compat
53798     slideOut : function(){
53799         if(this.isSlid || this.el.hasActiveFx()){
53800             return;
53801         }
53802         this.isSlid = true;
53803         if(this.collapseBtn){
53804             this.collapseBtn.hide();
53805         }
53806         this.closeBtnState = this.closeBtn.getStyle('display');
53807         this.closeBtn.hide();
53808         if(this.stickBtn){
53809             this.stickBtn.show();
53810         }
53811         this.el.show();
53812         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53813         this.beforeSlide();
53814         this.el.setStyle("z-index", 10001);
53815         this.el.slideIn(this.getSlideAnchor(), {
53816             callback: function(){
53817                 this.afterSlide();
53818                 this.initAutoHide();
53819                 Roo.get(document).on("click", this.slideInIf, this);
53820                 this.fireEvent("slideshow", this);
53821             },
53822             scope: this,
53823             block: true
53824         });
53825     },
53826
53827     afterSlideIn : function(){
53828         this.clearAutoHide();
53829         this.isSlid = false;
53830         this.clearMonitor();
53831         this.el.setStyle("z-index", "");
53832         if(this.collapseBtn){
53833             this.collapseBtn.show();
53834         }
53835         this.closeBtn.setStyle('display', this.closeBtnState);
53836         if(this.stickBtn){
53837             this.stickBtn.hide();
53838         }
53839         this.fireEvent("slidehide", this);
53840     },
53841
53842     slideIn : function(cb){
53843         if(!this.isSlid || this.el.hasActiveFx()){
53844             Roo.callback(cb);
53845             return;
53846         }
53847         this.isSlid = false;
53848         this.beforeSlide();
53849         this.el.slideOut(this.getSlideAnchor(), {
53850             callback: function(){
53851                 this.el.setLeftTop(-10000, -10000);
53852                 this.afterSlide();
53853                 this.afterSlideIn();
53854                 Roo.callback(cb);
53855             },
53856             scope: this,
53857             block: true
53858         });
53859     },
53860     
53861     slideInIf : function(e){
53862         if(!e.within(this.el)){
53863             this.slideIn();
53864         }
53865     },
53866
53867     animateCollapse : function(){
53868         this.beforeSlide();
53869         this.el.setStyle("z-index", 20000);
53870         var anchor = this.getSlideAnchor();
53871         this.el.slideOut(anchor, {
53872             callback : function(){
53873                 this.el.setStyle("z-index", "");
53874                 this.collapsedEl.slideIn(anchor, {duration:.3});
53875                 this.afterSlide();
53876                 this.el.setLocation(-10000,-10000);
53877                 this.el.hide();
53878                 this.fireEvent("collapsed", this);
53879             },
53880             scope: this,
53881             block: true
53882         });
53883     },
53884
53885     animateExpand : function(){
53886         this.beforeSlide();
53887         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53888         this.el.setStyle("z-index", 20000);
53889         this.collapsedEl.hide({
53890             duration:.1
53891         });
53892         this.el.slideIn(this.getSlideAnchor(), {
53893             callback : function(){
53894                 this.el.setStyle("z-index", "");
53895                 this.afterSlide();
53896                 if(this.split){
53897                     this.split.el.show();
53898                 }
53899                 this.fireEvent("invalidated", this);
53900                 this.fireEvent("expanded", this);
53901             },
53902             scope: this,
53903             block: true
53904         });
53905     },
53906
53907     anchors : {
53908         "west" : "left",
53909         "east" : "right",
53910         "north" : "top",
53911         "south" : "bottom"
53912     },
53913
53914     sanchors : {
53915         "west" : "l",
53916         "east" : "r",
53917         "north" : "t",
53918         "south" : "b"
53919     },
53920
53921     canchors : {
53922         "west" : "tl-tr",
53923         "east" : "tr-tl",
53924         "north" : "tl-bl",
53925         "south" : "bl-tl"
53926     },
53927
53928     getAnchor : function(){
53929         return this.anchors[this.position];
53930     },
53931
53932     getCollapseAnchor : function(){
53933         return this.canchors[this.position];
53934     },
53935
53936     getSlideAnchor : function(){
53937         return this.sanchors[this.position];
53938     },
53939
53940     getAlignAdj : function(){
53941         var cm = this.cmargins;
53942         switch(this.position){
53943             case "west":
53944                 return [0, 0];
53945             break;
53946             case "east":
53947                 return [0, 0];
53948             break;
53949             case "north":
53950                 return [0, 0];
53951             break;
53952             case "south":
53953                 return [0, 0];
53954             break;
53955         }
53956     },
53957
53958     getExpandAdj : function(){
53959         var c = this.collapsedEl, cm = this.cmargins;
53960         switch(this.position){
53961             case "west":
53962                 return [-(cm.right+c.getWidth()+cm.left), 0];
53963             break;
53964             case "east":
53965                 return [cm.right+c.getWidth()+cm.left, 0];
53966             break;
53967             case "north":
53968                 return [0, -(cm.top+cm.bottom+c.getHeight())];
53969             break;
53970             case "south":
53971                 return [0, cm.top+cm.bottom+c.getHeight()];
53972             break;
53973         }
53974     }
53975 });/*
53976  * Based on:
53977  * Ext JS Library 1.1.1
53978  * Copyright(c) 2006-2007, Ext JS, LLC.
53979  *
53980  * Originally Released Under LGPL - original licence link has changed is not relivant.
53981  *
53982  * Fork - LGPL
53983  * <script type="text/javascript">
53984  */
53985 /*
53986  * These classes are private internal classes
53987  */
53988 Roo.CenterLayoutRegion = function(mgr, config){
53989     Roo.LayoutRegion.call(this, mgr, config, "center");
53990     this.visible = true;
53991     this.minWidth = config.minWidth || 20;
53992     this.minHeight = config.minHeight || 20;
53993 };
53994
53995 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
53996     hide : function(){
53997         // center panel can't be hidden
53998     },
53999     
54000     show : function(){
54001         // center panel can't be hidden
54002     },
54003     
54004     getMinWidth: function(){
54005         return this.minWidth;
54006     },
54007     
54008     getMinHeight: function(){
54009         return this.minHeight;
54010     }
54011 });
54012
54013
54014 Roo.NorthLayoutRegion = function(mgr, config){
54015     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
54016     if(this.split){
54017         this.split.placement = Roo.SplitBar.TOP;
54018         this.split.orientation = Roo.SplitBar.VERTICAL;
54019         this.split.el.addClass("x-layout-split-v");
54020     }
54021     var size = config.initialSize || config.height;
54022     if(typeof size != "undefined"){
54023         this.el.setHeight(size);
54024     }
54025 };
54026 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
54027     orientation: Roo.SplitBar.VERTICAL,
54028     getBox : function(){
54029         if(this.collapsed){
54030             return this.collapsedEl.getBox();
54031         }
54032         var box = this.el.getBox();
54033         if(this.split){
54034             box.height += this.split.el.getHeight();
54035         }
54036         return box;
54037     },
54038     
54039     updateBox : function(box){
54040         if(this.split && !this.collapsed){
54041             box.height -= this.split.el.getHeight();
54042             this.split.el.setLeft(box.x);
54043             this.split.el.setTop(box.y+box.height);
54044             this.split.el.setWidth(box.width);
54045         }
54046         if(this.collapsed){
54047             this.updateBody(box.width, null);
54048         }
54049         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54050     }
54051 });
54052
54053 Roo.SouthLayoutRegion = function(mgr, config){
54054     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
54055     if(this.split){
54056         this.split.placement = Roo.SplitBar.BOTTOM;
54057         this.split.orientation = Roo.SplitBar.VERTICAL;
54058         this.split.el.addClass("x-layout-split-v");
54059     }
54060     var size = config.initialSize || config.height;
54061     if(typeof size != "undefined"){
54062         this.el.setHeight(size);
54063     }
54064 };
54065 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54066     orientation: Roo.SplitBar.VERTICAL,
54067     getBox : function(){
54068         if(this.collapsed){
54069             return this.collapsedEl.getBox();
54070         }
54071         var box = this.el.getBox();
54072         if(this.split){
54073             var sh = this.split.el.getHeight();
54074             box.height += sh;
54075             box.y -= sh;
54076         }
54077         return box;
54078     },
54079     
54080     updateBox : function(box){
54081         if(this.split && !this.collapsed){
54082             var sh = this.split.el.getHeight();
54083             box.height -= sh;
54084             box.y += sh;
54085             this.split.el.setLeft(box.x);
54086             this.split.el.setTop(box.y-sh);
54087             this.split.el.setWidth(box.width);
54088         }
54089         if(this.collapsed){
54090             this.updateBody(box.width, null);
54091         }
54092         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54093     }
54094 });
54095
54096 Roo.EastLayoutRegion = function(mgr, config){
54097     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54098     if(this.split){
54099         this.split.placement = Roo.SplitBar.RIGHT;
54100         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54101         this.split.el.addClass("x-layout-split-h");
54102     }
54103     var size = config.initialSize || config.width;
54104     if(typeof size != "undefined"){
54105         this.el.setWidth(size);
54106     }
54107 };
54108 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54109     orientation: Roo.SplitBar.HORIZONTAL,
54110     getBox : function(){
54111         if(this.collapsed){
54112             return this.collapsedEl.getBox();
54113         }
54114         var box = this.el.getBox();
54115         if(this.split){
54116             var sw = this.split.el.getWidth();
54117             box.width += sw;
54118             box.x -= sw;
54119         }
54120         return box;
54121     },
54122
54123     updateBox : function(box){
54124         if(this.split && !this.collapsed){
54125             var sw = this.split.el.getWidth();
54126             box.width -= sw;
54127             this.split.el.setLeft(box.x);
54128             this.split.el.setTop(box.y);
54129             this.split.el.setHeight(box.height);
54130             box.x += sw;
54131         }
54132         if(this.collapsed){
54133             this.updateBody(null, box.height);
54134         }
54135         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54136     }
54137 });
54138
54139 Roo.WestLayoutRegion = function(mgr, config){
54140     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54141     if(this.split){
54142         this.split.placement = Roo.SplitBar.LEFT;
54143         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54144         this.split.el.addClass("x-layout-split-h");
54145     }
54146     var size = config.initialSize || config.width;
54147     if(typeof size != "undefined"){
54148         this.el.setWidth(size);
54149     }
54150 };
54151 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54152     orientation: Roo.SplitBar.HORIZONTAL,
54153     getBox : function(){
54154         if(this.collapsed){
54155             return this.collapsedEl.getBox();
54156         }
54157         var box = this.el.getBox();
54158         if(this.split){
54159             box.width += this.split.el.getWidth();
54160         }
54161         return box;
54162     },
54163     
54164     updateBox : function(box){
54165         if(this.split && !this.collapsed){
54166             var sw = this.split.el.getWidth();
54167             box.width -= sw;
54168             this.split.el.setLeft(box.x+box.width);
54169             this.split.el.setTop(box.y);
54170             this.split.el.setHeight(box.height);
54171         }
54172         if(this.collapsed){
54173             this.updateBody(null, box.height);
54174         }
54175         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54176     }
54177 });
54178 /*
54179  * Based on:
54180  * Ext JS Library 1.1.1
54181  * Copyright(c) 2006-2007, Ext JS, LLC.
54182  *
54183  * Originally Released Under LGPL - original licence link has changed is not relivant.
54184  *
54185  * Fork - LGPL
54186  * <script type="text/javascript">
54187  */
54188  
54189  
54190 /*
54191  * Private internal class for reading and applying state
54192  */
54193 Roo.LayoutStateManager = function(layout){
54194      // default empty state
54195      this.state = {
54196         north: {},
54197         south: {},
54198         east: {},
54199         west: {}       
54200     };
54201 };
54202
54203 Roo.LayoutStateManager.prototype = {
54204     init : function(layout, provider){
54205         this.provider = provider;
54206         var state = provider.get(layout.id+"-layout-state");
54207         if(state){
54208             var wasUpdating = layout.isUpdating();
54209             if(!wasUpdating){
54210                 layout.beginUpdate();
54211             }
54212             for(var key in state){
54213                 if(typeof state[key] != "function"){
54214                     var rstate = state[key];
54215                     var r = layout.getRegion(key);
54216                     if(r && rstate){
54217                         if(rstate.size){
54218                             r.resizeTo(rstate.size);
54219                         }
54220                         if(rstate.collapsed == true){
54221                             r.collapse(true);
54222                         }else{
54223                             r.expand(null, true);
54224                         }
54225                     }
54226                 }
54227             }
54228             if(!wasUpdating){
54229                 layout.endUpdate();
54230             }
54231             this.state = state; 
54232         }
54233         this.layout = layout;
54234         layout.on("regionresized", this.onRegionResized, this);
54235         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54236         layout.on("regionexpanded", this.onRegionExpanded, this);
54237     },
54238     
54239     storeState : function(){
54240         this.provider.set(this.layout.id+"-layout-state", this.state);
54241     },
54242     
54243     onRegionResized : function(region, newSize){
54244         this.state[region.getPosition()].size = newSize;
54245         this.storeState();
54246     },
54247     
54248     onRegionCollapsed : function(region){
54249         this.state[region.getPosition()].collapsed = true;
54250         this.storeState();
54251     },
54252     
54253     onRegionExpanded : function(region){
54254         this.state[region.getPosition()].collapsed = false;
54255         this.storeState();
54256     }
54257 };/*
54258  * Based on:
54259  * Ext JS Library 1.1.1
54260  * Copyright(c) 2006-2007, Ext JS, LLC.
54261  *
54262  * Originally Released Under LGPL - original licence link has changed is not relivant.
54263  *
54264  * Fork - LGPL
54265  * <script type="text/javascript">
54266  */
54267 /**
54268  * @class Roo.ContentPanel
54269  * @extends Roo.util.Observable
54270  * A basic ContentPanel element.
54271  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54272  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54273  * @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
54274  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54275  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54276  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54277  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54278  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54279  * @cfg {String} title          The title for this panel
54280  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54281  * @cfg {String} url            Calls {@link #setUrl} with this value
54282  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54283  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54284  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54285  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54286  * @cfg {String}    style  Extra style to add to the content panel 
54287
54288  * @constructor
54289  * Create a new ContentPanel.
54290  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54291  * @param {String/Object} config A string to set only the title or a config object
54292  * @param {String} content (optional) Set the HTML content for this panel
54293  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54294  */
54295 Roo.ContentPanel = function(el, config, content){
54296     
54297      
54298     /*
54299     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54300         config = el;
54301         el = Roo.id();
54302     }
54303     if (config && config.parentLayout) { 
54304         el = config.parentLayout.el.createChild(); 
54305     }
54306     */
54307     if(el.autoCreate){ // xtype is available if this is called from factory
54308         config = el;
54309         el = Roo.id();
54310     }
54311     this.el = Roo.get(el);
54312     if(!this.el && config && config.autoCreate){
54313         if(typeof config.autoCreate == "object"){
54314             if(!config.autoCreate.id){
54315                 config.autoCreate.id = config.id||el;
54316             }
54317             this.el = Roo.DomHelper.append(document.body,
54318                         config.autoCreate, true);
54319         }else{
54320             this.el = Roo.DomHelper.append(document.body,
54321                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54322         }
54323     }
54324     
54325     
54326     this.closable = false;
54327     this.loaded = false;
54328     this.active = false;
54329     if(typeof config == "string"){
54330         this.title = config;
54331     }else{
54332         Roo.apply(this, config);
54333     }
54334     
54335     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54336         this.wrapEl = this.el.wrap();
54337         this.toolbar.container = this.el.insertSibling(false, 'before');
54338         this.toolbar = new Roo.Toolbar(this.toolbar);
54339     }
54340     
54341     // xtype created footer. - not sure if will work as we normally have to render first..
54342     if (this.footer && !this.footer.el && this.footer.xtype) {
54343         if (!this.wrapEl) {
54344             this.wrapEl = this.el.wrap();
54345         }
54346     
54347         this.footer.container = this.wrapEl.createChild();
54348          
54349         this.footer = Roo.factory(this.footer, Roo);
54350         
54351     }
54352     
54353     if(this.resizeEl){
54354         this.resizeEl = Roo.get(this.resizeEl, true);
54355     }else{
54356         this.resizeEl = this.el;
54357     }
54358     // handle view.xtype
54359     
54360  
54361     
54362     
54363     this.addEvents({
54364         /**
54365          * @event activate
54366          * Fires when this panel is activated. 
54367          * @param {Roo.ContentPanel} this
54368          */
54369         "activate" : true,
54370         /**
54371          * @event deactivate
54372          * Fires when this panel is activated. 
54373          * @param {Roo.ContentPanel} this
54374          */
54375         "deactivate" : true,
54376
54377         /**
54378          * @event resize
54379          * Fires when this panel is resized if fitToFrame is true.
54380          * @param {Roo.ContentPanel} this
54381          * @param {Number} width The width after any component adjustments
54382          * @param {Number} height The height after any component adjustments
54383          */
54384         "resize" : true,
54385         
54386          /**
54387          * @event render
54388          * Fires when this tab is created
54389          * @param {Roo.ContentPanel} this
54390          */
54391         "render" : true
54392          
54393         
54394     });
54395     
54396
54397     
54398     
54399     if(this.autoScroll){
54400         this.resizeEl.setStyle("overflow", "auto");
54401     } else {
54402         // fix randome scrolling
54403         this.el.on('scroll', function() {
54404             Roo.log('fix random scolling');
54405             this.scrollTo('top',0); 
54406         });
54407     }
54408     content = content || this.content;
54409     if(content){
54410         this.setContent(content);
54411     }
54412     if(config && config.url){
54413         this.setUrl(this.url, this.params, this.loadOnce);
54414     }
54415     
54416     
54417     
54418     Roo.ContentPanel.superclass.constructor.call(this);
54419     
54420     if (this.view && typeof(this.view.xtype) != 'undefined') {
54421         this.view.el = this.el.appendChild(document.createElement("div"));
54422         this.view = Roo.factory(this.view); 
54423         this.view.render  &&  this.view.render(false, '');  
54424     }
54425     
54426     
54427     this.fireEvent('render', this);
54428 };
54429
54430 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54431     tabTip:'',
54432     setRegion : function(region){
54433         this.region = region;
54434         if(region){
54435            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54436         }else{
54437            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54438         } 
54439     },
54440     
54441     /**
54442      * Returns the toolbar for this Panel if one was configured. 
54443      * @return {Roo.Toolbar} 
54444      */
54445     getToolbar : function(){
54446         return this.toolbar;
54447     },
54448     
54449     setActiveState : function(active){
54450         this.active = active;
54451         if(!active){
54452             this.fireEvent("deactivate", this);
54453         }else{
54454             this.fireEvent("activate", this);
54455         }
54456     },
54457     /**
54458      * Updates this panel's element
54459      * @param {String} content The new content
54460      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54461     */
54462     setContent : function(content, loadScripts){
54463         this.el.update(content, loadScripts);
54464     },
54465
54466     ignoreResize : function(w, h){
54467         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54468             return true;
54469         }else{
54470             this.lastSize = {width: w, height: h};
54471             return false;
54472         }
54473     },
54474     /**
54475      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54476      * @return {Roo.UpdateManager} The UpdateManager
54477      */
54478     getUpdateManager : function(){
54479         return this.el.getUpdateManager();
54480     },
54481      /**
54482      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54483      * @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:
54484 <pre><code>
54485 panel.load({
54486     url: "your-url.php",
54487     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54488     callback: yourFunction,
54489     scope: yourObject, //(optional scope)
54490     discardUrl: false,
54491     nocache: false,
54492     text: "Loading...",
54493     timeout: 30,
54494     scripts: false
54495 });
54496 </code></pre>
54497      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54498      * 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.
54499      * @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}
54500      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54501      * @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.
54502      * @return {Roo.ContentPanel} this
54503      */
54504     load : function(){
54505         var um = this.el.getUpdateManager();
54506         um.update.apply(um, arguments);
54507         return this;
54508     },
54509
54510
54511     /**
54512      * 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.
54513      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54514      * @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)
54515      * @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)
54516      * @return {Roo.UpdateManager} The UpdateManager
54517      */
54518     setUrl : function(url, params, loadOnce){
54519         if(this.refreshDelegate){
54520             this.removeListener("activate", this.refreshDelegate);
54521         }
54522         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54523         this.on("activate", this.refreshDelegate);
54524         return this.el.getUpdateManager();
54525     },
54526     
54527     _handleRefresh : function(url, params, loadOnce){
54528         if(!loadOnce || !this.loaded){
54529             var updater = this.el.getUpdateManager();
54530             updater.update(url, params, this._setLoaded.createDelegate(this));
54531         }
54532     },
54533     
54534     _setLoaded : function(){
54535         this.loaded = true;
54536     }, 
54537     
54538     /**
54539      * Returns this panel's id
54540      * @return {String} 
54541      */
54542     getId : function(){
54543         return this.el.id;
54544     },
54545     
54546     /** 
54547      * Returns this panel's element - used by regiosn to add.
54548      * @return {Roo.Element} 
54549      */
54550     getEl : function(){
54551         return this.wrapEl || this.el;
54552     },
54553     
54554     adjustForComponents : function(width, height)
54555     {
54556         //Roo.log('adjustForComponents ');
54557         if(this.resizeEl != this.el){
54558             width -= this.el.getFrameWidth('lr');
54559             height -= this.el.getFrameWidth('tb');
54560         }
54561         if(this.toolbar){
54562             var te = this.toolbar.getEl();
54563             height -= te.getHeight();
54564             te.setWidth(width);
54565         }
54566         if(this.footer){
54567             var te = this.footer.getEl();
54568             //Roo.log("footer:" + te.getHeight());
54569             
54570             height -= te.getHeight();
54571             te.setWidth(width);
54572         }
54573         
54574         
54575         if(this.adjustments){
54576             width += this.adjustments[0];
54577             height += this.adjustments[1];
54578         }
54579         return {"width": width, "height": height};
54580     },
54581     
54582     setSize : function(width, height){
54583         if(this.fitToFrame && !this.ignoreResize(width, height)){
54584             if(this.fitContainer && this.resizeEl != this.el){
54585                 this.el.setSize(width, height);
54586             }
54587             var size = this.adjustForComponents(width, height);
54588             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54589             this.fireEvent('resize', this, size.width, size.height);
54590         }
54591     },
54592     
54593     /**
54594      * Returns this panel's title
54595      * @return {String} 
54596      */
54597     getTitle : function(){
54598         return this.title;
54599     },
54600     
54601     /**
54602      * Set this panel's title
54603      * @param {String} title
54604      */
54605     setTitle : function(title){
54606         this.title = title;
54607         if(this.region){
54608             this.region.updatePanelTitle(this, title);
54609         }
54610     },
54611     
54612     /**
54613      * Returns true is this panel was configured to be closable
54614      * @return {Boolean} 
54615      */
54616     isClosable : function(){
54617         return this.closable;
54618     },
54619     
54620     beforeSlide : function(){
54621         this.el.clip();
54622         this.resizeEl.clip();
54623     },
54624     
54625     afterSlide : function(){
54626         this.el.unclip();
54627         this.resizeEl.unclip();
54628     },
54629     
54630     /**
54631      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54632      *   Will fail silently if the {@link #setUrl} method has not been called.
54633      *   This does not activate the panel, just updates its content.
54634      */
54635     refresh : function(){
54636         if(this.refreshDelegate){
54637            this.loaded = false;
54638            this.refreshDelegate();
54639         }
54640     },
54641     
54642     /**
54643      * Destroys this panel
54644      */
54645     destroy : function(){
54646         this.el.removeAllListeners();
54647         var tempEl = document.createElement("span");
54648         tempEl.appendChild(this.el.dom);
54649         tempEl.innerHTML = "";
54650         this.el.remove();
54651         this.el = null;
54652     },
54653     
54654     /**
54655      * form - if the content panel contains a form - this is a reference to it.
54656      * @type {Roo.form.Form}
54657      */
54658     form : false,
54659     /**
54660      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54661      *    This contains a reference to it.
54662      * @type {Roo.View}
54663      */
54664     view : false,
54665     
54666       /**
54667      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54668      * <pre><code>
54669
54670 layout.addxtype({
54671        xtype : 'Form',
54672        items: [ .... ]
54673    }
54674 );
54675
54676 </code></pre>
54677      * @param {Object} cfg Xtype definition of item to add.
54678      */
54679     
54680     addxtype : function(cfg) {
54681         // add form..
54682         if (cfg.xtype.match(/^Form$/)) {
54683             
54684             var el;
54685             //if (this.footer) {
54686             //    el = this.footer.container.insertSibling(false, 'before');
54687             //} else {
54688                 el = this.el.createChild();
54689             //}
54690
54691             this.form = new  Roo.form.Form(cfg);
54692             
54693             
54694             if ( this.form.allItems.length) {
54695                 this.form.render(el.dom);
54696             }
54697             return this.form;
54698         }
54699         // should only have one of theses..
54700         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54701             // views.. should not be just added - used named prop 'view''
54702             
54703             cfg.el = this.el.appendChild(document.createElement("div"));
54704             // factory?
54705             
54706             var ret = new Roo.factory(cfg);
54707              
54708              ret.render && ret.render(false, ''); // render blank..
54709             this.view = ret;
54710             return ret;
54711         }
54712         return false;
54713     }
54714 });
54715
54716 /**
54717  * @class Roo.GridPanel
54718  * @extends Roo.ContentPanel
54719  * @constructor
54720  * Create a new GridPanel.
54721  * @param {Roo.grid.Grid} grid The grid for this panel
54722  * @param {String/Object} config A string to set only the panel's title, or a config object
54723  */
54724 Roo.GridPanel = function(grid, config){
54725     
54726   
54727     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54728         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54729         
54730     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54731     
54732     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54733     
54734     if(this.toolbar){
54735         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54736     }
54737     // xtype created footer. - not sure if will work as we normally have to render first..
54738     if (this.footer && !this.footer.el && this.footer.xtype) {
54739         
54740         this.footer.container = this.grid.getView().getFooterPanel(true);
54741         this.footer.dataSource = this.grid.dataSource;
54742         this.footer = Roo.factory(this.footer, Roo);
54743         
54744     }
54745     
54746     grid.monitorWindowResize = false; // turn off autosizing
54747     grid.autoHeight = false;
54748     grid.autoWidth = false;
54749     this.grid = grid;
54750     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54751 };
54752
54753 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54754     getId : function(){
54755         return this.grid.id;
54756     },
54757     
54758     /**
54759      * Returns the grid for this panel
54760      * @return {Roo.grid.Grid} 
54761      */
54762     getGrid : function(){
54763         return this.grid;    
54764     },
54765     
54766     setSize : function(width, height){
54767         if(!this.ignoreResize(width, height)){
54768             var grid = this.grid;
54769             var size = this.adjustForComponents(width, height);
54770             grid.getGridEl().setSize(size.width, size.height);
54771             grid.autoSize();
54772         }
54773     },
54774     
54775     beforeSlide : function(){
54776         this.grid.getView().scroller.clip();
54777     },
54778     
54779     afterSlide : function(){
54780         this.grid.getView().scroller.unclip();
54781     },
54782     
54783     destroy : function(){
54784         this.grid.destroy();
54785         delete this.grid;
54786         Roo.GridPanel.superclass.destroy.call(this); 
54787     }
54788 });
54789
54790
54791 /**
54792  * @class Roo.NestedLayoutPanel
54793  * @extends Roo.ContentPanel
54794  * @constructor
54795  * Create a new NestedLayoutPanel.
54796  * 
54797  * 
54798  * @param {Roo.BorderLayout} layout The layout for this panel
54799  * @param {String/Object} config A string to set only the title or a config object
54800  */
54801 Roo.NestedLayoutPanel = function(layout, config)
54802 {
54803     // construct with only one argument..
54804     /* FIXME - implement nicer consturctors
54805     if (layout.layout) {
54806         config = layout;
54807         layout = config.layout;
54808         delete config.layout;
54809     }
54810     if (layout.xtype && !layout.getEl) {
54811         // then layout needs constructing..
54812         layout = Roo.factory(layout, Roo);
54813     }
54814     */
54815     
54816     
54817     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54818     
54819     layout.monitorWindowResize = false; // turn off autosizing
54820     this.layout = layout;
54821     this.layout.getEl().addClass("x-layout-nested-layout");
54822     
54823     
54824     
54825     
54826 };
54827
54828 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54829
54830     setSize : function(width, height){
54831         if(!this.ignoreResize(width, height)){
54832             var size = this.adjustForComponents(width, height);
54833             var el = this.layout.getEl();
54834             el.setSize(size.width, size.height);
54835             var touch = el.dom.offsetWidth;
54836             this.layout.layout();
54837             // ie requires a double layout on the first pass
54838             if(Roo.isIE && !this.initialized){
54839                 this.initialized = true;
54840                 this.layout.layout();
54841             }
54842         }
54843     },
54844     
54845     // activate all subpanels if not currently active..
54846     
54847     setActiveState : function(active){
54848         this.active = active;
54849         if(!active){
54850             this.fireEvent("deactivate", this);
54851             return;
54852         }
54853         
54854         this.fireEvent("activate", this);
54855         // not sure if this should happen before or after..
54856         if (!this.layout) {
54857             return; // should not happen..
54858         }
54859         var reg = false;
54860         for (var r in this.layout.regions) {
54861             reg = this.layout.getRegion(r);
54862             if (reg.getActivePanel()) {
54863                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54864                 reg.setActivePanel(reg.getActivePanel());
54865                 continue;
54866             }
54867             if (!reg.panels.length) {
54868                 continue;
54869             }
54870             reg.showPanel(reg.getPanel(0));
54871         }
54872         
54873         
54874         
54875         
54876     },
54877     
54878     /**
54879      * Returns the nested BorderLayout for this panel
54880      * @return {Roo.BorderLayout} 
54881      */
54882     getLayout : function(){
54883         return this.layout;
54884     },
54885     
54886      /**
54887      * Adds a xtype elements to the layout of the nested panel
54888      * <pre><code>
54889
54890 panel.addxtype({
54891        xtype : 'ContentPanel',
54892        region: 'west',
54893        items: [ .... ]
54894    }
54895 );
54896
54897 panel.addxtype({
54898         xtype : 'NestedLayoutPanel',
54899         region: 'west',
54900         layout: {
54901            center: { },
54902            west: { }   
54903         },
54904         items : [ ... list of content panels or nested layout panels.. ]
54905    }
54906 );
54907 </code></pre>
54908      * @param {Object} cfg Xtype definition of item to add.
54909      */
54910     addxtype : function(cfg) {
54911         return this.layout.addxtype(cfg);
54912     
54913     }
54914 });
54915
54916 Roo.ScrollPanel = function(el, config, content){
54917     config = config || {};
54918     config.fitToFrame = true;
54919     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54920     
54921     this.el.dom.style.overflow = "hidden";
54922     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54923     this.el.removeClass("x-layout-inactive-content");
54924     this.el.on("mousewheel", this.onWheel, this);
54925
54926     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54927     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54928     up.unselectable(); down.unselectable();
54929     up.on("click", this.scrollUp, this);
54930     down.on("click", this.scrollDown, this);
54931     up.addClassOnOver("x-scroller-btn-over");
54932     down.addClassOnOver("x-scroller-btn-over");
54933     up.addClassOnClick("x-scroller-btn-click");
54934     down.addClassOnClick("x-scroller-btn-click");
54935     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54936
54937     this.resizeEl = this.el;
54938     this.el = wrap; this.up = up; this.down = down;
54939 };
54940
54941 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54942     increment : 100,
54943     wheelIncrement : 5,
54944     scrollUp : function(){
54945         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54946     },
54947
54948     scrollDown : function(){
54949         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54950     },
54951
54952     afterScroll : function(){
54953         var el = this.resizeEl;
54954         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54955         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54956         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54957     },
54958
54959     setSize : function(){
54960         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54961         this.afterScroll();
54962     },
54963
54964     onWheel : function(e){
54965         var d = e.getWheelDelta();
54966         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
54967         this.afterScroll();
54968         e.stopEvent();
54969     },
54970
54971     setContent : function(content, loadScripts){
54972         this.resizeEl.update(content, loadScripts);
54973     }
54974
54975 });
54976
54977
54978
54979
54980
54981
54982
54983
54984
54985 /**
54986  * @class Roo.TreePanel
54987  * @extends Roo.ContentPanel
54988  * @constructor
54989  * Create a new TreePanel. - defaults to fit/scoll contents.
54990  * @param {String/Object} config A string to set only the panel's title, or a config object
54991  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
54992  */
54993 Roo.TreePanel = function(config){
54994     var el = config.el;
54995     var tree = config.tree;
54996     delete config.tree; 
54997     delete config.el; // hopefull!
54998     
54999     // wrapper for IE7 strict & safari scroll issue
55000     
55001     var treeEl = el.createChild();
55002     config.resizeEl = treeEl;
55003     
55004     
55005     
55006     Roo.TreePanel.superclass.constructor.call(this, el, config);
55007  
55008  
55009     this.tree = new Roo.tree.TreePanel(treeEl , tree);
55010     //console.log(tree);
55011     this.on('activate', function()
55012     {
55013         if (this.tree.rendered) {
55014             return;
55015         }
55016         //console.log('render tree');
55017         this.tree.render();
55018     });
55019     // this should not be needed.. - it's actually the 'el' that resizes?
55020     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
55021     
55022     //this.on('resize',  function (cp, w, h) {
55023     //        this.tree.innerCt.setWidth(w);
55024     //        this.tree.innerCt.setHeight(h);
55025     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
55026     //});
55027
55028         
55029     
55030 };
55031
55032 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
55033     fitToFrame : true,
55034     autoScroll : true
55035 });
55036
55037
55038
55039
55040
55041
55042
55043
55044
55045
55046
55047 /*
55048  * Based on:
55049  * Ext JS Library 1.1.1
55050  * Copyright(c) 2006-2007, Ext JS, LLC.
55051  *
55052  * Originally Released Under LGPL - original licence link has changed is not relivant.
55053  *
55054  * Fork - LGPL
55055  * <script type="text/javascript">
55056  */
55057  
55058
55059 /**
55060  * @class Roo.ReaderLayout
55061  * @extends Roo.BorderLayout
55062  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55063  * center region containing two nested regions (a top one for a list view and one for item preview below),
55064  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55065  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55066  * expedites the setup of the overall layout and regions for this common application style.
55067  * Example:
55068  <pre><code>
55069 var reader = new Roo.ReaderLayout();
55070 var CP = Roo.ContentPanel;  // shortcut for adding
55071
55072 reader.beginUpdate();
55073 reader.add("north", new CP("north", "North"));
55074 reader.add("west", new CP("west", {title: "West"}));
55075 reader.add("east", new CP("east", {title: "East"}));
55076
55077 reader.regions.listView.add(new CP("listView", "List"));
55078 reader.regions.preview.add(new CP("preview", "Preview"));
55079 reader.endUpdate();
55080 </code></pre>
55081 * @constructor
55082 * Create a new ReaderLayout
55083 * @param {Object} config Configuration options
55084 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55085 * document.body if omitted)
55086 */
55087 Roo.ReaderLayout = function(config, renderTo){
55088     var c = config || {size:{}};
55089     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55090         north: c.north !== false ? Roo.apply({
55091             split:false,
55092             initialSize: 32,
55093             titlebar: false
55094         }, c.north) : false,
55095         west: c.west !== false ? Roo.apply({
55096             split:true,
55097             initialSize: 200,
55098             minSize: 175,
55099             maxSize: 400,
55100             titlebar: true,
55101             collapsible: true,
55102             animate: true,
55103             margins:{left:5,right:0,bottom:5,top:5},
55104             cmargins:{left:5,right:5,bottom:5,top:5}
55105         }, c.west) : false,
55106         east: c.east !== false ? Roo.apply({
55107             split:true,
55108             initialSize: 200,
55109             minSize: 175,
55110             maxSize: 400,
55111             titlebar: true,
55112             collapsible: true,
55113             animate: true,
55114             margins:{left:0,right:5,bottom:5,top:5},
55115             cmargins:{left:5,right:5,bottom:5,top:5}
55116         }, c.east) : false,
55117         center: Roo.apply({
55118             tabPosition: 'top',
55119             autoScroll:false,
55120             closeOnTab: true,
55121             titlebar:false,
55122             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55123         }, c.center)
55124     });
55125
55126     this.el.addClass('x-reader');
55127
55128     this.beginUpdate();
55129
55130     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55131         south: c.preview !== false ? Roo.apply({
55132             split:true,
55133             initialSize: 200,
55134             minSize: 100,
55135             autoScroll:true,
55136             collapsible:true,
55137             titlebar: true,
55138             cmargins:{top:5,left:0, right:0, bottom:0}
55139         }, c.preview) : false,
55140         center: Roo.apply({
55141             autoScroll:false,
55142             titlebar:false,
55143             minHeight:200
55144         }, c.listView)
55145     });
55146     this.add('center', new Roo.NestedLayoutPanel(inner,
55147             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55148
55149     this.endUpdate();
55150
55151     this.regions.preview = inner.getRegion('south');
55152     this.regions.listView = inner.getRegion('center');
55153 };
55154
55155 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55156  * Based on:
55157  * Ext JS Library 1.1.1
55158  * Copyright(c) 2006-2007, Ext JS, LLC.
55159  *
55160  * Originally Released Under LGPL - original licence link has changed is not relivant.
55161  *
55162  * Fork - LGPL
55163  * <script type="text/javascript">
55164  */
55165  
55166 /**
55167  * @class Roo.grid.Grid
55168  * @extends Roo.util.Observable
55169  * This class represents the primary interface of a component based grid control.
55170  * <br><br>Usage:<pre><code>
55171  var grid = new Roo.grid.Grid("my-container-id", {
55172      ds: myDataStore,
55173      cm: myColModel,
55174      selModel: mySelectionModel,
55175      autoSizeColumns: true,
55176      monitorWindowResize: false,
55177      trackMouseOver: true
55178  });
55179  // set any options
55180  grid.render();
55181  * </code></pre>
55182  * <b>Common Problems:</b><br/>
55183  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55184  * element will correct this<br/>
55185  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55186  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55187  * are unpredictable.<br/>
55188  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55189  * grid to calculate dimensions/offsets.<br/>
55190   * @constructor
55191  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55192  * The container MUST have some type of size defined for the grid to fill. The container will be
55193  * automatically set to position relative if it isn't already.
55194  * @param {Object} config A config object that sets properties on this grid.
55195  */
55196 Roo.grid.Grid = function(container, config){
55197         // initialize the container
55198         this.container = Roo.get(container);
55199         this.container.update("");
55200         this.container.setStyle("overflow", "hidden");
55201     this.container.addClass('x-grid-container');
55202
55203     this.id = this.container.id;
55204
55205     Roo.apply(this, config);
55206     // check and correct shorthanded configs
55207     if(this.ds){
55208         this.dataSource = this.ds;
55209         delete this.ds;
55210     }
55211     if(this.cm){
55212         this.colModel = this.cm;
55213         delete this.cm;
55214     }
55215     if(this.sm){
55216         this.selModel = this.sm;
55217         delete this.sm;
55218     }
55219
55220     if (this.selModel) {
55221         this.selModel = Roo.factory(this.selModel, Roo.grid);
55222         this.sm = this.selModel;
55223         this.sm.xmodule = this.xmodule || false;
55224     }
55225     if (typeof(this.colModel.config) == 'undefined') {
55226         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55227         this.cm = this.colModel;
55228         this.cm.xmodule = this.xmodule || false;
55229     }
55230     if (this.dataSource) {
55231         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55232         this.ds = this.dataSource;
55233         this.ds.xmodule = this.xmodule || false;
55234          
55235     }
55236     
55237     
55238     
55239     if(this.width){
55240         this.container.setWidth(this.width);
55241     }
55242
55243     if(this.height){
55244         this.container.setHeight(this.height);
55245     }
55246     /** @private */
55247         this.addEvents({
55248         // raw events
55249         /**
55250          * @event click
55251          * The raw click event for the entire grid.
55252          * @param {Roo.EventObject} e
55253          */
55254         "click" : true,
55255         /**
55256          * @event dblclick
55257          * The raw dblclick event for the entire grid.
55258          * @param {Roo.EventObject} e
55259          */
55260         "dblclick" : true,
55261         /**
55262          * @event contextmenu
55263          * The raw contextmenu event for the entire grid.
55264          * @param {Roo.EventObject} e
55265          */
55266         "contextmenu" : true,
55267         /**
55268          * @event mousedown
55269          * The raw mousedown event for the entire grid.
55270          * @param {Roo.EventObject} e
55271          */
55272         "mousedown" : true,
55273         /**
55274          * @event mouseup
55275          * The raw mouseup event for the entire grid.
55276          * @param {Roo.EventObject} e
55277          */
55278         "mouseup" : true,
55279         /**
55280          * @event mouseover
55281          * The raw mouseover event for the entire grid.
55282          * @param {Roo.EventObject} e
55283          */
55284         "mouseover" : true,
55285         /**
55286          * @event mouseout
55287          * The raw mouseout event for the entire grid.
55288          * @param {Roo.EventObject} e
55289          */
55290         "mouseout" : true,
55291         /**
55292          * @event keypress
55293          * The raw keypress event for the entire grid.
55294          * @param {Roo.EventObject} e
55295          */
55296         "keypress" : true,
55297         /**
55298          * @event keydown
55299          * The raw keydown event for the entire grid.
55300          * @param {Roo.EventObject} e
55301          */
55302         "keydown" : true,
55303
55304         // custom events
55305
55306         /**
55307          * @event cellclick
55308          * Fires when a cell is clicked
55309          * @param {Grid} this
55310          * @param {Number} rowIndex
55311          * @param {Number} columnIndex
55312          * @param {Roo.EventObject} e
55313          */
55314         "cellclick" : true,
55315         /**
55316          * @event celldblclick
55317          * Fires when a cell is double clicked
55318          * @param {Grid} this
55319          * @param {Number} rowIndex
55320          * @param {Number} columnIndex
55321          * @param {Roo.EventObject} e
55322          */
55323         "celldblclick" : true,
55324         /**
55325          * @event rowclick
55326          * Fires when a row is clicked
55327          * @param {Grid} this
55328          * @param {Number} rowIndex
55329          * @param {Roo.EventObject} e
55330          */
55331         "rowclick" : true,
55332         /**
55333          * @event rowdblclick
55334          * Fires when a row is double clicked
55335          * @param {Grid} this
55336          * @param {Number} rowIndex
55337          * @param {Roo.EventObject} e
55338          */
55339         "rowdblclick" : true,
55340         /**
55341          * @event headerclick
55342          * Fires when a header is clicked
55343          * @param {Grid} this
55344          * @param {Number} columnIndex
55345          * @param {Roo.EventObject} e
55346          */
55347         "headerclick" : true,
55348         /**
55349          * @event headerdblclick
55350          * Fires when a header cell is double clicked
55351          * @param {Grid} this
55352          * @param {Number} columnIndex
55353          * @param {Roo.EventObject} e
55354          */
55355         "headerdblclick" : true,
55356         /**
55357          * @event rowcontextmenu
55358          * Fires when a row is right clicked
55359          * @param {Grid} this
55360          * @param {Number} rowIndex
55361          * @param {Roo.EventObject} e
55362          */
55363         "rowcontextmenu" : true,
55364         /**
55365          * @event cellcontextmenu
55366          * Fires when a cell is right clicked
55367          * @param {Grid} this
55368          * @param {Number} rowIndex
55369          * @param {Number} cellIndex
55370          * @param {Roo.EventObject} e
55371          */
55372          "cellcontextmenu" : true,
55373         /**
55374          * @event headercontextmenu
55375          * Fires when a header is right clicked
55376          * @param {Grid} this
55377          * @param {Number} columnIndex
55378          * @param {Roo.EventObject} e
55379          */
55380         "headercontextmenu" : true,
55381         /**
55382          * @event bodyscroll
55383          * Fires when the body element is scrolled
55384          * @param {Number} scrollLeft
55385          * @param {Number} scrollTop
55386          */
55387         "bodyscroll" : true,
55388         /**
55389          * @event columnresize
55390          * Fires when the user resizes a column
55391          * @param {Number} columnIndex
55392          * @param {Number} newSize
55393          */
55394         "columnresize" : true,
55395         /**
55396          * @event columnmove
55397          * Fires when the user moves a column
55398          * @param {Number} oldIndex
55399          * @param {Number} newIndex
55400          */
55401         "columnmove" : true,
55402         /**
55403          * @event startdrag
55404          * Fires when row(s) start being dragged
55405          * @param {Grid} this
55406          * @param {Roo.GridDD} dd The drag drop object
55407          * @param {event} e The raw browser event
55408          */
55409         "startdrag" : true,
55410         /**
55411          * @event enddrag
55412          * Fires when a drag operation is complete
55413          * @param {Grid} this
55414          * @param {Roo.GridDD} dd The drag drop object
55415          * @param {event} e The raw browser event
55416          */
55417         "enddrag" : true,
55418         /**
55419          * @event dragdrop
55420          * Fires when dragged row(s) are dropped on a valid DD target
55421          * @param {Grid} this
55422          * @param {Roo.GridDD} dd The drag drop object
55423          * @param {String} targetId The target drag drop object
55424          * @param {event} e The raw browser event
55425          */
55426         "dragdrop" : true,
55427         /**
55428          * @event dragover
55429          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55430          * @param {Grid} this
55431          * @param {Roo.GridDD} dd The drag drop object
55432          * @param {String} targetId The target drag drop object
55433          * @param {event} e The raw browser event
55434          */
55435         "dragover" : true,
55436         /**
55437          * @event dragenter
55438          *  Fires when the dragged row(s) first cross another DD target while being dragged
55439          * @param {Grid} this
55440          * @param {Roo.GridDD} dd The drag drop object
55441          * @param {String} targetId The target drag drop object
55442          * @param {event} e The raw browser event
55443          */
55444         "dragenter" : true,
55445         /**
55446          * @event dragout
55447          * Fires when the dragged row(s) leave another DD target while being dragged
55448          * @param {Grid} this
55449          * @param {Roo.GridDD} dd The drag drop object
55450          * @param {String} targetId The target drag drop object
55451          * @param {event} e The raw browser event
55452          */
55453         "dragout" : true,
55454         /**
55455          * @event rowclass
55456          * Fires when a row is rendered, so you can change add a style to it.
55457          * @param {GridView} gridview   The grid view
55458          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55459          */
55460         'rowclass' : true,
55461
55462         /**
55463          * @event render
55464          * Fires when the grid is rendered
55465          * @param {Grid} grid
55466          */
55467         'render' : true
55468     });
55469
55470     Roo.grid.Grid.superclass.constructor.call(this);
55471 };
55472 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55473     
55474     /**
55475      * @cfg {String} ddGroup - drag drop group.
55476      */
55477       /**
55478      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55479      */
55480
55481     /**
55482      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55483      */
55484     minColumnWidth : 25,
55485
55486     /**
55487      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55488      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55489      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55490      */
55491     autoSizeColumns : false,
55492
55493     /**
55494      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55495      */
55496     autoSizeHeaders : true,
55497
55498     /**
55499      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55500      */
55501     monitorWindowResize : true,
55502
55503     /**
55504      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55505      * rows measured to get a columns size. Default is 0 (all rows).
55506      */
55507     maxRowsToMeasure : 0,
55508
55509     /**
55510      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55511      */
55512     trackMouseOver : true,
55513
55514     /**
55515     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55516     */
55517       /**
55518     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55519     */
55520     
55521     /**
55522     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55523     */
55524     enableDragDrop : false,
55525     
55526     /**
55527     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55528     */
55529     enableColumnMove : true,
55530     
55531     /**
55532     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55533     */
55534     enableColumnHide : true,
55535     
55536     /**
55537     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55538     */
55539     enableRowHeightSync : false,
55540     
55541     /**
55542     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55543     */
55544     stripeRows : true,
55545     
55546     /**
55547     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55548     */
55549     autoHeight : false,
55550
55551     /**
55552      * @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.
55553      */
55554     autoExpandColumn : false,
55555
55556     /**
55557     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55558     * Default is 50.
55559     */
55560     autoExpandMin : 50,
55561
55562     /**
55563     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55564     */
55565     autoExpandMax : 1000,
55566
55567     /**
55568     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55569     */
55570     view : null,
55571
55572     /**
55573     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55574     */
55575     loadMask : false,
55576     /**
55577     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55578     */
55579     dropTarget: false,
55580     
55581    
55582     
55583     // private
55584     rendered : false,
55585
55586     /**
55587     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55588     * of a fixed width. Default is false.
55589     */
55590     /**
55591     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55592     */
55593     
55594     
55595     /**
55596     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55597     * %0 is replaced with the number of selected rows.
55598     */
55599     ddText : "{0} selected row{1}",
55600     
55601     
55602     /**
55603      * Called once after all setup has been completed and the grid is ready to be rendered.
55604      * @return {Roo.grid.Grid} this
55605      */
55606     render : function()
55607     {
55608         var c = this.container;
55609         // try to detect autoHeight/width mode
55610         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55611             this.autoHeight = true;
55612         }
55613         var view = this.getView();
55614         view.init(this);
55615
55616         c.on("click", this.onClick, this);
55617         c.on("dblclick", this.onDblClick, this);
55618         c.on("contextmenu", this.onContextMenu, this);
55619         c.on("keydown", this.onKeyDown, this);
55620         if (Roo.isTouch) {
55621             c.on("touchstart", this.onTouchStart, this);
55622         }
55623
55624         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55625
55626         this.getSelectionModel().init(this);
55627
55628         view.render();
55629
55630         if(this.loadMask){
55631             this.loadMask = new Roo.LoadMask(this.container,
55632                     Roo.apply({store:this.dataSource}, this.loadMask));
55633         }
55634         
55635         
55636         if (this.toolbar && this.toolbar.xtype) {
55637             this.toolbar.container = this.getView().getHeaderPanel(true);
55638             this.toolbar = new Roo.Toolbar(this.toolbar);
55639         }
55640         if (this.footer && this.footer.xtype) {
55641             this.footer.dataSource = this.getDataSource();
55642             this.footer.container = this.getView().getFooterPanel(true);
55643             this.footer = Roo.factory(this.footer, Roo);
55644         }
55645         if (this.dropTarget && this.dropTarget.xtype) {
55646             delete this.dropTarget.xtype;
55647             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55648         }
55649         
55650         
55651         this.rendered = true;
55652         this.fireEvent('render', this);
55653         return this;
55654     },
55655
55656     /**
55657      * Reconfigures the grid to use a different Store and Column Model.
55658      * The View will be bound to the new objects and refreshed.
55659      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55660      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55661      */
55662     reconfigure : function(dataSource, colModel){
55663         if(this.loadMask){
55664             this.loadMask.destroy();
55665             this.loadMask = new Roo.LoadMask(this.container,
55666                     Roo.apply({store:dataSource}, this.loadMask));
55667         }
55668         this.view.bind(dataSource, colModel);
55669         this.dataSource = dataSource;
55670         this.colModel = colModel;
55671         this.view.refresh(true);
55672     },
55673     /**
55674      * addColumns
55675      * Add's a column, default at the end..
55676      
55677      * @param {int} position to add (default end)
55678      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55679      */
55680     addColumns : function(pos, ar)
55681     {
55682         
55683         for (var i =0;i< ar.length;i++) {
55684             var cfg = ar[i];
55685             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55686             this.cm.lookup[cfg.id] = cfg;
55687         }
55688         
55689         
55690         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55691             pos = this.cm.config.length; //this.cm.config.push(cfg);
55692         } 
55693         pos = Math.max(0,pos);
55694         ar.unshift(0);
55695         ar.unshift(pos);
55696         this.cm.config.splice.apply(this.cm.config, ar);
55697         
55698         
55699         
55700         this.view.generateRules(this.cm);
55701         this.view.refresh(true);
55702         
55703     },
55704     
55705     
55706     
55707     
55708     // private
55709     onKeyDown : function(e){
55710         this.fireEvent("keydown", e);
55711     },
55712
55713     /**
55714      * Destroy this grid.
55715      * @param {Boolean} removeEl True to remove the element
55716      */
55717     destroy : function(removeEl, keepListeners){
55718         if(this.loadMask){
55719             this.loadMask.destroy();
55720         }
55721         var c = this.container;
55722         c.removeAllListeners();
55723         this.view.destroy();
55724         this.colModel.purgeListeners();
55725         if(!keepListeners){
55726             this.purgeListeners();
55727         }
55728         c.update("");
55729         if(removeEl === true){
55730             c.remove();
55731         }
55732     },
55733
55734     // private
55735     processEvent : function(name, e){
55736         // does this fire select???
55737         //Roo.log('grid:processEvent '  + name);
55738         
55739         if (name != 'touchstart' ) {
55740             this.fireEvent(name, e);    
55741         }
55742         
55743         var t = e.getTarget();
55744         var v = this.view;
55745         var header = v.findHeaderIndex(t);
55746         if(header !== false){
55747             var ename = name == 'touchstart' ? 'click' : name;
55748              
55749             this.fireEvent("header" + ename, this, header, e);
55750         }else{
55751             var row = v.findRowIndex(t);
55752             var cell = v.findCellIndex(t);
55753             if (name == 'touchstart') {
55754                 // first touch is always a click.
55755                 // hopefull this happens after selection is updated.?
55756                 name = false;
55757                 
55758                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55759                     var cs = this.selModel.getSelectedCell();
55760                     if (row == cs[0] && cell == cs[1]){
55761                         name = 'dblclick';
55762                     }
55763                 }
55764                 if (typeof(this.selModel.getSelections) != 'undefined') {
55765                     var cs = this.selModel.getSelections();
55766                     var ds = this.dataSource;
55767                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55768                         name = 'dblclick';
55769                     }
55770                 }
55771                 if (!name) {
55772                     return;
55773                 }
55774             }
55775             
55776             
55777             if(row !== false){
55778                 this.fireEvent("row" + name, this, row, e);
55779                 if(cell !== false){
55780                     this.fireEvent("cell" + name, this, row, cell, e);
55781                 }
55782             }
55783         }
55784     },
55785
55786     // private
55787     onClick : function(e){
55788         this.processEvent("click", e);
55789     },
55790    // private
55791     onTouchStart : function(e){
55792         this.processEvent("touchstart", e);
55793     },
55794
55795     // private
55796     onContextMenu : function(e, t){
55797         this.processEvent("contextmenu", e);
55798     },
55799
55800     // private
55801     onDblClick : function(e){
55802         this.processEvent("dblclick", e);
55803     },
55804
55805     // private
55806     walkCells : function(row, col, step, fn, scope){
55807         var cm = this.colModel, clen = cm.getColumnCount();
55808         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55809         if(step < 0){
55810             if(col < 0){
55811                 row--;
55812                 first = false;
55813             }
55814             while(row >= 0){
55815                 if(!first){
55816                     col = clen-1;
55817                 }
55818                 first = false;
55819                 while(col >= 0){
55820                     if(fn.call(scope || this, row, col, cm) === true){
55821                         return [row, col];
55822                     }
55823                     col--;
55824                 }
55825                 row--;
55826             }
55827         } else {
55828             if(col >= clen){
55829                 row++;
55830                 first = false;
55831             }
55832             while(row < rlen){
55833                 if(!first){
55834                     col = 0;
55835                 }
55836                 first = false;
55837                 while(col < clen){
55838                     if(fn.call(scope || this, row, col, cm) === true){
55839                         return [row, col];
55840                     }
55841                     col++;
55842                 }
55843                 row++;
55844             }
55845         }
55846         return null;
55847     },
55848
55849     // private
55850     getSelections : function(){
55851         return this.selModel.getSelections();
55852     },
55853
55854     /**
55855      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55856      * but if manual update is required this method will initiate it.
55857      */
55858     autoSize : function(){
55859         if(this.rendered){
55860             this.view.layout();
55861             if(this.view.adjustForScroll){
55862                 this.view.adjustForScroll();
55863             }
55864         }
55865     },
55866
55867     /**
55868      * Returns the grid's underlying element.
55869      * @return {Element} The element
55870      */
55871     getGridEl : function(){
55872         return this.container;
55873     },
55874
55875     // private for compatibility, overridden by editor grid
55876     stopEditing : function(){},
55877
55878     /**
55879      * Returns the grid's SelectionModel.
55880      * @return {SelectionModel}
55881      */
55882     getSelectionModel : function(){
55883         if(!this.selModel){
55884             this.selModel = new Roo.grid.RowSelectionModel();
55885         }
55886         return this.selModel;
55887     },
55888
55889     /**
55890      * Returns the grid's DataSource.
55891      * @return {DataSource}
55892      */
55893     getDataSource : function(){
55894         return this.dataSource;
55895     },
55896
55897     /**
55898      * Returns the grid's ColumnModel.
55899      * @return {ColumnModel}
55900      */
55901     getColumnModel : function(){
55902         return this.colModel;
55903     },
55904
55905     /**
55906      * Returns the grid's GridView object.
55907      * @return {GridView}
55908      */
55909     getView : function(){
55910         if(!this.view){
55911             this.view = new Roo.grid.GridView(this.viewConfig);
55912             this.relayEvents(this.view, [
55913                 "beforerowremoved", "beforerowsinserted",
55914                 "beforerefresh", "rowremoved",
55915                 "rowsinserted", "rowupdated" ,"refresh"
55916             ]);
55917         }
55918         return this.view;
55919     },
55920     /**
55921      * Called to get grid's drag proxy text, by default returns this.ddText.
55922      * Override this to put something different in the dragged text.
55923      * @return {String}
55924      */
55925     getDragDropText : function(){
55926         var count = this.selModel.getCount();
55927         return String.format(this.ddText, count, count == 1 ? '' : 's');
55928     }
55929 });
55930 /*
55931  * Based on:
55932  * Ext JS Library 1.1.1
55933  * Copyright(c) 2006-2007, Ext JS, LLC.
55934  *
55935  * Originally Released Under LGPL - original licence link has changed is not relivant.
55936  *
55937  * Fork - LGPL
55938  * <script type="text/javascript">
55939  */
55940  
55941 Roo.grid.AbstractGridView = function(){
55942         this.grid = null;
55943         
55944         this.events = {
55945             "beforerowremoved" : true,
55946             "beforerowsinserted" : true,
55947             "beforerefresh" : true,
55948             "rowremoved" : true,
55949             "rowsinserted" : true,
55950             "rowupdated" : true,
55951             "refresh" : true
55952         };
55953     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55954 };
55955
55956 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55957     rowClass : "x-grid-row",
55958     cellClass : "x-grid-cell",
55959     tdClass : "x-grid-td",
55960     hdClass : "x-grid-hd",
55961     splitClass : "x-grid-hd-split",
55962     
55963     init: function(grid){
55964         this.grid = grid;
55965                 var cid = this.grid.getGridEl().id;
55966         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
55967         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
55968         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
55969         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
55970         },
55971         
55972     getColumnRenderers : function(){
55973         var renderers = [];
55974         var cm = this.grid.colModel;
55975         var colCount = cm.getColumnCount();
55976         for(var i = 0; i < colCount; i++){
55977             renderers[i] = cm.getRenderer(i);
55978         }
55979         return renderers;
55980     },
55981     
55982     getColumnIds : function(){
55983         var ids = [];
55984         var cm = this.grid.colModel;
55985         var colCount = cm.getColumnCount();
55986         for(var i = 0; i < colCount; i++){
55987             ids[i] = cm.getColumnId(i);
55988         }
55989         return ids;
55990     },
55991     
55992     getDataIndexes : function(){
55993         if(!this.indexMap){
55994             this.indexMap = this.buildIndexMap();
55995         }
55996         return this.indexMap.colToData;
55997     },
55998     
55999     getColumnIndexByDataIndex : function(dataIndex){
56000         if(!this.indexMap){
56001             this.indexMap = this.buildIndexMap();
56002         }
56003         return this.indexMap.dataToCol[dataIndex];
56004     },
56005     
56006     /**
56007      * Set a css style for a column dynamically. 
56008      * @param {Number} colIndex The index of the column
56009      * @param {String} name The css property name
56010      * @param {String} value The css value
56011      */
56012     setCSSStyle : function(colIndex, name, value){
56013         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
56014         Roo.util.CSS.updateRule(selector, name, value);
56015     },
56016     
56017     generateRules : function(cm){
56018         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
56019         Roo.util.CSS.removeStyleSheet(rulesId);
56020         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56021             var cid = cm.getColumnId(i);
56022             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
56023                          this.tdSelector, cid, " {\n}\n",
56024                          this.hdSelector, cid, " {\n}\n",
56025                          this.splitSelector, cid, " {\n}\n");
56026         }
56027         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56028     }
56029 });/*
56030  * Based on:
56031  * Ext JS Library 1.1.1
56032  * Copyright(c) 2006-2007, Ext JS, LLC.
56033  *
56034  * Originally Released Under LGPL - original licence link has changed is not relivant.
56035  *
56036  * Fork - LGPL
56037  * <script type="text/javascript">
56038  */
56039
56040 // private
56041 // This is a support class used internally by the Grid components
56042 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
56043     this.grid = grid;
56044     this.view = grid.getView();
56045     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56046     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
56047     if(hd2){
56048         this.setHandleElId(Roo.id(hd));
56049         this.setOuterHandleElId(Roo.id(hd2));
56050     }
56051     this.scroll = false;
56052 };
56053 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
56054     maxDragWidth: 120,
56055     getDragData : function(e){
56056         var t = Roo.lib.Event.getTarget(e);
56057         var h = this.view.findHeaderCell(t);
56058         if(h){
56059             return {ddel: h.firstChild, header:h};
56060         }
56061         return false;
56062     },
56063
56064     onInitDrag : function(e){
56065         this.view.headersDisabled = true;
56066         var clone = this.dragData.ddel.cloneNode(true);
56067         clone.id = Roo.id();
56068         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56069         this.proxy.update(clone);
56070         return true;
56071     },
56072
56073     afterValidDrop : function(){
56074         var v = this.view;
56075         setTimeout(function(){
56076             v.headersDisabled = false;
56077         }, 50);
56078     },
56079
56080     afterInvalidDrop : function(){
56081         var v = this.view;
56082         setTimeout(function(){
56083             v.headersDisabled = false;
56084         }, 50);
56085     }
56086 });
56087 /*
56088  * Based on:
56089  * Ext JS Library 1.1.1
56090  * Copyright(c) 2006-2007, Ext JS, LLC.
56091  *
56092  * Originally Released Under LGPL - original licence link has changed is not relivant.
56093  *
56094  * Fork - LGPL
56095  * <script type="text/javascript">
56096  */
56097 // private
56098 // This is a support class used internally by the Grid components
56099 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56100     this.grid = grid;
56101     this.view = grid.getView();
56102     // split the proxies so they don't interfere with mouse events
56103     this.proxyTop = Roo.DomHelper.append(document.body, {
56104         cls:"col-move-top", html:"&#160;"
56105     }, true);
56106     this.proxyBottom = Roo.DomHelper.append(document.body, {
56107         cls:"col-move-bottom", html:"&#160;"
56108     }, true);
56109     this.proxyTop.hide = this.proxyBottom.hide = function(){
56110         this.setLeftTop(-100,-100);
56111         this.setStyle("visibility", "hidden");
56112     };
56113     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56114     // temporarily disabled
56115     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56116     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56117 };
56118 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56119     proxyOffsets : [-4, -9],
56120     fly: Roo.Element.fly,
56121
56122     getTargetFromEvent : function(e){
56123         var t = Roo.lib.Event.getTarget(e);
56124         var cindex = this.view.findCellIndex(t);
56125         if(cindex !== false){
56126             return this.view.getHeaderCell(cindex);
56127         }
56128         return null;
56129     },
56130
56131     nextVisible : function(h){
56132         var v = this.view, cm = this.grid.colModel;
56133         h = h.nextSibling;
56134         while(h){
56135             if(!cm.isHidden(v.getCellIndex(h))){
56136                 return h;
56137             }
56138             h = h.nextSibling;
56139         }
56140         return null;
56141     },
56142
56143     prevVisible : function(h){
56144         var v = this.view, cm = this.grid.colModel;
56145         h = h.prevSibling;
56146         while(h){
56147             if(!cm.isHidden(v.getCellIndex(h))){
56148                 return h;
56149             }
56150             h = h.prevSibling;
56151         }
56152         return null;
56153     },
56154
56155     positionIndicator : function(h, n, e){
56156         var x = Roo.lib.Event.getPageX(e);
56157         var r = Roo.lib.Dom.getRegion(n.firstChild);
56158         var px, pt, py = r.top + this.proxyOffsets[1];
56159         if((r.right - x) <= (r.right-r.left)/2){
56160             px = r.right+this.view.borderWidth;
56161             pt = "after";
56162         }else{
56163             px = r.left;
56164             pt = "before";
56165         }
56166         var oldIndex = this.view.getCellIndex(h);
56167         var newIndex = this.view.getCellIndex(n);
56168
56169         if(this.grid.colModel.isFixed(newIndex)){
56170             return false;
56171         }
56172
56173         var locked = this.grid.colModel.isLocked(newIndex);
56174
56175         if(pt == "after"){
56176             newIndex++;
56177         }
56178         if(oldIndex < newIndex){
56179             newIndex--;
56180         }
56181         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56182             return false;
56183         }
56184         px +=  this.proxyOffsets[0];
56185         this.proxyTop.setLeftTop(px, py);
56186         this.proxyTop.show();
56187         if(!this.bottomOffset){
56188             this.bottomOffset = this.view.mainHd.getHeight();
56189         }
56190         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56191         this.proxyBottom.show();
56192         return pt;
56193     },
56194
56195     onNodeEnter : function(n, dd, e, data){
56196         if(data.header != n){
56197             this.positionIndicator(data.header, n, e);
56198         }
56199     },
56200
56201     onNodeOver : function(n, dd, e, data){
56202         var result = false;
56203         if(data.header != n){
56204             result = this.positionIndicator(data.header, n, e);
56205         }
56206         if(!result){
56207             this.proxyTop.hide();
56208             this.proxyBottom.hide();
56209         }
56210         return result ? this.dropAllowed : this.dropNotAllowed;
56211     },
56212
56213     onNodeOut : function(n, dd, e, data){
56214         this.proxyTop.hide();
56215         this.proxyBottom.hide();
56216     },
56217
56218     onNodeDrop : function(n, dd, e, data){
56219         var h = data.header;
56220         if(h != n){
56221             var cm = this.grid.colModel;
56222             var x = Roo.lib.Event.getPageX(e);
56223             var r = Roo.lib.Dom.getRegion(n.firstChild);
56224             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56225             var oldIndex = this.view.getCellIndex(h);
56226             var newIndex = this.view.getCellIndex(n);
56227             var locked = cm.isLocked(newIndex);
56228             if(pt == "after"){
56229                 newIndex++;
56230             }
56231             if(oldIndex < newIndex){
56232                 newIndex--;
56233             }
56234             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56235                 return false;
56236             }
56237             cm.setLocked(oldIndex, locked, true);
56238             cm.moveColumn(oldIndex, newIndex);
56239             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56240             return true;
56241         }
56242         return false;
56243     }
56244 });
56245 /*
56246  * Based on:
56247  * Ext JS Library 1.1.1
56248  * Copyright(c) 2006-2007, Ext JS, LLC.
56249  *
56250  * Originally Released Under LGPL - original licence link has changed is not relivant.
56251  *
56252  * Fork - LGPL
56253  * <script type="text/javascript">
56254  */
56255   
56256 /**
56257  * @class Roo.grid.GridView
56258  * @extends Roo.util.Observable
56259  *
56260  * @constructor
56261  * @param {Object} config
56262  */
56263 Roo.grid.GridView = function(config){
56264     Roo.grid.GridView.superclass.constructor.call(this);
56265     this.el = null;
56266
56267     Roo.apply(this, config);
56268 };
56269
56270 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56271
56272     unselectable :  'unselectable="on"',
56273     unselectableCls :  'x-unselectable',
56274     
56275     
56276     rowClass : "x-grid-row",
56277
56278     cellClass : "x-grid-col",
56279
56280     tdClass : "x-grid-td",
56281
56282     hdClass : "x-grid-hd",
56283
56284     splitClass : "x-grid-split",
56285
56286     sortClasses : ["sort-asc", "sort-desc"],
56287
56288     enableMoveAnim : false,
56289
56290     hlColor: "C3DAF9",
56291
56292     dh : Roo.DomHelper,
56293
56294     fly : Roo.Element.fly,
56295
56296     css : Roo.util.CSS,
56297
56298     borderWidth: 1,
56299
56300     splitOffset: 3,
56301
56302     scrollIncrement : 22,
56303
56304     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56305
56306     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56307
56308     bind : function(ds, cm){
56309         if(this.ds){
56310             this.ds.un("load", this.onLoad, this);
56311             this.ds.un("datachanged", this.onDataChange, this);
56312             this.ds.un("add", this.onAdd, this);
56313             this.ds.un("remove", this.onRemove, this);
56314             this.ds.un("update", this.onUpdate, this);
56315             this.ds.un("clear", this.onClear, this);
56316         }
56317         if(ds){
56318             ds.on("load", this.onLoad, this);
56319             ds.on("datachanged", this.onDataChange, this);
56320             ds.on("add", this.onAdd, this);
56321             ds.on("remove", this.onRemove, this);
56322             ds.on("update", this.onUpdate, this);
56323             ds.on("clear", this.onClear, this);
56324         }
56325         this.ds = ds;
56326
56327         if(this.cm){
56328             this.cm.un("widthchange", this.onColWidthChange, this);
56329             this.cm.un("headerchange", this.onHeaderChange, this);
56330             this.cm.un("hiddenchange", this.onHiddenChange, this);
56331             this.cm.un("columnmoved", this.onColumnMove, this);
56332             this.cm.un("columnlockchange", this.onColumnLock, this);
56333         }
56334         if(cm){
56335             this.generateRules(cm);
56336             cm.on("widthchange", this.onColWidthChange, this);
56337             cm.on("headerchange", this.onHeaderChange, this);
56338             cm.on("hiddenchange", this.onHiddenChange, this);
56339             cm.on("columnmoved", this.onColumnMove, this);
56340             cm.on("columnlockchange", this.onColumnLock, this);
56341         }
56342         this.cm = cm;
56343     },
56344
56345     init: function(grid){
56346         Roo.grid.GridView.superclass.init.call(this, grid);
56347
56348         this.bind(grid.dataSource, grid.colModel);
56349
56350         grid.on("headerclick", this.handleHeaderClick, this);
56351
56352         if(grid.trackMouseOver){
56353             grid.on("mouseover", this.onRowOver, this);
56354             grid.on("mouseout", this.onRowOut, this);
56355         }
56356         grid.cancelTextSelection = function(){};
56357         this.gridId = grid.id;
56358
56359         var tpls = this.templates || {};
56360
56361         if(!tpls.master){
56362             tpls.master = new Roo.Template(
56363                '<div class="x-grid" hidefocus="true">',
56364                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56365                   '<div class="x-grid-topbar"></div>',
56366                   '<div class="x-grid-scroller"><div></div></div>',
56367                   '<div class="x-grid-locked">',
56368                       '<div class="x-grid-header">{lockedHeader}</div>',
56369                       '<div class="x-grid-body">{lockedBody}</div>',
56370                   "</div>",
56371                   '<div class="x-grid-viewport">',
56372                       '<div class="x-grid-header">{header}</div>',
56373                       '<div class="x-grid-body">{body}</div>',
56374                   "</div>",
56375                   '<div class="x-grid-bottombar"></div>',
56376                  
56377                   '<div class="x-grid-resize-proxy">&#160;</div>',
56378                "</div>"
56379             );
56380             tpls.master.disableformats = true;
56381         }
56382
56383         if(!tpls.header){
56384             tpls.header = new Roo.Template(
56385                '<table border="0" cellspacing="0" cellpadding="0">',
56386                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56387                "</table>{splits}"
56388             );
56389             tpls.header.disableformats = true;
56390         }
56391         tpls.header.compile();
56392
56393         if(!tpls.hcell){
56394             tpls.hcell = new Roo.Template(
56395                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56396                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56397                 "</div></td>"
56398              );
56399              tpls.hcell.disableFormats = true;
56400         }
56401         tpls.hcell.compile();
56402
56403         if(!tpls.hsplit){
56404             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56405                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56406             tpls.hsplit.disableFormats = true;
56407         }
56408         tpls.hsplit.compile();
56409
56410         if(!tpls.body){
56411             tpls.body = new Roo.Template(
56412                '<table border="0" cellspacing="0" cellpadding="0">',
56413                "<tbody>{rows}</tbody>",
56414                "</table>"
56415             );
56416             tpls.body.disableFormats = true;
56417         }
56418         tpls.body.compile();
56419
56420         if(!tpls.row){
56421             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56422             tpls.row.disableFormats = true;
56423         }
56424         tpls.row.compile();
56425
56426         if(!tpls.cell){
56427             tpls.cell = new Roo.Template(
56428                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56429                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56430                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56431                 "</td>"
56432             );
56433             tpls.cell.disableFormats = true;
56434         }
56435         tpls.cell.compile();
56436
56437         this.templates = tpls;
56438     },
56439
56440     // remap these for backwards compat
56441     onColWidthChange : function(){
56442         this.updateColumns.apply(this, arguments);
56443     },
56444     onHeaderChange : function(){
56445         this.updateHeaders.apply(this, arguments);
56446     }, 
56447     onHiddenChange : function(){
56448         this.handleHiddenChange.apply(this, arguments);
56449     },
56450     onColumnMove : function(){
56451         this.handleColumnMove.apply(this, arguments);
56452     },
56453     onColumnLock : function(){
56454         this.handleLockChange.apply(this, arguments);
56455     },
56456
56457     onDataChange : function(){
56458         this.refresh();
56459         this.updateHeaderSortState();
56460     },
56461
56462     onClear : function(){
56463         this.refresh();
56464     },
56465
56466     onUpdate : function(ds, record){
56467         this.refreshRow(record);
56468     },
56469
56470     refreshRow : function(record){
56471         var ds = this.ds, index;
56472         if(typeof record == 'number'){
56473             index = record;
56474             record = ds.getAt(index);
56475         }else{
56476             index = ds.indexOf(record);
56477         }
56478         this.insertRows(ds, index, index, true);
56479         this.onRemove(ds, record, index+1, true);
56480         this.syncRowHeights(index, index);
56481         this.layout();
56482         this.fireEvent("rowupdated", this, index, record);
56483     },
56484
56485     onAdd : function(ds, records, index){
56486         this.insertRows(ds, index, index + (records.length-1));
56487     },
56488
56489     onRemove : function(ds, record, index, isUpdate){
56490         if(isUpdate !== true){
56491             this.fireEvent("beforerowremoved", this, index, record);
56492         }
56493         var bt = this.getBodyTable(), lt = this.getLockedTable();
56494         if(bt.rows[index]){
56495             bt.firstChild.removeChild(bt.rows[index]);
56496         }
56497         if(lt.rows[index]){
56498             lt.firstChild.removeChild(lt.rows[index]);
56499         }
56500         if(isUpdate !== true){
56501             this.stripeRows(index);
56502             this.syncRowHeights(index, index);
56503             this.layout();
56504             this.fireEvent("rowremoved", this, index, record);
56505         }
56506     },
56507
56508     onLoad : function(){
56509         this.scrollToTop();
56510     },
56511
56512     /**
56513      * Scrolls the grid to the top
56514      */
56515     scrollToTop : function(){
56516         if(this.scroller){
56517             this.scroller.dom.scrollTop = 0;
56518             this.syncScroll();
56519         }
56520     },
56521
56522     /**
56523      * Gets a panel in the header of the grid that can be used for toolbars etc.
56524      * After modifying the contents of this panel a call to grid.autoSize() may be
56525      * required to register any changes in size.
56526      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56527      * @return Roo.Element
56528      */
56529     getHeaderPanel : function(doShow){
56530         if(doShow){
56531             this.headerPanel.show();
56532         }
56533         return this.headerPanel;
56534     },
56535
56536     /**
56537      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56538      * After modifying the contents of this panel a call to grid.autoSize() may be
56539      * required to register any changes in size.
56540      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56541      * @return Roo.Element
56542      */
56543     getFooterPanel : function(doShow){
56544         if(doShow){
56545             this.footerPanel.show();
56546         }
56547         return this.footerPanel;
56548     },
56549
56550     initElements : function(){
56551         var E = Roo.Element;
56552         var el = this.grid.getGridEl().dom.firstChild;
56553         var cs = el.childNodes;
56554
56555         this.el = new E(el);
56556         
56557          this.focusEl = new E(el.firstChild);
56558         this.focusEl.swallowEvent("click", true);
56559         
56560         this.headerPanel = new E(cs[1]);
56561         this.headerPanel.enableDisplayMode("block");
56562
56563         this.scroller = new E(cs[2]);
56564         this.scrollSizer = new E(this.scroller.dom.firstChild);
56565
56566         this.lockedWrap = new E(cs[3]);
56567         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56568         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56569
56570         this.mainWrap = new E(cs[4]);
56571         this.mainHd = new E(this.mainWrap.dom.firstChild);
56572         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56573
56574         this.footerPanel = new E(cs[5]);
56575         this.footerPanel.enableDisplayMode("block");
56576
56577         this.resizeProxy = new E(cs[6]);
56578
56579         this.headerSelector = String.format(
56580            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56581            this.lockedHd.id, this.mainHd.id
56582         );
56583
56584         this.splitterSelector = String.format(
56585            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56586            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56587         );
56588     },
56589     idToCssName : function(s)
56590     {
56591         return s.replace(/[^a-z0-9]+/ig, '-');
56592     },
56593
56594     getHeaderCell : function(index){
56595         return Roo.DomQuery.select(this.headerSelector)[index];
56596     },
56597
56598     getHeaderCellMeasure : function(index){
56599         return this.getHeaderCell(index).firstChild;
56600     },
56601
56602     getHeaderCellText : function(index){
56603         return this.getHeaderCell(index).firstChild.firstChild;
56604     },
56605
56606     getLockedTable : function(){
56607         return this.lockedBody.dom.firstChild;
56608     },
56609
56610     getBodyTable : function(){
56611         return this.mainBody.dom.firstChild;
56612     },
56613
56614     getLockedRow : function(index){
56615         return this.getLockedTable().rows[index];
56616     },
56617
56618     getRow : function(index){
56619         return this.getBodyTable().rows[index];
56620     },
56621
56622     getRowComposite : function(index){
56623         if(!this.rowEl){
56624             this.rowEl = new Roo.CompositeElementLite();
56625         }
56626         var els = [], lrow, mrow;
56627         if(lrow = this.getLockedRow(index)){
56628             els.push(lrow);
56629         }
56630         if(mrow = this.getRow(index)){
56631             els.push(mrow);
56632         }
56633         this.rowEl.elements = els;
56634         return this.rowEl;
56635     },
56636     /**
56637      * Gets the 'td' of the cell
56638      * 
56639      * @param {Integer} rowIndex row to select
56640      * @param {Integer} colIndex column to select
56641      * 
56642      * @return {Object} 
56643      */
56644     getCell : function(rowIndex, colIndex){
56645         var locked = this.cm.getLockedCount();
56646         var source;
56647         if(colIndex < locked){
56648             source = this.lockedBody.dom.firstChild;
56649         }else{
56650             source = this.mainBody.dom.firstChild;
56651             colIndex -= locked;
56652         }
56653         return source.rows[rowIndex].childNodes[colIndex];
56654     },
56655
56656     getCellText : function(rowIndex, colIndex){
56657         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56658     },
56659
56660     getCellBox : function(cell){
56661         var b = this.fly(cell).getBox();
56662         if(Roo.isOpera){ // opera fails to report the Y
56663             b.y = cell.offsetTop + this.mainBody.getY();
56664         }
56665         return b;
56666     },
56667
56668     getCellIndex : function(cell){
56669         var id = String(cell.className).match(this.cellRE);
56670         if(id){
56671             return parseInt(id[1], 10);
56672         }
56673         return 0;
56674     },
56675
56676     findHeaderIndex : function(n){
56677         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56678         return r ? this.getCellIndex(r) : false;
56679     },
56680
56681     findHeaderCell : function(n){
56682         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56683         return r ? r : false;
56684     },
56685
56686     findRowIndex : function(n){
56687         if(!n){
56688             return false;
56689         }
56690         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56691         return r ? r.rowIndex : false;
56692     },
56693
56694     findCellIndex : function(node){
56695         var stop = this.el.dom;
56696         while(node && node != stop){
56697             if(this.findRE.test(node.className)){
56698                 return this.getCellIndex(node);
56699             }
56700             node = node.parentNode;
56701         }
56702         return false;
56703     },
56704
56705     getColumnId : function(index){
56706         return this.cm.getColumnId(index);
56707     },
56708
56709     getSplitters : function()
56710     {
56711         if(this.splitterSelector){
56712            return Roo.DomQuery.select(this.splitterSelector);
56713         }else{
56714             return null;
56715       }
56716     },
56717
56718     getSplitter : function(index){
56719         return this.getSplitters()[index];
56720     },
56721
56722     onRowOver : function(e, t){
56723         var row;
56724         if((row = this.findRowIndex(t)) !== false){
56725             this.getRowComposite(row).addClass("x-grid-row-over");
56726         }
56727     },
56728
56729     onRowOut : function(e, t){
56730         var row;
56731         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56732             this.getRowComposite(row).removeClass("x-grid-row-over");
56733         }
56734     },
56735
56736     renderHeaders : function(){
56737         var cm = this.cm;
56738         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56739         var cb = [], lb = [], sb = [], lsb = [], p = {};
56740         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56741             p.cellId = "x-grid-hd-0-" + i;
56742             p.splitId = "x-grid-csplit-0-" + i;
56743             p.id = cm.getColumnId(i);
56744             p.value = cm.getColumnHeader(i) || "";
56745             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56746             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56747             if(!cm.isLocked(i)){
56748                 cb[cb.length] = ct.apply(p);
56749                 sb[sb.length] = st.apply(p);
56750             }else{
56751                 lb[lb.length] = ct.apply(p);
56752                 lsb[lsb.length] = st.apply(p);
56753             }
56754         }
56755         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56756                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56757     },
56758
56759     updateHeaders : function(){
56760         var html = this.renderHeaders();
56761         this.lockedHd.update(html[0]);
56762         this.mainHd.update(html[1]);
56763     },
56764
56765     /**
56766      * Focuses the specified row.
56767      * @param {Number} row The row index
56768      */
56769     focusRow : function(row)
56770     {
56771         //Roo.log('GridView.focusRow');
56772         var x = this.scroller.dom.scrollLeft;
56773         this.focusCell(row, 0, false);
56774         this.scroller.dom.scrollLeft = x;
56775     },
56776
56777     /**
56778      * Focuses the specified cell.
56779      * @param {Number} row The row index
56780      * @param {Number} col The column index
56781      * @param {Boolean} hscroll false to disable horizontal scrolling
56782      */
56783     focusCell : function(row, col, hscroll)
56784     {
56785         //Roo.log('GridView.focusCell');
56786         var el = this.ensureVisible(row, col, hscroll);
56787         this.focusEl.alignTo(el, "tl-tl");
56788         if(Roo.isGecko){
56789             this.focusEl.focus();
56790         }else{
56791             this.focusEl.focus.defer(1, this.focusEl);
56792         }
56793     },
56794
56795     /**
56796      * Scrolls the specified cell into view
56797      * @param {Number} row The row index
56798      * @param {Number} col The column index
56799      * @param {Boolean} hscroll false to disable horizontal scrolling
56800      */
56801     ensureVisible : function(row, col, hscroll)
56802     {
56803         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56804         //return null; //disable for testing.
56805         if(typeof row != "number"){
56806             row = row.rowIndex;
56807         }
56808         if(row < 0 && row >= this.ds.getCount()){
56809             return  null;
56810         }
56811         col = (col !== undefined ? col : 0);
56812         var cm = this.grid.colModel;
56813         while(cm.isHidden(col)){
56814             col++;
56815         }
56816
56817         var el = this.getCell(row, col);
56818         if(!el){
56819             return null;
56820         }
56821         var c = this.scroller.dom;
56822
56823         var ctop = parseInt(el.offsetTop, 10);
56824         var cleft = parseInt(el.offsetLeft, 10);
56825         var cbot = ctop + el.offsetHeight;
56826         var cright = cleft + el.offsetWidth;
56827         
56828         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56829         var stop = parseInt(c.scrollTop, 10);
56830         var sleft = parseInt(c.scrollLeft, 10);
56831         var sbot = stop + ch;
56832         var sright = sleft + c.clientWidth;
56833         /*
56834         Roo.log('GridView.ensureVisible:' +
56835                 ' ctop:' + ctop +
56836                 ' c.clientHeight:' + c.clientHeight +
56837                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56838                 ' stop:' + stop +
56839                 ' cbot:' + cbot +
56840                 ' sbot:' + sbot +
56841                 ' ch:' + ch  
56842                 );
56843         */
56844         if(ctop < stop){
56845             c.scrollTop = ctop;
56846             //Roo.log("set scrolltop to ctop DISABLE?");
56847         }else if(cbot > sbot){
56848             //Roo.log("set scrolltop to cbot-ch");
56849             c.scrollTop = cbot-ch;
56850         }
56851         
56852         if(hscroll !== false){
56853             if(cleft < sleft){
56854                 c.scrollLeft = cleft;
56855             }else if(cright > sright){
56856                 c.scrollLeft = cright-c.clientWidth;
56857             }
56858         }
56859          
56860         return el;
56861     },
56862
56863     updateColumns : function(){
56864         this.grid.stopEditing();
56865         var cm = this.grid.colModel, colIds = this.getColumnIds();
56866         //var totalWidth = cm.getTotalWidth();
56867         var pos = 0;
56868         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56869             //if(cm.isHidden(i)) continue;
56870             var w = cm.getColumnWidth(i);
56871             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56872             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56873         }
56874         this.updateSplitters();
56875     },
56876
56877     generateRules : function(cm){
56878         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56879         Roo.util.CSS.removeStyleSheet(rulesId);
56880         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56881             var cid = cm.getColumnId(i);
56882             var align = '';
56883             if(cm.config[i].align){
56884                 align = 'text-align:'+cm.config[i].align+';';
56885             }
56886             var hidden = '';
56887             if(cm.isHidden(i)){
56888                 hidden = 'display:none;';
56889             }
56890             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56891             ruleBuf.push(
56892                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56893                     this.hdSelector, cid, " {\n", align, width, "}\n",
56894                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56895                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56896         }
56897         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56898     },
56899
56900     updateSplitters : function(){
56901         var cm = this.cm, s = this.getSplitters();
56902         if(s){ // splitters not created yet
56903             var pos = 0, locked = true;
56904             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56905                 if(cm.isHidden(i)) {
56906                     continue;
56907                 }
56908                 var w = cm.getColumnWidth(i); // make sure it's a number
56909                 if(!cm.isLocked(i) && locked){
56910                     pos = 0;
56911                     locked = false;
56912                 }
56913                 pos += w;
56914                 s[i].style.left = (pos-this.splitOffset) + "px";
56915             }
56916         }
56917     },
56918
56919     handleHiddenChange : function(colModel, colIndex, hidden){
56920         if(hidden){
56921             this.hideColumn(colIndex);
56922         }else{
56923             this.unhideColumn(colIndex);
56924         }
56925     },
56926
56927     hideColumn : function(colIndex){
56928         var cid = this.getColumnId(colIndex);
56929         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56930         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56931         if(Roo.isSafari){
56932             this.updateHeaders();
56933         }
56934         this.updateSplitters();
56935         this.layout();
56936     },
56937
56938     unhideColumn : function(colIndex){
56939         var cid = this.getColumnId(colIndex);
56940         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56941         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56942
56943         if(Roo.isSafari){
56944             this.updateHeaders();
56945         }
56946         this.updateSplitters();
56947         this.layout();
56948     },
56949
56950     insertRows : function(dm, firstRow, lastRow, isUpdate){
56951         if(firstRow == 0 && lastRow == dm.getCount()-1){
56952             this.refresh();
56953         }else{
56954             if(!isUpdate){
56955                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56956             }
56957             var s = this.getScrollState();
56958             var markup = this.renderRows(firstRow, lastRow);
56959             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56960             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56961             this.restoreScroll(s);
56962             if(!isUpdate){
56963                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56964                 this.syncRowHeights(firstRow, lastRow);
56965                 this.stripeRows(firstRow);
56966                 this.layout();
56967             }
56968         }
56969     },
56970
56971     bufferRows : function(markup, target, index){
56972         var before = null, trows = target.rows, tbody = target.tBodies[0];
56973         if(index < trows.length){
56974             before = trows[index];
56975         }
56976         var b = document.createElement("div");
56977         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
56978         var rows = b.firstChild.rows;
56979         for(var i = 0, len = rows.length; i < len; i++){
56980             if(before){
56981                 tbody.insertBefore(rows[0], before);
56982             }else{
56983                 tbody.appendChild(rows[0]);
56984             }
56985         }
56986         b.innerHTML = "";
56987         b = null;
56988     },
56989
56990     deleteRows : function(dm, firstRow, lastRow){
56991         if(dm.getRowCount()<1){
56992             this.fireEvent("beforerefresh", this);
56993             this.mainBody.update("");
56994             this.lockedBody.update("");
56995             this.fireEvent("refresh", this);
56996         }else{
56997             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
56998             var bt = this.getBodyTable();
56999             var tbody = bt.firstChild;
57000             var rows = bt.rows;
57001             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
57002                 tbody.removeChild(rows[firstRow]);
57003             }
57004             this.stripeRows(firstRow);
57005             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
57006         }
57007     },
57008
57009     updateRows : function(dataSource, firstRow, lastRow){
57010         var s = this.getScrollState();
57011         this.refresh();
57012         this.restoreScroll(s);
57013     },
57014
57015     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
57016         if(!noRefresh){
57017            this.refresh();
57018         }
57019         this.updateHeaderSortState();
57020     },
57021
57022     getScrollState : function(){
57023         
57024         var sb = this.scroller.dom;
57025         return {left: sb.scrollLeft, top: sb.scrollTop};
57026     },
57027
57028     stripeRows : function(startRow){
57029         if(!this.grid.stripeRows || this.ds.getCount() < 1){
57030             return;
57031         }
57032         startRow = startRow || 0;
57033         var rows = this.getBodyTable().rows;
57034         var lrows = this.getLockedTable().rows;
57035         var cls = ' x-grid-row-alt ';
57036         for(var i = startRow, len = rows.length; i < len; i++){
57037             var row = rows[i], lrow = lrows[i];
57038             var isAlt = ((i+1) % 2 == 0);
57039             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
57040             if(isAlt == hasAlt){
57041                 continue;
57042             }
57043             if(isAlt){
57044                 row.className += " x-grid-row-alt";
57045             }else{
57046                 row.className = row.className.replace("x-grid-row-alt", "");
57047             }
57048             if(lrow){
57049                 lrow.className = row.className;
57050             }
57051         }
57052     },
57053
57054     restoreScroll : function(state){
57055         //Roo.log('GridView.restoreScroll');
57056         var sb = this.scroller.dom;
57057         sb.scrollLeft = state.left;
57058         sb.scrollTop = state.top;
57059         this.syncScroll();
57060     },
57061
57062     syncScroll : function(){
57063         //Roo.log('GridView.syncScroll');
57064         var sb = this.scroller.dom;
57065         var sh = this.mainHd.dom;
57066         var bs = this.mainBody.dom;
57067         var lv = this.lockedBody.dom;
57068         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57069         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57070     },
57071
57072     handleScroll : function(e){
57073         this.syncScroll();
57074         var sb = this.scroller.dom;
57075         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57076         e.stopEvent();
57077     },
57078
57079     handleWheel : function(e){
57080         var d = e.getWheelDelta();
57081         this.scroller.dom.scrollTop -= d*22;
57082         // set this here to prevent jumpy scrolling on large tables
57083         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57084         e.stopEvent();
57085     },
57086
57087     renderRows : function(startRow, endRow){
57088         // pull in all the crap needed to render rows
57089         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57090         var colCount = cm.getColumnCount();
57091
57092         if(ds.getCount() < 1){
57093             return ["", ""];
57094         }
57095
57096         // build a map for all the columns
57097         var cs = [];
57098         for(var i = 0; i < colCount; i++){
57099             var name = cm.getDataIndex(i);
57100             cs[i] = {
57101                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57102                 renderer : cm.getRenderer(i),
57103                 id : cm.getColumnId(i),
57104                 locked : cm.isLocked(i),
57105                 has_editor : cm.isCellEditable(i)
57106             };
57107         }
57108
57109         startRow = startRow || 0;
57110         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57111
57112         // records to render
57113         var rs = ds.getRange(startRow, endRow);
57114
57115         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57116     },
57117
57118     // As much as I hate to duplicate code, this was branched because FireFox really hates
57119     // [].join("") on strings. The performance difference was substantial enough to
57120     // branch this function
57121     doRender : Roo.isGecko ?
57122             function(cs, rs, ds, startRow, colCount, stripe){
57123                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57124                 // buffers
57125                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57126                 
57127                 var hasListener = this.grid.hasListener('rowclass');
57128                 var rowcfg = {};
57129                 for(var j = 0, len = rs.length; j < len; j++){
57130                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57131                     for(var i = 0; i < colCount; i++){
57132                         c = cs[i];
57133                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57134                         p.id = c.id;
57135                         p.css = p.attr = "";
57136                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57137                         if(p.value == undefined || p.value === "") {
57138                             p.value = "&#160;";
57139                         }
57140                         if(c.has_editor){
57141                             p.css += ' x-grid-editable-cell';
57142                         }
57143                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57144                             p.css +=  ' x-grid-dirty-cell';
57145                         }
57146                         var markup = ct.apply(p);
57147                         if(!c.locked){
57148                             cb+= markup;
57149                         }else{
57150                             lcb+= markup;
57151                         }
57152                     }
57153                     var alt = [];
57154                     if(stripe && ((rowIndex+1) % 2 == 0)){
57155                         alt.push("x-grid-row-alt")
57156                     }
57157                     if(r.dirty){
57158                         alt.push(  " x-grid-dirty-row");
57159                     }
57160                     rp.cells = lcb;
57161                     if(this.getRowClass){
57162                         alt.push(this.getRowClass(r, rowIndex));
57163                     }
57164                     if (hasListener) {
57165                         rowcfg = {
57166                              
57167                             record: r,
57168                             rowIndex : rowIndex,
57169                             rowClass : ''
57170                         };
57171                         this.grid.fireEvent('rowclass', this, rowcfg);
57172                         alt.push(rowcfg.rowClass);
57173                     }
57174                     rp.alt = alt.join(" ");
57175                     lbuf+= rt.apply(rp);
57176                     rp.cells = cb;
57177                     buf+=  rt.apply(rp);
57178                 }
57179                 return [lbuf, buf];
57180             } :
57181             function(cs, rs, ds, startRow, colCount, stripe){
57182                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57183                 // buffers
57184                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57185                 var hasListener = this.grid.hasListener('rowclass');
57186  
57187                 var rowcfg = {};
57188                 for(var j = 0, len = rs.length; j < len; j++){
57189                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57190                     for(var i = 0; i < colCount; i++){
57191                         c = cs[i];
57192                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57193                         p.id = c.id;
57194                         p.css = p.attr = "";
57195                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57196                         if(p.value == undefined || p.value === "") {
57197                             p.value = "&#160;";
57198                         }
57199                         //Roo.log(c);
57200                          if(c.has_editor){
57201                             p.css += ' x-grid-editable-cell';
57202                         }
57203                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57204                             p.css += ' x-grid-dirty-cell' 
57205                         }
57206                         
57207                         var markup = ct.apply(p);
57208                         if(!c.locked){
57209                             cb[cb.length] = markup;
57210                         }else{
57211                             lcb[lcb.length] = markup;
57212                         }
57213                     }
57214                     var alt = [];
57215                     if(stripe && ((rowIndex+1) % 2 == 0)){
57216                         alt.push( "x-grid-row-alt");
57217                     }
57218                     if(r.dirty){
57219                         alt.push(" x-grid-dirty-row");
57220                     }
57221                     rp.cells = lcb;
57222                     if(this.getRowClass){
57223                         alt.push( this.getRowClass(r, rowIndex));
57224                     }
57225                     if (hasListener) {
57226                         rowcfg = {
57227                              
57228                             record: r,
57229                             rowIndex : rowIndex,
57230                             rowClass : ''
57231                         };
57232                         this.grid.fireEvent('rowclass', this, rowcfg);
57233                         alt.push(rowcfg.rowClass);
57234                     }
57235                     
57236                     rp.alt = alt.join(" ");
57237                     rp.cells = lcb.join("");
57238                     lbuf[lbuf.length] = rt.apply(rp);
57239                     rp.cells = cb.join("");
57240                     buf[buf.length] =  rt.apply(rp);
57241                 }
57242                 return [lbuf.join(""), buf.join("")];
57243             },
57244
57245     renderBody : function(){
57246         var markup = this.renderRows();
57247         var bt = this.templates.body;
57248         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57249     },
57250
57251     /**
57252      * Refreshes the grid
57253      * @param {Boolean} headersToo
57254      */
57255     refresh : function(headersToo){
57256         this.fireEvent("beforerefresh", this);
57257         this.grid.stopEditing();
57258         var result = this.renderBody();
57259         this.lockedBody.update(result[0]);
57260         this.mainBody.update(result[1]);
57261         if(headersToo === true){
57262             this.updateHeaders();
57263             this.updateColumns();
57264             this.updateSplitters();
57265             this.updateHeaderSortState();
57266         }
57267         this.syncRowHeights();
57268         this.layout();
57269         this.fireEvent("refresh", this);
57270     },
57271
57272     handleColumnMove : function(cm, oldIndex, newIndex){
57273         this.indexMap = null;
57274         var s = this.getScrollState();
57275         this.refresh(true);
57276         this.restoreScroll(s);
57277         this.afterMove(newIndex);
57278     },
57279
57280     afterMove : function(colIndex){
57281         if(this.enableMoveAnim && Roo.enableFx){
57282             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57283         }
57284         // if multisort - fix sortOrder, and reload..
57285         if (this.grid.dataSource.multiSort) {
57286             // the we can call sort again..
57287             var dm = this.grid.dataSource;
57288             var cm = this.grid.colModel;
57289             var so = [];
57290             for(var i = 0; i < cm.config.length; i++ ) {
57291                 
57292                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57293                     continue; // dont' bother, it's not in sort list or being set.
57294                 }
57295                 
57296                 so.push(cm.config[i].dataIndex);
57297             };
57298             dm.sortOrder = so;
57299             dm.load(dm.lastOptions);
57300             
57301             
57302         }
57303         
57304     },
57305
57306     updateCell : function(dm, rowIndex, dataIndex){
57307         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57308         if(typeof colIndex == "undefined"){ // not present in grid
57309             return;
57310         }
57311         var cm = this.grid.colModel;
57312         var cell = this.getCell(rowIndex, colIndex);
57313         var cellText = this.getCellText(rowIndex, colIndex);
57314
57315         var p = {
57316             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57317             id : cm.getColumnId(colIndex),
57318             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57319         };
57320         var renderer = cm.getRenderer(colIndex);
57321         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57322         if(typeof val == "undefined" || val === "") {
57323             val = "&#160;";
57324         }
57325         cellText.innerHTML = val;
57326         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57327         this.syncRowHeights(rowIndex, rowIndex);
57328     },
57329
57330     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57331         var maxWidth = 0;
57332         if(this.grid.autoSizeHeaders){
57333             var h = this.getHeaderCellMeasure(colIndex);
57334             maxWidth = Math.max(maxWidth, h.scrollWidth);
57335         }
57336         var tb, index;
57337         if(this.cm.isLocked(colIndex)){
57338             tb = this.getLockedTable();
57339             index = colIndex;
57340         }else{
57341             tb = this.getBodyTable();
57342             index = colIndex - this.cm.getLockedCount();
57343         }
57344         if(tb && tb.rows){
57345             var rows = tb.rows;
57346             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57347             for(var i = 0; i < stopIndex; i++){
57348                 var cell = rows[i].childNodes[index].firstChild;
57349                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57350             }
57351         }
57352         return maxWidth + /*margin for error in IE*/ 5;
57353     },
57354     /**
57355      * Autofit a column to its content.
57356      * @param {Number} colIndex
57357      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57358      */
57359      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57360          if(this.cm.isHidden(colIndex)){
57361              return; // can't calc a hidden column
57362          }
57363         if(forceMinSize){
57364             var cid = this.cm.getColumnId(colIndex);
57365             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57366            if(this.grid.autoSizeHeaders){
57367                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57368            }
57369         }
57370         var newWidth = this.calcColumnWidth(colIndex);
57371         this.cm.setColumnWidth(colIndex,
57372             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57373         if(!suppressEvent){
57374             this.grid.fireEvent("columnresize", colIndex, newWidth);
57375         }
57376     },
57377
57378     /**
57379      * Autofits all columns to their content and then expands to fit any extra space in the grid
57380      */
57381      autoSizeColumns : function(){
57382         var cm = this.grid.colModel;
57383         var colCount = cm.getColumnCount();
57384         for(var i = 0; i < colCount; i++){
57385             this.autoSizeColumn(i, true, true);
57386         }
57387         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57388             this.fitColumns();
57389         }else{
57390             this.updateColumns();
57391             this.layout();
57392         }
57393     },
57394
57395     /**
57396      * Autofits all columns to the grid's width proportionate with their current size
57397      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57398      */
57399     fitColumns : function(reserveScrollSpace){
57400         var cm = this.grid.colModel;
57401         var colCount = cm.getColumnCount();
57402         var cols = [];
57403         var width = 0;
57404         var i, w;
57405         for (i = 0; i < colCount; i++){
57406             if(!cm.isHidden(i) && !cm.isFixed(i)){
57407                 w = cm.getColumnWidth(i);
57408                 cols.push(i);
57409                 cols.push(w);
57410                 width += w;
57411             }
57412         }
57413         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57414         if(reserveScrollSpace){
57415             avail -= 17;
57416         }
57417         var frac = (avail - cm.getTotalWidth())/width;
57418         while (cols.length){
57419             w = cols.pop();
57420             i = cols.pop();
57421             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57422         }
57423         this.updateColumns();
57424         this.layout();
57425     },
57426
57427     onRowSelect : function(rowIndex){
57428         var row = this.getRowComposite(rowIndex);
57429         row.addClass("x-grid-row-selected");
57430     },
57431
57432     onRowDeselect : function(rowIndex){
57433         var row = this.getRowComposite(rowIndex);
57434         row.removeClass("x-grid-row-selected");
57435     },
57436
57437     onCellSelect : function(row, col){
57438         var cell = this.getCell(row, col);
57439         if(cell){
57440             Roo.fly(cell).addClass("x-grid-cell-selected");
57441         }
57442     },
57443
57444     onCellDeselect : function(row, col){
57445         var cell = this.getCell(row, col);
57446         if(cell){
57447             Roo.fly(cell).removeClass("x-grid-cell-selected");
57448         }
57449     },
57450
57451     updateHeaderSortState : function(){
57452         
57453         // sort state can be single { field: xxx, direction : yyy}
57454         // or   { xxx=>ASC , yyy : DESC ..... }
57455         
57456         var mstate = {};
57457         if (!this.ds.multiSort) { 
57458             var state = this.ds.getSortState();
57459             if(!state){
57460                 return;
57461             }
57462             mstate[state.field] = state.direction;
57463             // FIXME... - this is not used here.. but might be elsewhere..
57464             this.sortState = state;
57465             
57466         } else {
57467             mstate = this.ds.sortToggle;
57468         }
57469         //remove existing sort classes..
57470         
57471         var sc = this.sortClasses;
57472         var hds = this.el.select(this.headerSelector).removeClass(sc);
57473         
57474         for(var f in mstate) {
57475         
57476             var sortColumn = this.cm.findColumnIndex(f);
57477             
57478             if(sortColumn != -1){
57479                 var sortDir = mstate[f];        
57480                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57481             }
57482         }
57483         
57484          
57485         
57486     },
57487
57488
57489     handleHeaderClick : function(g, index,e){
57490         
57491         Roo.log("header click");
57492         
57493         if (Roo.isTouch) {
57494             // touch events on header are handled by context
57495             this.handleHdCtx(g,index,e);
57496             return;
57497         }
57498         
57499         
57500         if(this.headersDisabled){
57501             return;
57502         }
57503         var dm = g.dataSource, cm = g.colModel;
57504         if(!cm.isSortable(index)){
57505             return;
57506         }
57507         g.stopEditing();
57508         
57509         if (dm.multiSort) {
57510             // update the sortOrder
57511             var so = [];
57512             for(var i = 0; i < cm.config.length; i++ ) {
57513                 
57514                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57515                     continue; // dont' bother, it's not in sort list or being set.
57516                 }
57517                 
57518                 so.push(cm.config[i].dataIndex);
57519             };
57520             dm.sortOrder = so;
57521         }
57522         
57523         
57524         dm.sort(cm.getDataIndex(index));
57525     },
57526
57527
57528     destroy : function(){
57529         if(this.colMenu){
57530             this.colMenu.removeAll();
57531             Roo.menu.MenuMgr.unregister(this.colMenu);
57532             this.colMenu.getEl().remove();
57533             delete this.colMenu;
57534         }
57535         if(this.hmenu){
57536             this.hmenu.removeAll();
57537             Roo.menu.MenuMgr.unregister(this.hmenu);
57538             this.hmenu.getEl().remove();
57539             delete this.hmenu;
57540         }
57541         if(this.grid.enableColumnMove){
57542             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57543             if(dds){
57544                 for(var dd in dds){
57545                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57546                         var elid = dds[dd].dragElId;
57547                         dds[dd].unreg();
57548                         Roo.get(elid).remove();
57549                     } else if(dds[dd].config.isTarget){
57550                         dds[dd].proxyTop.remove();
57551                         dds[dd].proxyBottom.remove();
57552                         dds[dd].unreg();
57553                     }
57554                     if(Roo.dd.DDM.locationCache[dd]){
57555                         delete Roo.dd.DDM.locationCache[dd];
57556                     }
57557                 }
57558                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57559             }
57560         }
57561         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57562         this.bind(null, null);
57563         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57564     },
57565
57566     handleLockChange : function(){
57567         this.refresh(true);
57568     },
57569
57570     onDenyColumnLock : function(){
57571
57572     },
57573
57574     onDenyColumnHide : function(){
57575
57576     },
57577
57578     handleHdMenuClick : function(item){
57579         var index = this.hdCtxIndex;
57580         var cm = this.cm, ds = this.ds;
57581         switch(item.id){
57582             case "asc":
57583                 ds.sort(cm.getDataIndex(index), "ASC");
57584                 break;
57585             case "desc":
57586                 ds.sort(cm.getDataIndex(index), "DESC");
57587                 break;
57588             case "lock":
57589                 var lc = cm.getLockedCount();
57590                 if(cm.getColumnCount(true) <= lc+1){
57591                     this.onDenyColumnLock();
57592                     return;
57593                 }
57594                 if(lc != index){
57595                     cm.setLocked(index, true, true);
57596                     cm.moveColumn(index, lc);
57597                     this.grid.fireEvent("columnmove", index, lc);
57598                 }else{
57599                     cm.setLocked(index, true);
57600                 }
57601             break;
57602             case "unlock":
57603                 var lc = cm.getLockedCount();
57604                 if((lc-1) != index){
57605                     cm.setLocked(index, false, true);
57606                     cm.moveColumn(index, lc-1);
57607                     this.grid.fireEvent("columnmove", index, lc-1);
57608                 }else{
57609                     cm.setLocked(index, false);
57610                 }
57611             break;
57612             case 'wider': // used to expand cols on touch..
57613             case 'narrow':
57614                 var cw = cm.getColumnWidth(index);
57615                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57616                 cw = Math.max(0, cw);
57617                 cw = Math.min(cw,4000);
57618                 cm.setColumnWidth(index, cw);
57619                 break;
57620                 
57621             default:
57622                 index = cm.getIndexById(item.id.substr(4));
57623                 if(index != -1){
57624                     if(item.checked && cm.getColumnCount(true) <= 1){
57625                         this.onDenyColumnHide();
57626                         return false;
57627                     }
57628                     cm.setHidden(index, item.checked);
57629                 }
57630         }
57631         return true;
57632     },
57633
57634     beforeColMenuShow : function(){
57635         var cm = this.cm,  colCount = cm.getColumnCount();
57636         this.colMenu.removeAll();
57637         for(var i = 0; i < colCount; i++){
57638             this.colMenu.add(new Roo.menu.CheckItem({
57639                 id: "col-"+cm.getColumnId(i),
57640                 text: cm.getColumnHeader(i),
57641                 checked: !cm.isHidden(i),
57642                 hideOnClick:false
57643             }));
57644         }
57645     },
57646
57647     handleHdCtx : function(g, index, e){
57648         e.stopEvent();
57649         var hd = this.getHeaderCell(index);
57650         this.hdCtxIndex = index;
57651         var ms = this.hmenu.items, cm = this.cm;
57652         ms.get("asc").setDisabled(!cm.isSortable(index));
57653         ms.get("desc").setDisabled(!cm.isSortable(index));
57654         if(this.grid.enableColLock !== false){
57655             ms.get("lock").setDisabled(cm.isLocked(index));
57656             ms.get("unlock").setDisabled(!cm.isLocked(index));
57657         }
57658         this.hmenu.show(hd, "tl-bl");
57659     },
57660
57661     handleHdOver : function(e){
57662         var hd = this.findHeaderCell(e.getTarget());
57663         if(hd && !this.headersDisabled){
57664             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57665                this.fly(hd).addClass("x-grid-hd-over");
57666             }
57667         }
57668     },
57669
57670     handleHdOut : function(e){
57671         var hd = this.findHeaderCell(e.getTarget());
57672         if(hd){
57673             this.fly(hd).removeClass("x-grid-hd-over");
57674         }
57675     },
57676
57677     handleSplitDblClick : function(e, t){
57678         var i = this.getCellIndex(t);
57679         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57680             this.autoSizeColumn(i, true);
57681             this.layout();
57682         }
57683     },
57684
57685     render : function(){
57686
57687         var cm = this.cm;
57688         var colCount = cm.getColumnCount();
57689
57690         if(this.grid.monitorWindowResize === true){
57691             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57692         }
57693         var header = this.renderHeaders();
57694         var body = this.templates.body.apply({rows:""});
57695         var html = this.templates.master.apply({
57696             lockedBody: body,
57697             body: body,
57698             lockedHeader: header[0],
57699             header: header[1]
57700         });
57701
57702         //this.updateColumns();
57703
57704         this.grid.getGridEl().dom.innerHTML = html;
57705
57706         this.initElements();
57707         
57708         // a kludge to fix the random scolling effect in webkit
57709         this.el.on("scroll", function() {
57710             this.el.dom.scrollTop=0; // hopefully not recursive..
57711         },this);
57712
57713         this.scroller.on("scroll", this.handleScroll, this);
57714         this.lockedBody.on("mousewheel", this.handleWheel, this);
57715         this.mainBody.on("mousewheel", this.handleWheel, this);
57716
57717         this.mainHd.on("mouseover", this.handleHdOver, this);
57718         this.mainHd.on("mouseout", this.handleHdOut, this);
57719         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57720                 {delegate: "."+this.splitClass});
57721
57722         this.lockedHd.on("mouseover", this.handleHdOver, this);
57723         this.lockedHd.on("mouseout", this.handleHdOut, this);
57724         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57725                 {delegate: "."+this.splitClass});
57726
57727         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57728             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57729         }
57730
57731         this.updateSplitters();
57732
57733         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57734             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57735             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57736         }
57737
57738         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57739             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57740             this.hmenu.add(
57741                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57742                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57743             );
57744             if(this.grid.enableColLock !== false){
57745                 this.hmenu.add('-',
57746                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57747                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57748                 );
57749             }
57750             if (Roo.isTouch) {
57751                  this.hmenu.add('-',
57752                     {id:"wider", text: this.columnsWiderText},
57753                     {id:"narrow", text: this.columnsNarrowText }
57754                 );
57755                 
57756                  
57757             }
57758             
57759             if(this.grid.enableColumnHide !== false){
57760
57761                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57762                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57763                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57764
57765                 this.hmenu.add('-',
57766                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57767                 );
57768             }
57769             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57770
57771             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57772         }
57773
57774         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57775             this.dd = new Roo.grid.GridDragZone(this.grid, {
57776                 ddGroup : this.grid.ddGroup || 'GridDD'
57777             });
57778             
57779         }
57780
57781         /*
57782         for(var i = 0; i < colCount; i++){
57783             if(cm.isHidden(i)){
57784                 this.hideColumn(i);
57785             }
57786             if(cm.config[i].align){
57787                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57788                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57789             }
57790         }*/
57791         
57792         this.updateHeaderSortState();
57793
57794         this.beforeInitialResize();
57795         this.layout(true);
57796
57797         // two part rendering gives faster view to the user
57798         this.renderPhase2.defer(1, this);
57799     },
57800
57801     renderPhase2 : function(){
57802         // render the rows now
57803         this.refresh();
57804         if(this.grid.autoSizeColumns){
57805             this.autoSizeColumns();
57806         }
57807     },
57808
57809     beforeInitialResize : function(){
57810
57811     },
57812
57813     onColumnSplitterMoved : function(i, w){
57814         this.userResized = true;
57815         var cm = this.grid.colModel;
57816         cm.setColumnWidth(i, w, true);
57817         var cid = cm.getColumnId(i);
57818         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57819         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57820         this.updateSplitters();
57821         this.layout();
57822         this.grid.fireEvent("columnresize", i, w);
57823     },
57824
57825     syncRowHeights : function(startIndex, endIndex){
57826         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57827             startIndex = startIndex || 0;
57828             var mrows = this.getBodyTable().rows;
57829             var lrows = this.getLockedTable().rows;
57830             var len = mrows.length-1;
57831             endIndex = Math.min(endIndex || len, len);
57832             for(var i = startIndex; i <= endIndex; i++){
57833                 var m = mrows[i], l = lrows[i];
57834                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57835                 m.style.height = l.style.height = h + "px";
57836             }
57837         }
57838     },
57839
57840     layout : function(initialRender, is2ndPass)
57841     {
57842         var g = this.grid;
57843         var auto = g.autoHeight;
57844         var scrollOffset = 16;
57845         var c = g.getGridEl(), cm = this.cm,
57846                 expandCol = g.autoExpandColumn,
57847                 gv = this;
57848         //c.beginMeasure();
57849
57850         if(!c.dom.offsetWidth){ // display:none?
57851             if(initialRender){
57852                 this.lockedWrap.show();
57853                 this.mainWrap.show();
57854             }
57855             return;
57856         }
57857
57858         var hasLock = this.cm.isLocked(0);
57859
57860         var tbh = this.headerPanel.getHeight();
57861         var bbh = this.footerPanel.getHeight();
57862
57863         if(auto){
57864             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57865             var newHeight = ch + c.getBorderWidth("tb");
57866             if(g.maxHeight){
57867                 newHeight = Math.min(g.maxHeight, newHeight);
57868             }
57869             c.setHeight(newHeight);
57870         }
57871
57872         if(g.autoWidth){
57873             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57874         }
57875
57876         var s = this.scroller;
57877
57878         var csize = c.getSize(true);
57879
57880         this.el.setSize(csize.width, csize.height);
57881
57882         this.headerPanel.setWidth(csize.width);
57883         this.footerPanel.setWidth(csize.width);
57884
57885         var hdHeight = this.mainHd.getHeight();
57886         var vw = csize.width;
57887         var vh = csize.height - (tbh + bbh);
57888
57889         s.setSize(vw, vh);
57890
57891         var bt = this.getBodyTable();
57892         
57893         if(cm.getLockedCount() == cm.config.length){
57894             bt = this.getLockedTable();
57895         }
57896         
57897         var ltWidth = hasLock ?
57898                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57899
57900         var scrollHeight = bt.offsetHeight;
57901         var scrollWidth = ltWidth + bt.offsetWidth;
57902         var vscroll = false, hscroll = false;
57903
57904         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57905
57906         var lw = this.lockedWrap, mw = this.mainWrap;
57907         var lb = this.lockedBody, mb = this.mainBody;
57908
57909         setTimeout(function(){
57910             var t = s.dom.offsetTop;
57911             var w = s.dom.clientWidth,
57912                 h = s.dom.clientHeight;
57913
57914             lw.setTop(t);
57915             lw.setSize(ltWidth, h);
57916
57917             mw.setLeftTop(ltWidth, t);
57918             mw.setSize(w-ltWidth, h);
57919
57920             lb.setHeight(h-hdHeight);
57921             mb.setHeight(h-hdHeight);
57922
57923             if(is2ndPass !== true && !gv.userResized && expandCol){
57924                 // high speed resize without full column calculation
57925                 
57926                 var ci = cm.getIndexById(expandCol);
57927                 if (ci < 0) {
57928                     ci = cm.findColumnIndex(expandCol);
57929                 }
57930                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57931                 var expandId = cm.getColumnId(ci);
57932                 var  tw = cm.getTotalWidth(false);
57933                 var currentWidth = cm.getColumnWidth(ci);
57934                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57935                 if(currentWidth != cw){
57936                     cm.setColumnWidth(ci, cw, true);
57937                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57938                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57939                     gv.updateSplitters();
57940                     gv.layout(false, true);
57941                 }
57942             }
57943
57944             if(initialRender){
57945                 lw.show();
57946                 mw.show();
57947             }
57948             //c.endMeasure();
57949         }, 10);
57950     },
57951
57952     onWindowResize : function(){
57953         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57954             return;
57955         }
57956         this.layout();
57957     },
57958
57959     appendFooter : function(parentEl){
57960         return null;
57961     },
57962
57963     sortAscText : "Sort Ascending",
57964     sortDescText : "Sort Descending",
57965     lockText : "Lock Column",
57966     unlockText : "Unlock Column",
57967     columnsText : "Columns",
57968  
57969     columnsWiderText : "Wider",
57970     columnsNarrowText : "Thinner"
57971 });
57972
57973
57974 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
57975     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
57976     this.proxy.el.addClass('x-grid3-col-dd');
57977 };
57978
57979 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
57980     handleMouseDown : function(e){
57981
57982     },
57983
57984     callHandleMouseDown : function(e){
57985         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
57986     }
57987 });
57988 /*
57989  * Based on:
57990  * Ext JS Library 1.1.1
57991  * Copyright(c) 2006-2007, Ext JS, LLC.
57992  *
57993  * Originally Released Under LGPL - original licence link has changed is not relivant.
57994  *
57995  * Fork - LGPL
57996  * <script type="text/javascript">
57997  */
57998  
57999 // private
58000 // This is a support class used internally by the Grid components
58001 Roo.grid.SplitDragZone = function(grid, hd, hd2){
58002     this.grid = grid;
58003     this.view = grid.getView();
58004     this.proxy = this.view.resizeProxy;
58005     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
58006         "gridSplitters" + this.grid.getGridEl().id, {
58007         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
58008     });
58009     this.setHandleElId(Roo.id(hd));
58010     this.setOuterHandleElId(Roo.id(hd2));
58011     this.scroll = false;
58012 };
58013 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
58014     fly: Roo.Element.fly,
58015
58016     b4StartDrag : function(x, y){
58017         this.view.headersDisabled = true;
58018         this.proxy.setHeight(this.view.mainWrap.getHeight());
58019         var w = this.cm.getColumnWidth(this.cellIndex);
58020         var minw = Math.max(w-this.grid.minColumnWidth, 0);
58021         this.resetConstraints();
58022         this.setXConstraint(minw, 1000);
58023         this.setYConstraint(0, 0);
58024         this.minX = x - minw;
58025         this.maxX = x + 1000;
58026         this.startPos = x;
58027         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
58028     },
58029
58030
58031     handleMouseDown : function(e){
58032         ev = Roo.EventObject.setEvent(e);
58033         var t = this.fly(ev.getTarget());
58034         if(t.hasClass("x-grid-split")){
58035             this.cellIndex = this.view.getCellIndex(t.dom);
58036             this.split = t.dom;
58037             this.cm = this.grid.colModel;
58038             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
58039                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
58040             }
58041         }
58042     },
58043
58044     endDrag : function(e){
58045         this.view.headersDisabled = false;
58046         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
58047         var diff = endX - this.startPos;
58048         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
58049     },
58050
58051     autoOffset : function(){
58052         this.setDelta(0,0);
58053     }
58054 });/*
58055  * Based on:
58056  * Ext JS Library 1.1.1
58057  * Copyright(c) 2006-2007, Ext JS, LLC.
58058  *
58059  * Originally Released Under LGPL - original licence link has changed is not relivant.
58060  *
58061  * Fork - LGPL
58062  * <script type="text/javascript">
58063  */
58064  
58065 // private
58066 // This is a support class used internally by the Grid components
58067 Roo.grid.GridDragZone = function(grid, config){
58068     this.view = grid.getView();
58069     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58070     if(this.view.lockedBody){
58071         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58072         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58073     }
58074     this.scroll = false;
58075     this.grid = grid;
58076     this.ddel = document.createElement('div');
58077     this.ddel.className = 'x-grid-dd-wrap';
58078 };
58079
58080 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58081     ddGroup : "GridDD",
58082
58083     getDragData : function(e){
58084         var t = Roo.lib.Event.getTarget(e);
58085         var rowIndex = this.view.findRowIndex(t);
58086         var sm = this.grid.selModel;
58087             
58088         //Roo.log(rowIndex);
58089         
58090         if (sm.getSelectedCell) {
58091             // cell selection..
58092             if (!sm.getSelectedCell()) {
58093                 return false;
58094             }
58095             if (rowIndex != sm.getSelectedCell()[0]) {
58096                 return false;
58097             }
58098         
58099         }
58100         if (sm.getSelections && sm.getSelections().length < 1) {
58101             return false;
58102         }
58103         
58104         
58105         // before it used to all dragging of unseleted... - now we dont do that.
58106         if(rowIndex !== false){
58107             
58108             // if editorgrid.. 
58109             
58110             
58111             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58112                
58113             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58114               //  
58115             //}
58116             if (e.hasModifier()){
58117                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58118             }
58119             
58120             Roo.log("getDragData");
58121             
58122             return {
58123                 grid: this.grid,
58124                 ddel: this.ddel,
58125                 rowIndex: rowIndex,
58126                 selections: sm.getSelections ? sm.getSelections() : (
58127                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58128             };
58129         }
58130         return false;
58131     },
58132     
58133     
58134     onInitDrag : function(e){
58135         var data = this.dragData;
58136         this.ddel.innerHTML = this.grid.getDragDropText();
58137         this.proxy.update(this.ddel);
58138         // fire start drag?
58139     },
58140
58141     afterRepair : function(){
58142         this.dragging = false;
58143     },
58144
58145     getRepairXY : function(e, data){
58146         return false;
58147     },
58148
58149     onEndDrag : function(data, e){
58150         // fire end drag?
58151     },
58152
58153     onValidDrop : function(dd, e, id){
58154         // fire drag drop?
58155         this.hideProxy();
58156     },
58157
58158     beforeInvalidDrop : function(e, id){
58159
58160     }
58161 });/*
58162  * Based on:
58163  * Ext JS Library 1.1.1
58164  * Copyright(c) 2006-2007, Ext JS, LLC.
58165  *
58166  * Originally Released Under LGPL - original licence link has changed is not relivant.
58167  *
58168  * Fork - LGPL
58169  * <script type="text/javascript">
58170  */
58171  
58172
58173 /**
58174  * @class Roo.grid.ColumnModel
58175  * @extends Roo.util.Observable
58176  * This is the default implementation of a ColumnModel used by the Grid. It defines
58177  * the columns in the grid.
58178  * <br>Usage:<br>
58179  <pre><code>
58180  var colModel = new Roo.grid.ColumnModel([
58181         {header: "Ticker", width: 60, sortable: true, locked: true},
58182         {header: "Company Name", width: 150, sortable: true},
58183         {header: "Market Cap.", width: 100, sortable: true},
58184         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58185         {header: "Employees", width: 100, sortable: true, resizable: false}
58186  ]);
58187  </code></pre>
58188  * <p>
58189  
58190  * The config options listed for this class are options which may appear in each
58191  * individual column definition.
58192  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58193  * @constructor
58194  * @param {Object} config An Array of column config objects. See this class's
58195  * config objects for details.
58196 */
58197 Roo.grid.ColumnModel = function(config){
58198         /**
58199      * The config passed into the constructor
58200      */
58201     this.config = config;
58202     this.lookup = {};
58203
58204     // if no id, create one
58205     // if the column does not have a dataIndex mapping,
58206     // map it to the order it is in the config
58207     for(var i = 0, len = config.length; i < len; i++){
58208         var c = config[i];
58209         if(typeof c.dataIndex == "undefined"){
58210             c.dataIndex = i;
58211         }
58212         if(typeof c.renderer == "string"){
58213             c.renderer = Roo.util.Format[c.renderer];
58214         }
58215         if(typeof c.id == "undefined"){
58216             c.id = Roo.id();
58217         }
58218         if(c.editor && c.editor.xtype){
58219             c.editor  = Roo.factory(c.editor, Roo.grid);
58220         }
58221         if(c.editor && c.editor.isFormField){
58222             c.editor = new Roo.grid.GridEditor(c.editor);
58223         }
58224         this.lookup[c.id] = c;
58225     }
58226
58227     /**
58228      * The width of columns which have no width specified (defaults to 100)
58229      * @type Number
58230      */
58231     this.defaultWidth = 100;
58232
58233     /**
58234      * Default sortable of columns which have no sortable specified (defaults to false)
58235      * @type Boolean
58236      */
58237     this.defaultSortable = false;
58238
58239     this.addEvents({
58240         /**
58241              * @event widthchange
58242              * Fires when the width of a column changes.
58243              * @param {ColumnModel} this
58244              * @param {Number} columnIndex The column index
58245              * @param {Number} newWidth The new width
58246              */
58247             "widthchange": true,
58248         /**
58249              * @event headerchange
58250              * Fires when the text of a header changes.
58251              * @param {ColumnModel} this
58252              * @param {Number} columnIndex The column index
58253              * @param {Number} newText The new header text
58254              */
58255             "headerchange": true,
58256         /**
58257              * @event hiddenchange
58258              * Fires when a column is hidden or "unhidden".
58259              * @param {ColumnModel} this
58260              * @param {Number} columnIndex The column index
58261              * @param {Boolean} hidden true if hidden, false otherwise
58262              */
58263             "hiddenchange": true,
58264             /**
58265          * @event columnmoved
58266          * Fires when a column is moved.
58267          * @param {ColumnModel} this
58268          * @param {Number} oldIndex
58269          * @param {Number} newIndex
58270          */
58271         "columnmoved" : true,
58272         /**
58273          * @event columlockchange
58274          * Fires when a column's locked state is changed
58275          * @param {ColumnModel} this
58276          * @param {Number} colIndex
58277          * @param {Boolean} locked true if locked
58278          */
58279         "columnlockchange" : true
58280     });
58281     Roo.grid.ColumnModel.superclass.constructor.call(this);
58282 };
58283 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58284     /**
58285      * @cfg {String} header The header text to display in the Grid view.
58286      */
58287     /**
58288      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58289      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58290      * specified, the column's index is used as an index into the Record's data Array.
58291      */
58292     /**
58293      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58294      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58295      */
58296     /**
58297      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58298      * Defaults to the value of the {@link #defaultSortable} property.
58299      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58300      */
58301     /**
58302      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58303      */
58304     /**
58305      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58306      */
58307     /**
58308      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58309      */
58310     /**
58311      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58312      */
58313     /**
58314      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58315      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58316      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58317      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58318      */
58319        /**
58320      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58321      */
58322     /**
58323      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58324      */
58325     /**
58326      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58327      */
58328     /**
58329      * @cfg {String} cursor (Optional)
58330      */
58331     /**
58332      * @cfg {String} tooltip (Optional)
58333      */
58334     /**
58335      * @cfg {Number} xs (Optional)
58336      */
58337     /**
58338      * @cfg {Number} sm (Optional)
58339      */
58340     /**
58341      * @cfg {Number} md (Optional)
58342      */
58343     /**
58344      * @cfg {Number} lg (Optional)
58345      */
58346     /**
58347      * Returns the id of the column at the specified index.
58348      * @param {Number} index The column index
58349      * @return {String} the id
58350      */
58351     getColumnId : function(index){
58352         return this.config[index].id;
58353     },
58354
58355     /**
58356      * Returns the column for a specified id.
58357      * @param {String} id The column id
58358      * @return {Object} the column
58359      */
58360     getColumnById : function(id){
58361         return this.lookup[id];
58362     },
58363
58364     
58365     /**
58366      * Returns the column for a specified dataIndex.
58367      * @param {String} dataIndex The column dataIndex
58368      * @return {Object|Boolean} the column or false if not found
58369      */
58370     getColumnByDataIndex: function(dataIndex){
58371         var index = this.findColumnIndex(dataIndex);
58372         return index > -1 ? this.config[index] : false;
58373     },
58374     
58375     /**
58376      * Returns the index for a specified column id.
58377      * @param {String} id The column id
58378      * @return {Number} the index, or -1 if not found
58379      */
58380     getIndexById : function(id){
58381         for(var i = 0, len = this.config.length; i < len; i++){
58382             if(this.config[i].id == id){
58383                 return i;
58384             }
58385         }
58386         return -1;
58387     },
58388     
58389     /**
58390      * Returns the index for a specified column dataIndex.
58391      * @param {String} dataIndex The column dataIndex
58392      * @return {Number} the index, or -1 if not found
58393      */
58394     
58395     findColumnIndex : function(dataIndex){
58396         for(var i = 0, len = this.config.length; i < len; i++){
58397             if(this.config[i].dataIndex == dataIndex){
58398                 return i;
58399             }
58400         }
58401         return -1;
58402     },
58403     
58404     
58405     moveColumn : function(oldIndex, newIndex){
58406         var c = this.config[oldIndex];
58407         this.config.splice(oldIndex, 1);
58408         this.config.splice(newIndex, 0, c);
58409         this.dataMap = null;
58410         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58411     },
58412
58413     isLocked : function(colIndex){
58414         return this.config[colIndex].locked === true;
58415     },
58416
58417     setLocked : function(colIndex, value, suppressEvent){
58418         if(this.isLocked(colIndex) == value){
58419             return;
58420         }
58421         this.config[colIndex].locked = value;
58422         if(!suppressEvent){
58423             this.fireEvent("columnlockchange", this, colIndex, value);
58424         }
58425     },
58426
58427     getTotalLockedWidth : function(){
58428         var totalWidth = 0;
58429         for(var i = 0; i < this.config.length; i++){
58430             if(this.isLocked(i) && !this.isHidden(i)){
58431                 this.totalWidth += this.getColumnWidth(i);
58432             }
58433         }
58434         return totalWidth;
58435     },
58436
58437     getLockedCount : function(){
58438         for(var i = 0, len = this.config.length; i < len; i++){
58439             if(!this.isLocked(i)){
58440                 return i;
58441             }
58442         }
58443         
58444         return this.config.length;
58445     },
58446
58447     /**
58448      * Returns the number of columns.
58449      * @return {Number}
58450      */
58451     getColumnCount : function(visibleOnly){
58452         if(visibleOnly === true){
58453             var c = 0;
58454             for(var i = 0, len = this.config.length; i < len; i++){
58455                 if(!this.isHidden(i)){
58456                     c++;
58457                 }
58458             }
58459             return c;
58460         }
58461         return this.config.length;
58462     },
58463
58464     /**
58465      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58466      * @param {Function} fn
58467      * @param {Object} scope (optional)
58468      * @return {Array} result
58469      */
58470     getColumnsBy : function(fn, scope){
58471         var r = [];
58472         for(var i = 0, len = this.config.length; i < len; i++){
58473             var c = this.config[i];
58474             if(fn.call(scope||this, c, i) === true){
58475                 r[r.length] = c;
58476             }
58477         }
58478         return r;
58479     },
58480
58481     /**
58482      * Returns true if the specified column is sortable.
58483      * @param {Number} col The column index
58484      * @return {Boolean}
58485      */
58486     isSortable : function(col){
58487         if(typeof this.config[col].sortable == "undefined"){
58488             return this.defaultSortable;
58489         }
58490         return this.config[col].sortable;
58491     },
58492
58493     /**
58494      * Returns the rendering (formatting) function defined for the column.
58495      * @param {Number} col The column index.
58496      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58497      */
58498     getRenderer : function(col){
58499         if(!this.config[col].renderer){
58500             return Roo.grid.ColumnModel.defaultRenderer;
58501         }
58502         return this.config[col].renderer;
58503     },
58504
58505     /**
58506      * Sets the rendering (formatting) function for a column.
58507      * @param {Number} col The column index
58508      * @param {Function} fn The function to use to process the cell's raw data
58509      * to return HTML markup for the grid view. The render function is called with
58510      * the following parameters:<ul>
58511      * <li>Data value.</li>
58512      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58513      * <li>css A CSS style string to apply to the table cell.</li>
58514      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58515      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58516      * <li>Row index</li>
58517      * <li>Column index</li>
58518      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58519      */
58520     setRenderer : function(col, fn){
58521         this.config[col].renderer = fn;
58522     },
58523
58524     /**
58525      * Returns the width for the specified column.
58526      * @param {Number} col The column index
58527      * @return {Number}
58528      */
58529     getColumnWidth : function(col){
58530         return this.config[col].width * 1 || this.defaultWidth;
58531     },
58532
58533     /**
58534      * Sets the width for a column.
58535      * @param {Number} col The column index
58536      * @param {Number} width The new width
58537      */
58538     setColumnWidth : function(col, width, suppressEvent){
58539         this.config[col].width = width;
58540         this.totalWidth = null;
58541         if(!suppressEvent){
58542              this.fireEvent("widthchange", this, col, width);
58543         }
58544     },
58545
58546     /**
58547      * Returns the total width of all columns.
58548      * @param {Boolean} includeHidden True to include hidden column widths
58549      * @return {Number}
58550      */
58551     getTotalWidth : function(includeHidden){
58552         if(!this.totalWidth){
58553             this.totalWidth = 0;
58554             for(var i = 0, len = this.config.length; i < len; i++){
58555                 if(includeHidden || !this.isHidden(i)){
58556                     this.totalWidth += this.getColumnWidth(i);
58557                 }
58558             }
58559         }
58560         return this.totalWidth;
58561     },
58562
58563     /**
58564      * Returns the header for the specified column.
58565      * @param {Number} col The column index
58566      * @return {String}
58567      */
58568     getColumnHeader : function(col){
58569         return this.config[col].header;
58570     },
58571
58572     /**
58573      * Sets the header for a column.
58574      * @param {Number} col The column index
58575      * @param {String} header The new header
58576      */
58577     setColumnHeader : function(col, header){
58578         this.config[col].header = header;
58579         this.fireEvent("headerchange", this, col, header);
58580     },
58581
58582     /**
58583      * Returns the tooltip for the specified column.
58584      * @param {Number} col The column index
58585      * @return {String}
58586      */
58587     getColumnTooltip : function(col){
58588             return this.config[col].tooltip;
58589     },
58590     /**
58591      * Sets the tooltip for a column.
58592      * @param {Number} col The column index
58593      * @param {String} tooltip The new tooltip
58594      */
58595     setColumnTooltip : function(col, tooltip){
58596             this.config[col].tooltip = tooltip;
58597     },
58598
58599     /**
58600      * Returns the dataIndex for the specified column.
58601      * @param {Number} col The column index
58602      * @return {Number}
58603      */
58604     getDataIndex : function(col){
58605         return this.config[col].dataIndex;
58606     },
58607
58608     /**
58609      * Sets the dataIndex for a column.
58610      * @param {Number} col The column index
58611      * @param {Number} dataIndex The new dataIndex
58612      */
58613     setDataIndex : function(col, dataIndex){
58614         this.config[col].dataIndex = dataIndex;
58615     },
58616
58617     
58618     
58619     /**
58620      * Returns true if the cell is editable.
58621      * @param {Number} colIndex The column index
58622      * @param {Number} rowIndex The row index - this is nto actually used..?
58623      * @return {Boolean}
58624      */
58625     isCellEditable : function(colIndex, rowIndex){
58626         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58627     },
58628
58629     /**
58630      * Returns the editor defined for the cell/column.
58631      * return false or null to disable editing.
58632      * @param {Number} colIndex The column index
58633      * @param {Number} rowIndex The row index
58634      * @return {Object}
58635      */
58636     getCellEditor : function(colIndex, rowIndex){
58637         return this.config[colIndex].editor;
58638     },
58639
58640     /**
58641      * Sets if a column is editable.
58642      * @param {Number} col The column index
58643      * @param {Boolean} editable True if the column is editable
58644      */
58645     setEditable : function(col, editable){
58646         this.config[col].editable = editable;
58647     },
58648
58649
58650     /**
58651      * Returns true if the column is hidden.
58652      * @param {Number} colIndex The column index
58653      * @return {Boolean}
58654      */
58655     isHidden : function(colIndex){
58656         return this.config[colIndex].hidden;
58657     },
58658
58659
58660     /**
58661      * Returns true if the column width cannot be changed
58662      */
58663     isFixed : function(colIndex){
58664         return this.config[colIndex].fixed;
58665     },
58666
58667     /**
58668      * Returns true if the column can be resized
58669      * @return {Boolean}
58670      */
58671     isResizable : function(colIndex){
58672         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58673     },
58674     /**
58675      * Sets if a column is hidden.
58676      * @param {Number} colIndex The column index
58677      * @param {Boolean} hidden True if the column is hidden
58678      */
58679     setHidden : function(colIndex, hidden){
58680         this.config[colIndex].hidden = hidden;
58681         this.totalWidth = null;
58682         this.fireEvent("hiddenchange", this, colIndex, hidden);
58683     },
58684
58685     /**
58686      * Sets the editor for a column.
58687      * @param {Number} col The column index
58688      * @param {Object} editor The editor object
58689      */
58690     setEditor : function(col, editor){
58691         this.config[col].editor = editor;
58692     }
58693 });
58694
58695 Roo.grid.ColumnModel.defaultRenderer = function(value)
58696 {
58697     if(typeof value == "object") {
58698         return value;
58699     }
58700         if(typeof value == "string" && value.length < 1){
58701             return "&#160;";
58702         }
58703     
58704         return String.format("{0}", value);
58705 };
58706
58707 // Alias for backwards compatibility
58708 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58709 /*
58710  * Based on:
58711  * Ext JS Library 1.1.1
58712  * Copyright(c) 2006-2007, Ext JS, LLC.
58713  *
58714  * Originally Released Under LGPL - original licence link has changed is not relivant.
58715  *
58716  * Fork - LGPL
58717  * <script type="text/javascript">
58718  */
58719
58720 /**
58721  * @class Roo.grid.AbstractSelectionModel
58722  * @extends Roo.util.Observable
58723  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58724  * implemented by descendant classes.  This class should not be directly instantiated.
58725  * @constructor
58726  */
58727 Roo.grid.AbstractSelectionModel = function(){
58728     this.locked = false;
58729     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58730 };
58731
58732 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58733     /** @ignore Called by the grid automatically. Do not call directly. */
58734     init : function(grid){
58735         this.grid = grid;
58736         this.initEvents();
58737     },
58738
58739     /**
58740      * Locks the selections.
58741      */
58742     lock : function(){
58743         this.locked = true;
58744     },
58745
58746     /**
58747      * Unlocks the selections.
58748      */
58749     unlock : function(){
58750         this.locked = false;
58751     },
58752
58753     /**
58754      * Returns true if the selections are locked.
58755      * @return {Boolean}
58756      */
58757     isLocked : function(){
58758         return this.locked;
58759     }
58760 });/*
58761  * Based on:
58762  * Ext JS Library 1.1.1
58763  * Copyright(c) 2006-2007, Ext JS, LLC.
58764  *
58765  * Originally Released Under LGPL - original licence link has changed is not relivant.
58766  *
58767  * Fork - LGPL
58768  * <script type="text/javascript">
58769  */
58770 /**
58771  * @extends Roo.grid.AbstractSelectionModel
58772  * @class Roo.grid.RowSelectionModel
58773  * The default SelectionModel used by {@link Roo.grid.Grid}.
58774  * It supports multiple selections and keyboard selection/navigation. 
58775  * @constructor
58776  * @param {Object} config
58777  */
58778 Roo.grid.RowSelectionModel = function(config){
58779     Roo.apply(this, config);
58780     this.selections = new Roo.util.MixedCollection(false, function(o){
58781         return o.id;
58782     });
58783
58784     this.last = false;
58785     this.lastActive = false;
58786
58787     this.addEvents({
58788         /**
58789              * @event selectionchange
58790              * Fires when the selection changes
58791              * @param {SelectionModel} this
58792              */
58793             "selectionchange" : true,
58794         /**
58795              * @event afterselectionchange
58796              * Fires after the selection changes (eg. by key press or clicking)
58797              * @param {SelectionModel} this
58798              */
58799             "afterselectionchange" : true,
58800         /**
58801              * @event beforerowselect
58802              * Fires when a row is selected being selected, return false to cancel.
58803              * @param {SelectionModel} this
58804              * @param {Number} rowIndex The selected index
58805              * @param {Boolean} keepExisting False if other selections will be cleared
58806              */
58807             "beforerowselect" : true,
58808         /**
58809              * @event rowselect
58810              * Fires when a row is selected.
58811              * @param {SelectionModel} this
58812              * @param {Number} rowIndex The selected index
58813              * @param {Roo.data.Record} r The record
58814              */
58815             "rowselect" : true,
58816         /**
58817              * @event rowdeselect
58818              * Fires when a row is deselected.
58819              * @param {SelectionModel} this
58820              * @param {Number} rowIndex The selected index
58821              */
58822         "rowdeselect" : true
58823     });
58824     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58825     this.locked = false;
58826 };
58827
58828 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58829     /**
58830      * @cfg {Boolean} singleSelect
58831      * True to allow selection of only one row at a time (defaults to false)
58832      */
58833     singleSelect : false,
58834
58835     // private
58836     initEvents : function(){
58837
58838         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58839             this.grid.on("mousedown", this.handleMouseDown, this);
58840         }else{ // allow click to work like normal
58841             this.grid.on("rowclick", this.handleDragableRowClick, this);
58842         }
58843
58844         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58845             "up" : function(e){
58846                 if(!e.shiftKey){
58847                     this.selectPrevious(e.shiftKey);
58848                 }else if(this.last !== false && this.lastActive !== false){
58849                     var last = this.last;
58850                     this.selectRange(this.last,  this.lastActive-1);
58851                     this.grid.getView().focusRow(this.lastActive);
58852                     if(last !== false){
58853                         this.last = last;
58854                     }
58855                 }else{
58856                     this.selectFirstRow();
58857                 }
58858                 this.fireEvent("afterselectionchange", this);
58859             },
58860             "down" : function(e){
58861                 if(!e.shiftKey){
58862                     this.selectNext(e.shiftKey);
58863                 }else if(this.last !== false && this.lastActive !== false){
58864                     var last = this.last;
58865                     this.selectRange(this.last,  this.lastActive+1);
58866                     this.grid.getView().focusRow(this.lastActive);
58867                     if(last !== false){
58868                         this.last = last;
58869                     }
58870                 }else{
58871                     this.selectFirstRow();
58872                 }
58873                 this.fireEvent("afterselectionchange", this);
58874             },
58875             scope: this
58876         });
58877
58878         var view = this.grid.view;
58879         view.on("refresh", this.onRefresh, this);
58880         view.on("rowupdated", this.onRowUpdated, this);
58881         view.on("rowremoved", this.onRemove, this);
58882     },
58883
58884     // private
58885     onRefresh : function(){
58886         var ds = this.grid.dataSource, i, v = this.grid.view;
58887         var s = this.selections;
58888         s.each(function(r){
58889             if((i = ds.indexOfId(r.id)) != -1){
58890                 v.onRowSelect(i);
58891                 s.add(ds.getAt(i)); // updating the selection relate data
58892             }else{
58893                 s.remove(r);
58894             }
58895         });
58896     },
58897
58898     // private
58899     onRemove : function(v, index, r){
58900         this.selections.remove(r);
58901     },
58902
58903     // private
58904     onRowUpdated : function(v, index, r){
58905         if(this.isSelected(r)){
58906             v.onRowSelect(index);
58907         }
58908     },
58909
58910     /**
58911      * Select records.
58912      * @param {Array} records The records to select
58913      * @param {Boolean} keepExisting (optional) True to keep existing selections
58914      */
58915     selectRecords : function(records, keepExisting){
58916         if(!keepExisting){
58917             this.clearSelections();
58918         }
58919         var ds = this.grid.dataSource;
58920         for(var i = 0, len = records.length; i < len; i++){
58921             this.selectRow(ds.indexOf(records[i]), true);
58922         }
58923     },
58924
58925     /**
58926      * Gets the number of selected rows.
58927      * @return {Number}
58928      */
58929     getCount : function(){
58930         return this.selections.length;
58931     },
58932
58933     /**
58934      * Selects the first row in the grid.
58935      */
58936     selectFirstRow : function(){
58937         this.selectRow(0);
58938     },
58939
58940     /**
58941      * Select the last row.
58942      * @param {Boolean} keepExisting (optional) True to keep existing selections
58943      */
58944     selectLastRow : function(keepExisting){
58945         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58946     },
58947
58948     /**
58949      * Selects the row immediately following the last selected row.
58950      * @param {Boolean} keepExisting (optional) True to keep existing selections
58951      */
58952     selectNext : function(keepExisting){
58953         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58954             this.selectRow(this.last+1, keepExisting);
58955             this.grid.getView().focusRow(this.last);
58956         }
58957     },
58958
58959     /**
58960      * Selects the row that precedes the last selected row.
58961      * @param {Boolean} keepExisting (optional) True to keep existing selections
58962      */
58963     selectPrevious : function(keepExisting){
58964         if(this.last){
58965             this.selectRow(this.last-1, keepExisting);
58966             this.grid.getView().focusRow(this.last);
58967         }
58968     },
58969
58970     /**
58971      * Returns the selected records
58972      * @return {Array} Array of selected records
58973      */
58974     getSelections : function(){
58975         return [].concat(this.selections.items);
58976     },
58977
58978     /**
58979      * Returns the first selected record.
58980      * @return {Record}
58981      */
58982     getSelected : function(){
58983         return this.selections.itemAt(0);
58984     },
58985
58986
58987     /**
58988      * Clears all selections.
58989      */
58990     clearSelections : function(fast){
58991         if(this.locked) {
58992             return;
58993         }
58994         if(fast !== true){
58995             var ds = this.grid.dataSource;
58996             var s = this.selections;
58997             s.each(function(r){
58998                 this.deselectRow(ds.indexOfId(r.id));
58999             }, this);
59000             s.clear();
59001         }else{
59002             this.selections.clear();
59003         }
59004         this.last = false;
59005     },
59006
59007
59008     /**
59009      * Selects all rows.
59010      */
59011     selectAll : function(){
59012         if(this.locked) {
59013             return;
59014         }
59015         this.selections.clear();
59016         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
59017             this.selectRow(i, true);
59018         }
59019     },
59020
59021     /**
59022      * Returns True if there is a selection.
59023      * @return {Boolean}
59024      */
59025     hasSelection : function(){
59026         return this.selections.length > 0;
59027     },
59028
59029     /**
59030      * Returns True if the specified row is selected.
59031      * @param {Number/Record} record The record or index of the record to check
59032      * @return {Boolean}
59033      */
59034     isSelected : function(index){
59035         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
59036         return (r && this.selections.key(r.id) ? true : false);
59037     },
59038
59039     /**
59040      * Returns True if the specified record id is selected.
59041      * @param {String} id The id of record to check
59042      * @return {Boolean}
59043      */
59044     isIdSelected : function(id){
59045         return (this.selections.key(id) ? true : false);
59046     },
59047
59048     // private
59049     handleMouseDown : function(e, t){
59050         var view = this.grid.getView(), rowIndex;
59051         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
59052             return;
59053         };
59054         if(e.shiftKey && this.last !== false){
59055             var last = this.last;
59056             this.selectRange(last, rowIndex, e.ctrlKey);
59057             this.last = last; // reset the last
59058             view.focusRow(rowIndex);
59059         }else{
59060             var isSelected = this.isSelected(rowIndex);
59061             if(e.button !== 0 && isSelected){
59062                 view.focusRow(rowIndex);
59063             }else if(e.ctrlKey && isSelected){
59064                 this.deselectRow(rowIndex);
59065             }else if(!isSelected){
59066                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59067                 view.focusRow(rowIndex);
59068             }
59069         }
59070         this.fireEvent("afterselectionchange", this);
59071     },
59072     // private
59073     handleDragableRowClick :  function(grid, rowIndex, e) 
59074     {
59075         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59076             this.selectRow(rowIndex, false);
59077             grid.view.focusRow(rowIndex);
59078              this.fireEvent("afterselectionchange", this);
59079         }
59080     },
59081     
59082     /**
59083      * Selects multiple rows.
59084      * @param {Array} rows Array of the indexes of the row to select
59085      * @param {Boolean} keepExisting (optional) True to keep existing selections
59086      */
59087     selectRows : function(rows, keepExisting){
59088         if(!keepExisting){
59089             this.clearSelections();
59090         }
59091         for(var i = 0, len = rows.length; i < len; i++){
59092             this.selectRow(rows[i], true);
59093         }
59094     },
59095
59096     /**
59097      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59098      * @param {Number} startRow The index of the first row in the range
59099      * @param {Number} endRow The index of the last row in the range
59100      * @param {Boolean} keepExisting (optional) True to retain existing selections
59101      */
59102     selectRange : function(startRow, endRow, keepExisting){
59103         if(this.locked) {
59104             return;
59105         }
59106         if(!keepExisting){
59107             this.clearSelections();
59108         }
59109         if(startRow <= endRow){
59110             for(var i = startRow; i <= endRow; i++){
59111                 this.selectRow(i, true);
59112             }
59113         }else{
59114             for(var i = startRow; i >= endRow; i--){
59115                 this.selectRow(i, true);
59116             }
59117         }
59118     },
59119
59120     /**
59121      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59122      * @param {Number} startRow The index of the first row in the range
59123      * @param {Number} endRow The index of the last row in the range
59124      */
59125     deselectRange : function(startRow, endRow, preventViewNotify){
59126         if(this.locked) {
59127             return;
59128         }
59129         for(var i = startRow; i <= endRow; i++){
59130             this.deselectRow(i, preventViewNotify);
59131         }
59132     },
59133
59134     /**
59135      * Selects a row.
59136      * @param {Number} row The index of the row to select
59137      * @param {Boolean} keepExisting (optional) True to keep existing selections
59138      */
59139     selectRow : function(index, keepExisting, preventViewNotify){
59140         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59141             return;
59142         }
59143         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59144             if(!keepExisting || this.singleSelect){
59145                 this.clearSelections();
59146             }
59147             var r = this.grid.dataSource.getAt(index);
59148             this.selections.add(r);
59149             this.last = this.lastActive = index;
59150             if(!preventViewNotify){
59151                 this.grid.getView().onRowSelect(index);
59152             }
59153             this.fireEvent("rowselect", this, index, r);
59154             this.fireEvent("selectionchange", this);
59155         }
59156     },
59157
59158     /**
59159      * Deselects a row.
59160      * @param {Number} row The index of the row to deselect
59161      */
59162     deselectRow : function(index, preventViewNotify){
59163         if(this.locked) {
59164             return;
59165         }
59166         if(this.last == index){
59167             this.last = false;
59168         }
59169         if(this.lastActive == index){
59170             this.lastActive = false;
59171         }
59172         var r = this.grid.dataSource.getAt(index);
59173         this.selections.remove(r);
59174         if(!preventViewNotify){
59175             this.grid.getView().onRowDeselect(index);
59176         }
59177         this.fireEvent("rowdeselect", this, index);
59178         this.fireEvent("selectionchange", this);
59179     },
59180
59181     // private
59182     restoreLast : function(){
59183         if(this._last){
59184             this.last = this._last;
59185         }
59186     },
59187
59188     // private
59189     acceptsNav : function(row, col, cm){
59190         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59191     },
59192
59193     // private
59194     onEditorKey : function(field, e){
59195         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59196         if(k == e.TAB){
59197             e.stopEvent();
59198             ed.completeEdit();
59199             if(e.shiftKey){
59200                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59201             }else{
59202                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59203             }
59204         }else if(k == e.ENTER && !e.ctrlKey){
59205             e.stopEvent();
59206             ed.completeEdit();
59207             if(e.shiftKey){
59208                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59209             }else{
59210                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59211             }
59212         }else if(k == e.ESC){
59213             ed.cancelEdit();
59214         }
59215         if(newCell){
59216             g.startEditing(newCell[0], newCell[1]);
59217         }
59218     }
59219 });/*
59220  * Based on:
59221  * Ext JS Library 1.1.1
59222  * Copyright(c) 2006-2007, Ext JS, LLC.
59223  *
59224  * Originally Released Under LGPL - original licence link has changed is not relivant.
59225  *
59226  * Fork - LGPL
59227  * <script type="text/javascript">
59228  */
59229 /**
59230  * @class Roo.grid.CellSelectionModel
59231  * @extends Roo.grid.AbstractSelectionModel
59232  * This class provides the basic implementation for cell selection in a grid.
59233  * @constructor
59234  * @param {Object} config The object containing the configuration of this model.
59235  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59236  */
59237 Roo.grid.CellSelectionModel = function(config){
59238     Roo.apply(this, config);
59239
59240     this.selection = null;
59241
59242     this.addEvents({
59243         /**
59244              * @event beforerowselect
59245              * Fires before a cell is selected.
59246              * @param {SelectionModel} this
59247              * @param {Number} rowIndex The selected row index
59248              * @param {Number} colIndex The selected cell index
59249              */
59250             "beforecellselect" : true,
59251         /**
59252              * @event cellselect
59253              * Fires when a cell is selected.
59254              * @param {SelectionModel} this
59255              * @param {Number} rowIndex The selected row index
59256              * @param {Number} colIndex The selected cell index
59257              */
59258             "cellselect" : true,
59259         /**
59260              * @event selectionchange
59261              * Fires when the active selection changes.
59262              * @param {SelectionModel} this
59263              * @param {Object} selection null for no selection or an object (o) with two properties
59264                 <ul>
59265                 <li>o.record: the record object for the row the selection is in</li>
59266                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59267                 </ul>
59268              */
59269             "selectionchange" : true,
59270         /**
59271              * @event tabend
59272              * Fires when the tab (or enter) was pressed on the last editable cell
59273              * You can use this to trigger add new row.
59274              * @param {SelectionModel} this
59275              */
59276             "tabend" : true,
59277          /**
59278              * @event beforeeditnext
59279              * Fires before the next editable sell is made active
59280              * You can use this to skip to another cell or fire the tabend
59281              *    if you set cell to false
59282              * @param {Object} eventdata object : { cell : [ row, col ] } 
59283              */
59284             "beforeeditnext" : true
59285     });
59286     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59287 };
59288
59289 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59290     
59291     enter_is_tab: false,
59292
59293     /** @ignore */
59294     initEvents : function(){
59295         this.grid.on("mousedown", this.handleMouseDown, this);
59296         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59297         var view = this.grid.view;
59298         view.on("refresh", this.onViewChange, this);
59299         view.on("rowupdated", this.onRowUpdated, this);
59300         view.on("beforerowremoved", this.clearSelections, this);
59301         view.on("beforerowsinserted", this.clearSelections, this);
59302         if(this.grid.isEditor){
59303             this.grid.on("beforeedit", this.beforeEdit,  this);
59304         }
59305     },
59306
59307         //private
59308     beforeEdit : function(e){
59309         this.select(e.row, e.column, false, true, e.record);
59310     },
59311
59312         //private
59313     onRowUpdated : function(v, index, r){
59314         if(this.selection && this.selection.record == r){
59315             v.onCellSelect(index, this.selection.cell[1]);
59316         }
59317     },
59318
59319         //private
59320     onViewChange : function(){
59321         this.clearSelections(true);
59322     },
59323
59324         /**
59325          * Returns the currently selected cell,.
59326          * @return {Array} The selected cell (row, column) or null if none selected.
59327          */
59328     getSelectedCell : function(){
59329         return this.selection ? this.selection.cell : null;
59330     },
59331
59332     /**
59333      * Clears all selections.
59334      * @param {Boolean} true to prevent the gridview from being notified about the change.
59335      */
59336     clearSelections : function(preventNotify){
59337         var s = this.selection;
59338         if(s){
59339             if(preventNotify !== true){
59340                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59341             }
59342             this.selection = null;
59343             this.fireEvent("selectionchange", this, null);
59344         }
59345     },
59346
59347     /**
59348      * Returns true if there is a selection.
59349      * @return {Boolean}
59350      */
59351     hasSelection : function(){
59352         return this.selection ? true : false;
59353     },
59354
59355     /** @ignore */
59356     handleMouseDown : function(e, t){
59357         var v = this.grid.getView();
59358         if(this.isLocked()){
59359             return;
59360         };
59361         var row = v.findRowIndex(t);
59362         var cell = v.findCellIndex(t);
59363         if(row !== false && cell !== false){
59364             this.select(row, cell);
59365         }
59366     },
59367
59368     /**
59369      * Selects a cell.
59370      * @param {Number} rowIndex
59371      * @param {Number} collIndex
59372      */
59373     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59374         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59375             this.clearSelections();
59376             r = r || this.grid.dataSource.getAt(rowIndex);
59377             this.selection = {
59378                 record : r,
59379                 cell : [rowIndex, colIndex]
59380             };
59381             if(!preventViewNotify){
59382                 var v = this.grid.getView();
59383                 v.onCellSelect(rowIndex, colIndex);
59384                 if(preventFocus !== true){
59385                     v.focusCell(rowIndex, colIndex);
59386                 }
59387             }
59388             this.fireEvent("cellselect", this, rowIndex, colIndex);
59389             this.fireEvent("selectionchange", this, this.selection);
59390         }
59391     },
59392
59393         //private
59394     isSelectable : function(rowIndex, colIndex, cm){
59395         return !cm.isHidden(colIndex);
59396     },
59397
59398     /** @ignore */
59399     handleKeyDown : function(e){
59400         //Roo.log('Cell Sel Model handleKeyDown');
59401         if(!e.isNavKeyPress()){
59402             return;
59403         }
59404         var g = this.grid, s = this.selection;
59405         if(!s){
59406             e.stopEvent();
59407             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59408             if(cell){
59409                 this.select(cell[0], cell[1]);
59410             }
59411             return;
59412         }
59413         var sm = this;
59414         var walk = function(row, col, step){
59415             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59416         };
59417         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59418         var newCell;
59419
59420       
59421
59422         switch(k){
59423             case e.TAB:
59424                 // handled by onEditorKey
59425                 if (g.isEditor && g.editing) {
59426                     return;
59427                 }
59428                 if(e.shiftKey) {
59429                     newCell = walk(r, c-1, -1);
59430                 } else {
59431                     newCell = walk(r, c+1, 1);
59432                 }
59433                 break;
59434             
59435             case e.DOWN:
59436                newCell = walk(r+1, c, 1);
59437                 break;
59438             
59439             case e.UP:
59440                 newCell = walk(r-1, c, -1);
59441                 break;
59442             
59443             case e.RIGHT:
59444                 newCell = walk(r, c+1, 1);
59445                 break;
59446             
59447             case e.LEFT:
59448                 newCell = walk(r, c-1, -1);
59449                 break;
59450             
59451             case e.ENTER:
59452                 
59453                 if(g.isEditor && !g.editing){
59454                    g.startEditing(r, c);
59455                    e.stopEvent();
59456                    return;
59457                 }
59458                 
59459                 
59460              break;
59461         };
59462         if(newCell){
59463             this.select(newCell[0], newCell[1]);
59464             e.stopEvent();
59465             
59466         }
59467     },
59468
59469     acceptsNav : function(row, col, cm){
59470         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59471     },
59472     /**
59473      * Selects a cell.
59474      * @param {Number} field (not used) - as it's normally used as a listener
59475      * @param {Number} e - event - fake it by using
59476      *
59477      * var e = Roo.EventObjectImpl.prototype;
59478      * e.keyCode = e.TAB
59479      *
59480      * 
59481      */
59482     onEditorKey : function(field, e){
59483         
59484         var k = e.getKey(),
59485             newCell,
59486             g = this.grid,
59487             ed = g.activeEditor,
59488             forward = false;
59489         ///Roo.log('onEditorKey' + k);
59490         
59491         
59492         if (this.enter_is_tab && k == e.ENTER) {
59493             k = e.TAB;
59494         }
59495         
59496         if(k == e.TAB){
59497             if(e.shiftKey){
59498                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59499             }else{
59500                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59501                 forward = true;
59502             }
59503             
59504             e.stopEvent();
59505             
59506         } else if(k == e.ENTER &&  !e.ctrlKey){
59507             ed.completeEdit();
59508             e.stopEvent();
59509             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59510         
59511                 } else if(k == e.ESC){
59512             ed.cancelEdit();
59513         }
59514                 
59515         if (newCell) {
59516             var ecall = { cell : newCell, forward : forward };
59517             this.fireEvent('beforeeditnext', ecall );
59518             newCell = ecall.cell;
59519                         forward = ecall.forward;
59520         }
59521                 
59522         if(newCell){
59523             //Roo.log('next cell after edit');
59524             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59525         } else if (forward) {
59526             // tabbed past last
59527             this.fireEvent.defer(100, this, ['tabend',this]);
59528         }
59529     }
59530 });/*
59531  * Based on:
59532  * Ext JS Library 1.1.1
59533  * Copyright(c) 2006-2007, Ext JS, LLC.
59534  *
59535  * Originally Released Under LGPL - original licence link has changed is not relivant.
59536  *
59537  * Fork - LGPL
59538  * <script type="text/javascript">
59539  */
59540  
59541 /**
59542  * @class Roo.grid.EditorGrid
59543  * @extends Roo.grid.Grid
59544  * Class for creating and editable grid.
59545  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59546  * The container MUST have some type of size defined for the grid to fill. The container will be 
59547  * automatically set to position relative if it isn't already.
59548  * @param {Object} dataSource The data model to bind to
59549  * @param {Object} colModel The column model with info about this grid's columns
59550  */
59551 Roo.grid.EditorGrid = function(container, config){
59552     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59553     this.getGridEl().addClass("xedit-grid");
59554
59555     if(!this.selModel){
59556         this.selModel = new Roo.grid.CellSelectionModel();
59557     }
59558
59559     this.activeEditor = null;
59560
59561         this.addEvents({
59562             /**
59563              * @event beforeedit
59564              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59565              * <ul style="padding:5px;padding-left:16px;">
59566              * <li>grid - This grid</li>
59567              * <li>record - The record being edited</li>
59568              * <li>field - The field name being edited</li>
59569              * <li>value - The value for the field being edited.</li>
59570              * <li>row - The grid row index</li>
59571              * <li>column - The grid column index</li>
59572              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59573              * </ul>
59574              * @param {Object} e An edit event (see above for description)
59575              */
59576             "beforeedit" : true,
59577             /**
59578              * @event afteredit
59579              * Fires after a cell is edited. <br />
59580              * <ul style="padding:5px;padding-left:16px;">
59581              * <li>grid - This grid</li>
59582              * <li>record - The record being edited</li>
59583              * <li>field - The field name being edited</li>
59584              * <li>value - The value being set</li>
59585              * <li>originalValue - The original value for the field, before the edit.</li>
59586              * <li>row - The grid row index</li>
59587              * <li>column - The grid column index</li>
59588              * </ul>
59589              * @param {Object} e An edit event (see above for description)
59590              */
59591             "afteredit" : true,
59592             /**
59593              * @event validateedit
59594              * Fires after a cell is edited, but before the value is set in the record. 
59595          * You can use this to modify the value being set in the field, Return false
59596              * to cancel the change. The edit event object has the following properties <br />
59597              * <ul style="padding:5px;padding-left:16px;">
59598          * <li>editor - This editor</li>
59599              * <li>grid - This grid</li>
59600              * <li>record - The record being edited</li>
59601              * <li>field - The field name being edited</li>
59602              * <li>value - The value being set</li>
59603              * <li>originalValue - The original value for the field, before the edit.</li>
59604              * <li>row - The grid row index</li>
59605              * <li>column - The grid column index</li>
59606              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59607              * </ul>
59608              * @param {Object} e An edit event (see above for description)
59609              */
59610             "validateedit" : true
59611         });
59612     this.on("bodyscroll", this.stopEditing,  this);
59613     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59614 };
59615
59616 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59617     /**
59618      * @cfg {Number} clicksToEdit
59619      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59620      */
59621     clicksToEdit: 2,
59622
59623     // private
59624     isEditor : true,
59625     // private
59626     trackMouseOver: false, // causes very odd FF errors
59627
59628     onCellDblClick : function(g, row, col){
59629         this.startEditing(row, col);
59630     },
59631
59632     onEditComplete : function(ed, value, startValue){
59633         this.editing = false;
59634         this.activeEditor = null;
59635         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59636         var r = ed.record;
59637         var field = this.colModel.getDataIndex(ed.col);
59638         var e = {
59639             grid: this,
59640             record: r,
59641             field: field,
59642             originalValue: startValue,
59643             value: value,
59644             row: ed.row,
59645             column: ed.col,
59646             cancel:false,
59647             editor: ed
59648         };
59649         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59650         cell.show();
59651           
59652         if(String(value) !== String(startValue)){
59653             
59654             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59655                 r.set(field, e.value);
59656                 // if we are dealing with a combo box..
59657                 // then we also set the 'name' colum to be the displayField
59658                 if (ed.field.displayField && ed.field.name) {
59659                     r.set(ed.field.name, ed.field.el.dom.value);
59660                 }
59661                 
59662                 delete e.cancel; //?? why!!!
59663                 this.fireEvent("afteredit", e);
59664             }
59665         } else {
59666             this.fireEvent("afteredit", e); // always fire it!
59667         }
59668         this.view.focusCell(ed.row, ed.col);
59669     },
59670
59671     /**
59672      * Starts editing the specified for the specified row/column
59673      * @param {Number} rowIndex
59674      * @param {Number} colIndex
59675      */
59676     startEditing : function(row, col){
59677         this.stopEditing();
59678         if(this.colModel.isCellEditable(col, row)){
59679             this.view.ensureVisible(row, col, true);
59680           
59681             var r = this.dataSource.getAt(row);
59682             var field = this.colModel.getDataIndex(col);
59683             var cell = Roo.get(this.view.getCell(row,col));
59684             var e = {
59685                 grid: this,
59686                 record: r,
59687                 field: field,
59688                 value: r.data[field],
59689                 row: row,
59690                 column: col,
59691                 cancel:false 
59692             };
59693             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59694                 this.editing = true;
59695                 var ed = this.colModel.getCellEditor(col, row);
59696                 
59697                 if (!ed) {
59698                     return;
59699                 }
59700                 if(!ed.rendered){
59701                     ed.render(ed.parentEl || document.body);
59702                 }
59703                 ed.field.reset();
59704                
59705                 cell.hide();
59706                 
59707                 (function(){ // complex but required for focus issues in safari, ie and opera
59708                     ed.row = row;
59709                     ed.col = col;
59710                     ed.record = r;
59711                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59712                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59713                     this.activeEditor = ed;
59714                     var v = r.data[field];
59715                     ed.startEdit(this.view.getCell(row, col), v);
59716                     // combo's with 'displayField and name set
59717                     if (ed.field.displayField && ed.field.name) {
59718                         ed.field.el.dom.value = r.data[ed.field.name];
59719                     }
59720                     
59721                     
59722                 }).defer(50, this);
59723             }
59724         }
59725     },
59726         
59727     /**
59728      * Stops any active editing
59729      */
59730     stopEditing : function(){
59731         if(this.activeEditor){
59732             this.activeEditor.completeEdit();
59733         }
59734         this.activeEditor = null;
59735     },
59736         
59737          /**
59738      * Called to get grid's drag proxy text, by default returns this.ddText.
59739      * @return {String}
59740      */
59741     getDragDropText : function(){
59742         var count = this.selModel.getSelectedCell() ? 1 : 0;
59743         return String.format(this.ddText, count, count == 1 ? '' : 's');
59744     }
59745         
59746 });/*
59747  * Based on:
59748  * Ext JS Library 1.1.1
59749  * Copyright(c) 2006-2007, Ext JS, LLC.
59750  *
59751  * Originally Released Under LGPL - original licence link has changed is not relivant.
59752  *
59753  * Fork - LGPL
59754  * <script type="text/javascript">
59755  */
59756
59757 // private - not really -- you end up using it !
59758 // This is a support class used internally by the Grid components
59759
59760 /**
59761  * @class Roo.grid.GridEditor
59762  * @extends Roo.Editor
59763  * Class for creating and editable grid elements.
59764  * @param {Object} config any settings (must include field)
59765  */
59766 Roo.grid.GridEditor = function(field, config){
59767     if (!config && field.field) {
59768         config = field;
59769         field = Roo.factory(config.field, Roo.form);
59770     }
59771     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59772     field.monitorTab = false;
59773 };
59774
59775 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59776     
59777     /**
59778      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59779      */
59780     
59781     alignment: "tl-tl",
59782     autoSize: "width",
59783     hideEl : false,
59784     cls: "x-small-editor x-grid-editor",
59785     shim:false,
59786     shadow:"frame"
59787 });/*
59788  * Based on:
59789  * Ext JS Library 1.1.1
59790  * Copyright(c) 2006-2007, Ext JS, LLC.
59791  *
59792  * Originally Released Under LGPL - original licence link has changed is not relivant.
59793  *
59794  * Fork - LGPL
59795  * <script type="text/javascript">
59796  */
59797   
59798
59799   
59800 Roo.grid.PropertyRecord = Roo.data.Record.create([
59801     {name:'name',type:'string'},  'value'
59802 ]);
59803
59804
59805 Roo.grid.PropertyStore = function(grid, source){
59806     this.grid = grid;
59807     this.store = new Roo.data.Store({
59808         recordType : Roo.grid.PropertyRecord
59809     });
59810     this.store.on('update', this.onUpdate,  this);
59811     if(source){
59812         this.setSource(source);
59813     }
59814     Roo.grid.PropertyStore.superclass.constructor.call(this);
59815 };
59816
59817
59818
59819 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59820     setSource : function(o){
59821         this.source = o;
59822         this.store.removeAll();
59823         var data = [];
59824         for(var k in o){
59825             if(this.isEditableValue(o[k])){
59826                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59827             }
59828         }
59829         this.store.loadRecords({records: data}, {}, true);
59830     },
59831
59832     onUpdate : function(ds, record, type){
59833         if(type == Roo.data.Record.EDIT){
59834             var v = record.data['value'];
59835             var oldValue = record.modified['value'];
59836             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59837                 this.source[record.id] = v;
59838                 record.commit();
59839                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59840             }else{
59841                 record.reject();
59842             }
59843         }
59844     },
59845
59846     getProperty : function(row){
59847        return this.store.getAt(row);
59848     },
59849
59850     isEditableValue: function(val){
59851         if(val && val instanceof Date){
59852             return true;
59853         }else if(typeof val == 'object' || typeof val == 'function'){
59854             return false;
59855         }
59856         return true;
59857     },
59858
59859     setValue : function(prop, value){
59860         this.source[prop] = value;
59861         this.store.getById(prop).set('value', value);
59862     },
59863
59864     getSource : function(){
59865         return this.source;
59866     }
59867 });
59868
59869 Roo.grid.PropertyColumnModel = function(grid, store){
59870     this.grid = grid;
59871     var g = Roo.grid;
59872     g.PropertyColumnModel.superclass.constructor.call(this, [
59873         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59874         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59875     ]);
59876     this.store = store;
59877     this.bselect = Roo.DomHelper.append(document.body, {
59878         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59879             {tag: 'option', value: 'true', html: 'true'},
59880             {tag: 'option', value: 'false', html: 'false'}
59881         ]
59882     });
59883     Roo.id(this.bselect);
59884     var f = Roo.form;
59885     this.editors = {
59886         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59887         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59888         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59889         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59890         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59891     };
59892     this.renderCellDelegate = this.renderCell.createDelegate(this);
59893     this.renderPropDelegate = this.renderProp.createDelegate(this);
59894 };
59895
59896 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59897     
59898     
59899     nameText : 'Name',
59900     valueText : 'Value',
59901     
59902     dateFormat : 'm/j/Y',
59903     
59904     
59905     renderDate : function(dateVal){
59906         return dateVal.dateFormat(this.dateFormat);
59907     },
59908
59909     renderBool : function(bVal){
59910         return bVal ? 'true' : 'false';
59911     },
59912
59913     isCellEditable : function(colIndex, rowIndex){
59914         return colIndex == 1;
59915     },
59916
59917     getRenderer : function(col){
59918         return col == 1 ?
59919             this.renderCellDelegate : this.renderPropDelegate;
59920     },
59921
59922     renderProp : function(v){
59923         return this.getPropertyName(v);
59924     },
59925
59926     renderCell : function(val){
59927         var rv = val;
59928         if(val instanceof Date){
59929             rv = this.renderDate(val);
59930         }else if(typeof val == 'boolean'){
59931             rv = this.renderBool(val);
59932         }
59933         return Roo.util.Format.htmlEncode(rv);
59934     },
59935
59936     getPropertyName : function(name){
59937         var pn = this.grid.propertyNames;
59938         return pn && pn[name] ? pn[name] : name;
59939     },
59940
59941     getCellEditor : function(colIndex, rowIndex){
59942         var p = this.store.getProperty(rowIndex);
59943         var n = p.data['name'], val = p.data['value'];
59944         
59945         if(typeof(this.grid.customEditors[n]) == 'string'){
59946             return this.editors[this.grid.customEditors[n]];
59947         }
59948         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59949             return this.grid.customEditors[n];
59950         }
59951         if(val instanceof Date){
59952             return this.editors['date'];
59953         }else if(typeof val == 'number'){
59954             return this.editors['number'];
59955         }else if(typeof val == 'boolean'){
59956             return this.editors['boolean'];
59957         }else{
59958             return this.editors['string'];
59959         }
59960     }
59961 });
59962
59963 /**
59964  * @class Roo.grid.PropertyGrid
59965  * @extends Roo.grid.EditorGrid
59966  * This class represents the  interface of a component based property grid control.
59967  * <br><br>Usage:<pre><code>
59968  var grid = new Roo.grid.PropertyGrid("my-container-id", {
59969       
59970  });
59971  // set any options
59972  grid.render();
59973  * </code></pre>
59974   
59975  * @constructor
59976  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59977  * The container MUST have some type of size defined for the grid to fill. The container will be
59978  * automatically set to position relative if it isn't already.
59979  * @param {Object} config A config object that sets properties on this grid.
59980  */
59981 Roo.grid.PropertyGrid = function(container, config){
59982     config = config || {};
59983     var store = new Roo.grid.PropertyStore(this);
59984     this.store = store;
59985     var cm = new Roo.grid.PropertyColumnModel(this, store);
59986     store.store.sort('name', 'ASC');
59987     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
59988         ds: store.store,
59989         cm: cm,
59990         enableColLock:false,
59991         enableColumnMove:false,
59992         stripeRows:false,
59993         trackMouseOver: false,
59994         clicksToEdit:1
59995     }, config));
59996     this.getGridEl().addClass('x-props-grid');
59997     this.lastEditRow = null;
59998     this.on('columnresize', this.onColumnResize, this);
59999     this.addEvents({
60000          /**
60001              * @event beforepropertychange
60002              * Fires before a property changes (return false to stop?)
60003              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60004              * @param {String} id Record Id
60005              * @param {String} newval New Value
60006          * @param {String} oldval Old Value
60007              */
60008         "beforepropertychange": true,
60009         /**
60010              * @event propertychange
60011              * Fires after a property changes
60012              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60013              * @param {String} id Record Id
60014              * @param {String} newval New Value
60015          * @param {String} oldval Old Value
60016              */
60017         "propertychange": true
60018     });
60019     this.customEditors = this.customEditors || {};
60020 };
60021 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
60022     
60023      /**
60024      * @cfg {Object} customEditors map of colnames=> custom editors.
60025      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
60026      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
60027      * false disables editing of the field.
60028          */
60029     
60030       /**
60031      * @cfg {Object} propertyNames map of property Names to their displayed value
60032          */
60033     
60034     render : function(){
60035         Roo.grid.PropertyGrid.superclass.render.call(this);
60036         this.autoSize.defer(100, this);
60037     },
60038
60039     autoSize : function(){
60040         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
60041         if(this.view){
60042             this.view.fitColumns();
60043         }
60044     },
60045
60046     onColumnResize : function(){
60047         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
60048         this.autoSize();
60049     },
60050     /**
60051      * Sets the data for the Grid
60052      * accepts a Key => Value object of all the elements avaiable.
60053      * @param {Object} data  to appear in grid.
60054      */
60055     setSource : function(source){
60056         this.store.setSource(source);
60057         //this.autoSize();
60058     },
60059     /**
60060      * Gets all the data from the grid.
60061      * @return {Object} data  data stored in grid
60062      */
60063     getSource : function(){
60064         return this.store.getSource();
60065     }
60066 });/*
60067   
60068  * Licence LGPL
60069  
60070  */
60071  
60072 /**
60073  * @class Roo.grid.Calendar
60074  * @extends Roo.util.Grid
60075  * This class extends the Grid to provide a calendar widget
60076  * <br><br>Usage:<pre><code>
60077  var grid = new Roo.grid.Calendar("my-container-id", {
60078      ds: myDataStore,
60079      cm: myColModel,
60080      selModel: mySelectionModel,
60081      autoSizeColumns: true,
60082      monitorWindowResize: false,
60083      trackMouseOver: true
60084      eventstore : real data store..
60085  });
60086  // set any options
60087  grid.render();
60088   
60089   * @constructor
60090  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60091  * The container MUST have some type of size defined for the grid to fill. The container will be
60092  * automatically set to position relative if it isn't already.
60093  * @param {Object} config A config object that sets properties on this grid.
60094  */
60095 Roo.grid.Calendar = function(container, config){
60096         // initialize the container
60097         this.container = Roo.get(container);
60098         this.container.update("");
60099         this.container.setStyle("overflow", "hidden");
60100     this.container.addClass('x-grid-container');
60101
60102     this.id = this.container.id;
60103
60104     Roo.apply(this, config);
60105     // check and correct shorthanded configs
60106     
60107     var rows = [];
60108     var d =1;
60109     for (var r = 0;r < 6;r++) {
60110         
60111         rows[r]=[];
60112         for (var c =0;c < 7;c++) {
60113             rows[r][c]= '';
60114         }
60115     }
60116     if (this.eventStore) {
60117         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60118         this.eventStore.on('load',this.onLoad, this);
60119         this.eventStore.on('beforeload',this.clearEvents, this);
60120          
60121     }
60122     
60123     this.dataSource = new Roo.data.Store({
60124             proxy: new Roo.data.MemoryProxy(rows),
60125             reader: new Roo.data.ArrayReader({}, [
60126                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60127     });
60128
60129     this.dataSource.load();
60130     this.ds = this.dataSource;
60131     this.ds.xmodule = this.xmodule || false;
60132     
60133     
60134     var cellRender = function(v,x,r)
60135     {
60136         return String.format(
60137             '<div class="fc-day  fc-widget-content"><div>' +
60138                 '<div class="fc-event-container"></div>' +
60139                 '<div class="fc-day-number">{0}</div>'+
60140                 
60141                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60142             '</div></div>', v);
60143     
60144     }
60145     
60146     
60147     this.colModel = new Roo.grid.ColumnModel( [
60148         {
60149             xtype: 'ColumnModel',
60150             xns: Roo.grid,
60151             dataIndex : 'weekday0',
60152             header : 'Sunday',
60153             renderer : cellRender
60154         },
60155         {
60156             xtype: 'ColumnModel',
60157             xns: Roo.grid,
60158             dataIndex : 'weekday1',
60159             header : 'Monday',
60160             renderer : cellRender
60161         },
60162         {
60163             xtype: 'ColumnModel',
60164             xns: Roo.grid,
60165             dataIndex : 'weekday2',
60166             header : 'Tuesday',
60167             renderer : cellRender
60168         },
60169         {
60170             xtype: 'ColumnModel',
60171             xns: Roo.grid,
60172             dataIndex : 'weekday3',
60173             header : 'Wednesday',
60174             renderer : cellRender
60175         },
60176         {
60177             xtype: 'ColumnModel',
60178             xns: Roo.grid,
60179             dataIndex : 'weekday4',
60180             header : 'Thursday',
60181             renderer : cellRender
60182         },
60183         {
60184             xtype: 'ColumnModel',
60185             xns: Roo.grid,
60186             dataIndex : 'weekday5',
60187             header : 'Friday',
60188             renderer : cellRender
60189         },
60190         {
60191             xtype: 'ColumnModel',
60192             xns: Roo.grid,
60193             dataIndex : 'weekday6',
60194             header : 'Saturday',
60195             renderer : cellRender
60196         }
60197     ]);
60198     this.cm = this.colModel;
60199     this.cm.xmodule = this.xmodule || false;
60200  
60201         
60202           
60203     //this.selModel = new Roo.grid.CellSelectionModel();
60204     //this.sm = this.selModel;
60205     //this.selModel.init(this);
60206     
60207     
60208     if(this.width){
60209         this.container.setWidth(this.width);
60210     }
60211
60212     if(this.height){
60213         this.container.setHeight(this.height);
60214     }
60215     /** @private */
60216         this.addEvents({
60217         // raw events
60218         /**
60219          * @event click
60220          * The raw click event for the entire grid.
60221          * @param {Roo.EventObject} e
60222          */
60223         "click" : true,
60224         /**
60225          * @event dblclick
60226          * The raw dblclick event for the entire grid.
60227          * @param {Roo.EventObject} e
60228          */
60229         "dblclick" : true,
60230         /**
60231          * @event contextmenu
60232          * The raw contextmenu event for the entire grid.
60233          * @param {Roo.EventObject} e
60234          */
60235         "contextmenu" : true,
60236         /**
60237          * @event mousedown
60238          * The raw mousedown event for the entire grid.
60239          * @param {Roo.EventObject} e
60240          */
60241         "mousedown" : true,
60242         /**
60243          * @event mouseup
60244          * The raw mouseup event for the entire grid.
60245          * @param {Roo.EventObject} e
60246          */
60247         "mouseup" : true,
60248         /**
60249          * @event mouseover
60250          * The raw mouseover event for the entire grid.
60251          * @param {Roo.EventObject} e
60252          */
60253         "mouseover" : true,
60254         /**
60255          * @event mouseout
60256          * The raw mouseout event for the entire grid.
60257          * @param {Roo.EventObject} e
60258          */
60259         "mouseout" : true,
60260         /**
60261          * @event keypress
60262          * The raw keypress event for the entire grid.
60263          * @param {Roo.EventObject} e
60264          */
60265         "keypress" : true,
60266         /**
60267          * @event keydown
60268          * The raw keydown event for the entire grid.
60269          * @param {Roo.EventObject} e
60270          */
60271         "keydown" : true,
60272
60273         // custom events
60274
60275         /**
60276          * @event cellclick
60277          * Fires when a cell is clicked
60278          * @param {Grid} this
60279          * @param {Number} rowIndex
60280          * @param {Number} columnIndex
60281          * @param {Roo.EventObject} e
60282          */
60283         "cellclick" : true,
60284         /**
60285          * @event celldblclick
60286          * Fires when a cell is double clicked
60287          * @param {Grid} this
60288          * @param {Number} rowIndex
60289          * @param {Number} columnIndex
60290          * @param {Roo.EventObject} e
60291          */
60292         "celldblclick" : true,
60293         /**
60294          * @event rowclick
60295          * Fires when a row is clicked
60296          * @param {Grid} this
60297          * @param {Number} rowIndex
60298          * @param {Roo.EventObject} e
60299          */
60300         "rowclick" : true,
60301         /**
60302          * @event rowdblclick
60303          * Fires when a row is double clicked
60304          * @param {Grid} this
60305          * @param {Number} rowIndex
60306          * @param {Roo.EventObject} e
60307          */
60308         "rowdblclick" : true,
60309         /**
60310          * @event headerclick
60311          * Fires when a header is clicked
60312          * @param {Grid} this
60313          * @param {Number} columnIndex
60314          * @param {Roo.EventObject} e
60315          */
60316         "headerclick" : true,
60317         /**
60318          * @event headerdblclick
60319          * Fires when a header cell is double clicked
60320          * @param {Grid} this
60321          * @param {Number} columnIndex
60322          * @param {Roo.EventObject} e
60323          */
60324         "headerdblclick" : true,
60325         /**
60326          * @event rowcontextmenu
60327          * Fires when a row is right clicked
60328          * @param {Grid} this
60329          * @param {Number} rowIndex
60330          * @param {Roo.EventObject} e
60331          */
60332         "rowcontextmenu" : true,
60333         /**
60334          * @event cellcontextmenu
60335          * Fires when a cell is right clicked
60336          * @param {Grid} this
60337          * @param {Number} rowIndex
60338          * @param {Number} cellIndex
60339          * @param {Roo.EventObject} e
60340          */
60341          "cellcontextmenu" : true,
60342         /**
60343          * @event headercontextmenu
60344          * Fires when a header is right clicked
60345          * @param {Grid} this
60346          * @param {Number} columnIndex
60347          * @param {Roo.EventObject} e
60348          */
60349         "headercontextmenu" : true,
60350         /**
60351          * @event bodyscroll
60352          * Fires when the body element is scrolled
60353          * @param {Number} scrollLeft
60354          * @param {Number} scrollTop
60355          */
60356         "bodyscroll" : true,
60357         /**
60358          * @event columnresize
60359          * Fires when the user resizes a column
60360          * @param {Number} columnIndex
60361          * @param {Number} newSize
60362          */
60363         "columnresize" : true,
60364         /**
60365          * @event columnmove
60366          * Fires when the user moves a column
60367          * @param {Number} oldIndex
60368          * @param {Number} newIndex
60369          */
60370         "columnmove" : true,
60371         /**
60372          * @event startdrag
60373          * Fires when row(s) start being dragged
60374          * @param {Grid} this
60375          * @param {Roo.GridDD} dd The drag drop object
60376          * @param {event} e The raw browser event
60377          */
60378         "startdrag" : true,
60379         /**
60380          * @event enddrag
60381          * Fires when a drag operation is complete
60382          * @param {Grid} this
60383          * @param {Roo.GridDD} dd The drag drop object
60384          * @param {event} e The raw browser event
60385          */
60386         "enddrag" : true,
60387         /**
60388          * @event dragdrop
60389          * Fires when dragged row(s) are dropped on a valid DD target
60390          * @param {Grid} this
60391          * @param {Roo.GridDD} dd The drag drop object
60392          * @param {String} targetId The target drag drop object
60393          * @param {event} e The raw browser event
60394          */
60395         "dragdrop" : true,
60396         /**
60397          * @event dragover
60398          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60399          * @param {Grid} this
60400          * @param {Roo.GridDD} dd The drag drop object
60401          * @param {String} targetId The target drag drop object
60402          * @param {event} e The raw browser event
60403          */
60404         "dragover" : true,
60405         /**
60406          * @event dragenter
60407          *  Fires when the dragged row(s) first cross another DD target while being dragged
60408          * @param {Grid} this
60409          * @param {Roo.GridDD} dd The drag drop object
60410          * @param {String} targetId The target drag drop object
60411          * @param {event} e The raw browser event
60412          */
60413         "dragenter" : true,
60414         /**
60415          * @event dragout
60416          * Fires when the dragged row(s) leave another DD target while being dragged
60417          * @param {Grid} this
60418          * @param {Roo.GridDD} dd The drag drop object
60419          * @param {String} targetId The target drag drop object
60420          * @param {event} e The raw browser event
60421          */
60422         "dragout" : true,
60423         /**
60424          * @event rowclass
60425          * Fires when a row is rendered, so you can change add a style to it.
60426          * @param {GridView} gridview   The grid view
60427          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60428          */
60429         'rowclass' : true,
60430
60431         /**
60432          * @event render
60433          * Fires when the grid is rendered
60434          * @param {Grid} grid
60435          */
60436         'render' : true,
60437             /**
60438              * @event select
60439              * Fires when a date is selected
60440              * @param {DatePicker} this
60441              * @param {Date} date The selected date
60442              */
60443         'select': true,
60444         /**
60445              * @event monthchange
60446              * Fires when the displayed month changes 
60447              * @param {DatePicker} this
60448              * @param {Date} date The selected month
60449              */
60450         'monthchange': true,
60451         /**
60452              * @event evententer
60453              * Fires when mouse over an event
60454              * @param {Calendar} this
60455              * @param {event} Event
60456              */
60457         'evententer': true,
60458         /**
60459              * @event eventleave
60460              * Fires when the mouse leaves an
60461              * @param {Calendar} this
60462              * @param {event}
60463              */
60464         'eventleave': true,
60465         /**
60466              * @event eventclick
60467              * Fires when the mouse click an
60468              * @param {Calendar} this
60469              * @param {event}
60470              */
60471         'eventclick': true,
60472         /**
60473              * @event eventrender
60474              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60475              * @param {Calendar} this
60476              * @param {data} data to be modified
60477              */
60478         'eventrender': true
60479         
60480     });
60481
60482     Roo.grid.Grid.superclass.constructor.call(this);
60483     this.on('render', function() {
60484         this.view.el.addClass('x-grid-cal'); 
60485         
60486         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60487
60488     },this);
60489     
60490     if (!Roo.grid.Calendar.style) {
60491         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60492             
60493             
60494             '.x-grid-cal .x-grid-col' :  {
60495                 height: 'auto !important',
60496                 'vertical-align': 'top'
60497             },
60498             '.x-grid-cal  .fc-event-hori' : {
60499                 height: '14px'
60500             }
60501              
60502             
60503         }, Roo.id());
60504     }
60505
60506     
60507     
60508 };
60509 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60510     /**
60511      * @cfg {Store} eventStore The store that loads events.
60512      */
60513     eventStore : 25,
60514
60515      
60516     activeDate : false,
60517     startDay : 0,
60518     autoWidth : true,
60519     monitorWindowResize : false,
60520
60521     
60522     resizeColumns : function() {
60523         var col = (this.view.el.getWidth() / 7) - 3;
60524         // loop through cols, and setWidth
60525         for(var i =0 ; i < 7 ; i++){
60526             this.cm.setColumnWidth(i, col);
60527         }
60528     },
60529      setDate :function(date) {
60530         
60531         Roo.log('setDate?');
60532         
60533         this.resizeColumns();
60534         var vd = this.activeDate;
60535         this.activeDate = date;
60536 //        if(vd && this.el){
60537 //            var t = date.getTime();
60538 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60539 //                Roo.log('using add remove');
60540 //                
60541 //                this.fireEvent('monthchange', this, date);
60542 //                
60543 //                this.cells.removeClass("fc-state-highlight");
60544 //                this.cells.each(function(c){
60545 //                   if(c.dateValue == t){
60546 //                       c.addClass("fc-state-highlight");
60547 //                       setTimeout(function(){
60548 //                            try{c.dom.firstChild.focus();}catch(e){}
60549 //                       }, 50);
60550 //                       return false;
60551 //                   }
60552 //                   return true;
60553 //                });
60554 //                return;
60555 //            }
60556 //        }
60557         
60558         var days = date.getDaysInMonth();
60559         
60560         var firstOfMonth = date.getFirstDateOfMonth();
60561         var startingPos = firstOfMonth.getDay()-this.startDay;
60562         
60563         if(startingPos < this.startDay){
60564             startingPos += 7;
60565         }
60566         
60567         var pm = date.add(Date.MONTH, -1);
60568         var prevStart = pm.getDaysInMonth()-startingPos;
60569 //        
60570         
60571         
60572         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60573         
60574         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60575         //this.cells.addClassOnOver('fc-state-hover');
60576         
60577         var cells = this.cells.elements;
60578         var textEls = this.textNodes;
60579         
60580         //Roo.each(cells, function(cell){
60581         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60582         //});
60583         
60584         days += startingPos;
60585
60586         // convert everything to numbers so it's fast
60587         var day = 86400000;
60588         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60589         //Roo.log(d);
60590         //Roo.log(pm);
60591         //Roo.log(prevStart);
60592         
60593         var today = new Date().clearTime().getTime();
60594         var sel = date.clearTime().getTime();
60595         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60596         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60597         var ddMatch = this.disabledDatesRE;
60598         var ddText = this.disabledDatesText;
60599         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60600         var ddaysText = this.disabledDaysText;
60601         var format = this.format;
60602         
60603         var setCellClass = function(cal, cell){
60604             
60605             //Roo.log('set Cell Class');
60606             cell.title = "";
60607             var t = d.getTime();
60608             
60609             //Roo.log(d);
60610             
60611             
60612             cell.dateValue = t;
60613             if(t == today){
60614                 cell.className += " fc-today";
60615                 cell.className += " fc-state-highlight";
60616                 cell.title = cal.todayText;
60617             }
60618             if(t == sel){
60619                 // disable highlight in other month..
60620                 cell.className += " fc-state-highlight";
60621                 
60622             }
60623             // disabling
60624             if(t < min) {
60625                 //cell.className = " fc-state-disabled";
60626                 cell.title = cal.minText;
60627                 return;
60628             }
60629             if(t > max) {
60630                 //cell.className = " fc-state-disabled";
60631                 cell.title = cal.maxText;
60632                 return;
60633             }
60634             if(ddays){
60635                 if(ddays.indexOf(d.getDay()) != -1){
60636                     // cell.title = ddaysText;
60637                    // cell.className = " fc-state-disabled";
60638                 }
60639             }
60640             if(ddMatch && format){
60641                 var fvalue = d.dateFormat(format);
60642                 if(ddMatch.test(fvalue)){
60643                     cell.title = ddText.replace("%0", fvalue);
60644                    cell.className = " fc-state-disabled";
60645                 }
60646             }
60647             
60648             if (!cell.initialClassName) {
60649                 cell.initialClassName = cell.dom.className;
60650             }
60651             
60652             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60653         };
60654
60655         var i = 0;
60656         
60657         for(; i < startingPos; i++) {
60658             cells[i].dayName =  (++prevStart);
60659             Roo.log(textEls[i]);
60660             d.setDate(d.getDate()+1);
60661             
60662             //cells[i].className = "fc-past fc-other-month";
60663             setCellClass(this, cells[i]);
60664         }
60665         
60666         var intDay = 0;
60667         
60668         for(; i < days; i++){
60669             intDay = i - startingPos + 1;
60670             cells[i].dayName =  (intDay);
60671             d.setDate(d.getDate()+1);
60672             
60673             cells[i].className = ''; // "x-date-active";
60674             setCellClass(this, cells[i]);
60675         }
60676         var extraDays = 0;
60677         
60678         for(; i < 42; i++) {
60679             //textEls[i].innerHTML = (++extraDays);
60680             
60681             d.setDate(d.getDate()+1);
60682             cells[i].dayName = (++extraDays);
60683             cells[i].className = "fc-future fc-other-month";
60684             setCellClass(this, cells[i]);
60685         }
60686         
60687         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60688         
60689         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60690         
60691         // this will cause all the cells to mis
60692         var rows= [];
60693         var i =0;
60694         for (var r = 0;r < 6;r++) {
60695             for (var c =0;c < 7;c++) {
60696                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60697             }    
60698         }
60699         
60700         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60701         for(i=0;i<cells.length;i++) {
60702             
60703             this.cells.elements[i].dayName = cells[i].dayName ;
60704             this.cells.elements[i].className = cells[i].className;
60705             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60706             this.cells.elements[i].title = cells[i].title ;
60707             this.cells.elements[i].dateValue = cells[i].dateValue ;
60708         }
60709         
60710         
60711         
60712         
60713         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60714         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60715         
60716         ////if(totalRows != 6){
60717             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60718            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60719        // }
60720         
60721         this.fireEvent('monthchange', this, date);
60722         
60723         
60724     },
60725  /**
60726      * Returns the grid's SelectionModel.
60727      * @return {SelectionModel}
60728      */
60729     getSelectionModel : function(){
60730         if(!this.selModel){
60731             this.selModel = new Roo.grid.CellSelectionModel();
60732         }
60733         return this.selModel;
60734     },
60735
60736     load: function() {
60737         this.eventStore.load()
60738         
60739         
60740         
60741     },
60742     
60743     findCell : function(dt) {
60744         dt = dt.clearTime().getTime();
60745         var ret = false;
60746         this.cells.each(function(c){
60747             //Roo.log("check " +c.dateValue + '?=' + dt);
60748             if(c.dateValue == dt){
60749                 ret = c;
60750                 return false;
60751             }
60752             return true;
60753         });
60754         
60755         return ret;
60756     },
60757     
60758     findCells : function(rec) {
60759         var s = rec.data.start_dt.clone().clearTime().getTime();
60760        // Roo.log(s);
60761         var e= rec.data.end_dt.clone().clearTime().getTime();
60762        // Roo.log(e);
60763         var ret = [];
60764         this.cells.each(function(c){
60765              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60766             
60767             if(c.dateValue > e){
60768                 return ;
60769             }
60770             if(c.dateValue < s){
60771                 return ;
60772             }
60773             ret.push(c);
60774         });
60775         
60776         return ret;    
60777     },
60778     
60779     findBestRow: function(cells)
60780     {
60781         var ret = 0;
60782         
60783         for (var i =0 ; i < cells.length;i++) {
60784             ret  = Math.max(cells[i].rows || 0,ret);
60785         }
60786         return ret;
60787         
60788     },
60789     
60790     
60791     addItem : function(rec)
60792     {
60793         // look for vertical location slot in
60794         var cells = this.findCells(rec);
60795         
60796         rec.row = this.findBestRow(cells);
60797         
60798         // work out the location.
60799         
60800         var crow = false;
60801         var rows = [];
60802         for(var i =0; i < cells.length; i++) {
60803             if (!crow) {
60804                 crow = {
60805                     start : cells[i],
60806                     end :  cells[i]
60807                 };
60808                 continue;
60809             }
60810             if (crow.start.getY() == cells[i].getY()) {
60811                 // on same row.
60812                 crow.end = cells[i];
60813                 continue;
60814             }
60815             // different row.
60816             rows.push(crow);
60817             crow = {
60818                 start: cells[i],
60819                 end : cells[i]
60820             };
60821             
60822         }
60823         
60824         rows.push(crow);
60825         rec.els = [];
60826         rec.rows = rows;
60827         rec.cells = cells;
60828         for (var i = 0; i < cells.length;i++) {
60829             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60830             
60831         }
60832         
60833         
60834     },
60835     
60836     clearEvents: function() {
60837         
60838         if (!this.eventStore.getCount()) {
60839             return;
60840         }
60841         // reset number of rows in cells.
60842         Roo.each(this.cells.elements, function(c){
60843             c.rows = 0;
60844         });
60845         
60846         this.eventStore.each(function(e) {
60847             this.clearEvent(e);
60848         },this);
60849         
60850     },
60851     
60852     clearEvent : function(ev)
60853     {
60854         if (ev.els) {
60855             Roo.each(ev.els, function(el) {
60856                 el.un('mouseenter' ,this.onEventEnter, this);
60857                 el.un('mouseleave' ,this.onEventLeave, this);
60858                 el.remove();
60859             },this);
60860             ev.els = [];
60861         }
60862     },
60863     
60864     
60865     renderEvent : function(ev,ctr) {
60866         if (!ctr) {
60867              ctr = this.view.el.select('.fc-event-container',true).first();
60868         }
60869         
60870          
60871         this.clearEvent(ev);
60872             //code
60873        
60874         
60875         
60876         ev.els = [];
60877         var cells = ev.cells;
60878         var rows = ev.rows;
60879         this.fireEvent('eventrender', this, ev);
60880         
60881         for(var i =0; i < rows.length; i++) {
60882             
60883             cls = '';
60884             if (i == 0) {
60885                 cls += ' fc-event-start';
60886             }
60887             if ((i+1) == rows.length) {
60888                 cls += ' fc-event-end';
60889             }
60890             
60891             //Roo.log(ev.data);
60892             // how many rows should it span..
60893             var cg = this.eventTmpl.append(ctr,Roo.apply({
60894                 fccls : cls
60895                 
60896             }, ev.data) , true);
60897             
60898             
60899             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60900             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60901             cg.on('click', this.onEventClick, this, ev);
60902             
60903             ev.els.push(cg);
60904             
60905             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60906             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60907             //Roo.log(cg);
60908              
60909             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60910             cg.setWidth(ebox.right - sbox.x -2);
60911         }
60912     },
60913     
60914     renderEvents: function()
60915     {   
60916         // first make sure there is enough space..
60917         
60918         if (!this.eventTmpl) {
60919             this.eventTmpl = new Roo.Template(
60920                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60921                     '<div class="fc-event-inner">' +
60922                         '<span class="fc-event-time">{time}</span>' +
60923                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60924                     '</div>' +
60925                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60926                 '</div>'
60927             );
60928                 
60929         }
60930                
60931         
60932         
60933         this.cells.each(function(c) {
60934             //Roo.log(c.select('.fc-day-content div',true).first());
60935             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60936         });
60937         
60938         var ctr = this.view.el.select('.fc-event-container',true).first();
60939         
60940         var cls;
60941         this.eventStore.each(function(ev){
60942             
60943             this.renderEvent(ev);
60944              
60945              
60946         }, this);
60947         this.view.layout();
60948         
60949     },
60950     
60951     onEventEnter: function (e, el,event,d) {
60952         this.fireEvent('evententer', this, el, event);
60953     },
60954     
60955     onEventLeave: function (e, el,event,d) {
60956         this.fireEvent('eventleave', this, el, event);
60957     },
60958     
60959     onEventClick: function (e, el,event,d) {
60960         this.fireEvent('eventclick', this, el, event);
60961     },
60962     
60963     onMonthChange: function () {
60964         this.store.load();
60965     },
60966     
60967     onLoad: function () {
60968         
60969         //Roo.log('calendar onload');
60970 //         
60971         if(this.eventStore.getCount() > 0){
60972             
60973            
60974             
60975             this.eventStore.each(function(d){
60976                 
60977                 
60978                 // FIXME..
60979                 var add =   d.data;
60980                 if (typeof(add.end_dt) == 'undefined')  {
60981                     Roo.log("Missing End time in calendar data: ");
60982                     Roo.log(d);
60983                     return;
60984                 }
60985                 if (typeof(add.start_dt) == 'undefined')  {
60986                     Roo.log("Missing Start time in calendar data: ");
60987                     Roo.log(d);
60988                     return;
60989                 }
60990                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
60991                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
60992                 add.id = add.id || d.id;
60993                 add.title = add.title || '??';
60994                 
60995                 this.addItem(d);
60996                 
60997              
60998             },this);
60999         }
61000         
61001         this.renderEvents();
61002     }
61003     
61004
61005 });
61006 /*
61007  grid : {
61008                 xtype: 'Grid',
61009                 xns: Roo.grid,
61010                 listeners : {
61011                     render : function ()
61012                     {
61013                         _this.grid = this;
61014                         
61015                         if (!this.view.el.hasClass('course-timesheet')) {
61016                             this.view.el.addClass('course-timesheet');
61017                         }
61018                         if (this.tsStyle) {
61019                             this.ds.load({});
61020                             return; 
61021                         }
61022                         Roo.log('width');
61023                         Roo.log(_this.grid.view.el.getWidth());
61024                         
61025                         
61026                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
61027                             '.course-timesheet .x-grid-row' : {
61028                                 height: '80px'
61029                             },
61030                             '.x-grid-row td' : {
61031                                 'vertical-align' : 0
61032                             },
61033                             '.course-edit-link' : {
61034                                 'color' : 'blue',
61035                                 'text-overflow' : 'ellipsis',
61036                                 'overflow' : 'hidden',
61037                                 'white-space' : 'nowrap',
61038                                 'cursor' : 'pointer'
61039                             },
61040                             '.sub-link' : {
61041                                 'color' : 'green'
61042                             },
61043                             '.de-act-sup-link' : {
61044                                 'color' : 'purple',
61045                                 'text-decoration' : 'line-through'
61046                             },
61047                             '.de-act-link' : {
61048                                 'color' : 'red',
61049                                 'text-decoration' : 'line-through'
61050                             },
61051                             '.course-timesheet .course-highlight' : {
61052                                 'border-top-style': 'dashed !important',
61053                                 'border-bottom-bottom': 'dashed !important'
61054                             },
61055                             '.course-timesheet .course-item' : {
61056                                 'font-family'   : 'tahoma, arial, helvetica',
61057                                 'font-size'     : '11px',
61058                                 'overflow'      : 'hidden',
61059                                 'padding-left'  : '10px',
61060                                 'padding-right' : '10px',
61061                                 'padding-top' : '10px' 
61062                             }
61063                             
61064                         }, Roo.id());
61065                                 this.ds.load({});
61066                     }
61067                 },
61068                 autoWidth : true,
61069                 monitorWindowResize : false,
61070                 cellrenderer : function(v,x,r)
61071                 {
61072                     return v;
61073                 },
61074                 sm : {
61075                     xtype: 'CellSelectionModel',
61076                     xns: Roo.grid
61077                 },
61078                 dataSource : {
61079                     xtype: 'Store',
61080                     xns: Roo.data,
61081                     listeners : {
61082                         beforeload : function (_self, options)
61083                         {
61084                             options.params = options.params || {};
61085                             options.params._month = _this.monthField.getValue();
61086                             options.params.limit = 9999;
61087                             options.params['sort'] = 'when_dt';    
61088                             options.params['dir'] = 'ASC';    
61089                             this.proxy.loadResponse = this.loadResponse;
61090                             Roo.log("load?");
61091                             //this.addColumns();
61092                         },
61093                         load : function (_self, records, options)
61094                         {
61095                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61096                                 // if you click on the translation.. you can edit it...
61097                                 var el = Roo.get(this);
61098                                 var id = el.dom.getAttribute('data-id');
61099                                 var d = el.dom.getAttribute('data-date');
61100                                 var t = el.dom.getAttribute('data-time');
61101                                 //var id = this.child('span').dom.textContent;
61102                                 
61103                                 //Roo.log(this);
61104                                 Pman.Dialog.CourseCalendar.show({
61105                                     id : id,
61106                                     when_d : d,
61107                                     when_t : t,
61108                                     productitem_active : id ? 1 : 0
61109                                 }, function() {
61110                                     _this.grid.ds.load({});
61111                                 });
61112                            
61113                            });
61114                            
61115                            _this.panel.fireEvent('resize', [ '', '' ]);
61116                         }
61117                     },
61118                     loadResponse : function(o, success, response){
61119                             // this is overridden on before load..
61120                             
61121                             Roo.log("our code?");       
61122                             //Roo.log(success);
61123                             //Roo.log(response)
61124                             delete this.activeRequest;
61125                             if(!success){
61126                                 this.fireEvent("loadexception", this, o, response);
61127                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61128                                 return;
61129                             }
61130                             var result;
61131                             try {
61132                                 result = o.reader.read(response);
61133                             }catch(e){
61134                                 Roo.log("load exception?");
61135                                 this.fireEvent("loadexception", this, o, response, e);
61136                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61137                                 return;
61138                             }
61139                             Roo.log("ready...");        
61140                             // loop through result.records;
61141                             // and set this.tdate[date] = [] << array of records..
61142                             _this.tdata  = {};
61143                             Roo.each(result.records, function(r){
61144                                 //Roo.log(r.data);
61145                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61146                                     _this.tdata[r.data.when_dt.format('j')] = [];
61147                                 }
61148                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61149                             });
61150                             
61151                             //Roo.log(_this.tdata);
61152                             
61153                             result.records = [];
61154                             result.totalRecords = 6;
61155                     
61156                             // let's generate some duumy records for the rows.
61157                             //var st = _this.dateField.getValue();
61158                             
61159                             // work out monday..
61160                             //st = st.add(Date.DAY, -1 * st.format('w'));
61161                             
61162                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61163                             
61164                             var firstOfMonth = date.getFirstDayOfMonth();
61165                             var days = date.getDaysInMonth();
61166                             var d = 1;
61167                             var firstAdded = false;
61168                             for (var i = 0; i < result.totalRecords ; i++) {
61169                                 //var d= st.add(Date.DAY, i);
61170                                 var row = {};
61171                                 var added = 0;
61172                                 for(var w = 0 ; w < 7 ; w++){
61173                                     if(!firstAdded && firstOfMonth != w){
61174                                         continue;
61175                                     }
61176                                     if(d > days){
61177                                         continue;
61178                                     }
61179                                     firstAdded = true;
61180                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61181                                     row['weekday'+w] = String.format(
61182                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61183                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61184                                                     d,
61185                                                     date.format('Y-m-')+dd
61186                                                 );
61187                                     added++;
61188                                     if(typeof(_this.tdata[d]) != 'undefined'){
61189                                         Roo.each(_this.tdata[d], function(r){
61190                                             var is_sub = '';
61191                                             var deactive = '';
61192                                             var id = r.id;
61193                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61194                                             if(r.parent_id*1>0){
61195                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61196                                                 id = r.parent_id;
61197                                             }
61198                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61199                                                 deactive = 'de-act-link';
61200                                             }
61201                                             
61202                                             row['weekday'+w] += String.format(
61203                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61204                                                     id, //0
61205                                                     r.product_id_name, //1
61206                                                     r.when_dt.format('h:ia'), //2
61207                                                     is_sub, //3
61208                                                     deactive, //4
61209                                                     desc // 5
61210                                             );
61211                                         });
61212                                     }
61213                                     d++;
61214                                 }
61215                                 
61216                                 // only do this if something added..
61217                                 if(added > 0){ 
61218                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61219                                 }
61220                                 
61221                                 
61222                                 // push it twice. (second one with an hour..
61223                                 
61224                             }
61225                             //Roo.log(result);
61226                             this.fireEvent("load", this, o, o.request.arg);
61227                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61228                         },
61229                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61230                     proxy : {
61231                         xtype: 'HttpProxy',
61232                         xns: Roo.data,
61233                         method : 'GET',
61234                         url : baseURL + '/Roo/Shop_course.php'
61235                     },
61236                     reader : {
61237                         xtype: 'JsonReader',
61238                         xns: Roo.data,
61239                         id : 'id',
61240                         fields : [
61241                             {
61242                                 'name': 'id',
61243                                 'type': 'int'
61244                             },
61245                             {
61246                                 'name': 'when_dt',
61247                                 'type': 'string'
61248                             },
61249                             {
61250                                 'name': 'end_dt',
61251                                 'type': 'string'
61252                             },
61253                             {
61254                                 'name': 'parent_id',
61255                                 'type': 'int'
61256                             },
61257                             {
61258                                 'name': 'product_id',
61259                                 'type': 'int'
61260                             },
61261                             {
61262                                 'name': 'productitem_id',
61263                                 'type': 'int'
61264                             },
61265                             {
61266                                 'name': 'guid',
61267                                 'type': 'int'
61268                             }
61269                         ]
61270                     }
61271                 },
61272                 toolbar : {
61273                     xtype: 'Toolbar',
61274                     xns: Roo,
61275                     items : [
61276                         {
61277                             xtype: 'Button',
61278                             xns: Roo.Toolbar,
61279                             listeners : {
61280                                 click : function (_self, e)
61281                                 {
61282                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61283                                     sd.setMonth(sd.getMonth()-1);
61284                                     _this.monthField.setValue(sd.format('Y-m-d'));
61285                                     _this.grid.ds.load({});
61286                                 }
61287                             },
61288                             text : "Back"
61289                         },
61290                         {
61291                             xtype: 'Separator',
61292                             xns: Roo.Toolbar
61293                         },
61294                         {
61295                             xtype: 'MonthField',
61296                             xns: Roo.form,
61297                             listeners : {
61298                                 render : function (_self)
61299                                 {
61300                                     _this.monthField = _self;
61301                                    // _this.monthField.set  today
61302                                 },
61303                                 select : function (combo, date)
61304                                 {
61305                                     _this.grid.ds.load({});
61306                                 }
61307                             },
61308                             value : (function() { return new Date(); })()
61309                         },
61310                         {
61311                             xtype: 'Separator',
61312                             xns: Roo.Toolbar
61313                         },
61314                         {
61315                             xtype: 'TextItem',
61316                             xns: Roo.Toolbar,
61317                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61318                         },
61319                         {
61320                             xtype: 'Fill',
61321                             xns: Roo.Toolbar
61322                         },
61323                         {
61324                             xtype: 'Button',
61325                             xns: Roo.Toolbar,
61326                             listeners : {
61327                                 click : function (_self, e)
61328                                 {
61329                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61330                                     sd.setMonth(sd.getMonth()+1);
61331                                     _this.monthField.setValue(sd.format('Y-m-d'));
61332                                     _this.grid.ds.load({});
61333                                 }
61334                             },
61335                             text : "Next"
61336                         }
61337                     ]
61338                 },
61339                  
61340             }
61341         };
61342         
61343         *//*
61344  * Based on:
61345  * Ext JS Library 1.1.1
61346  * Copyright(c) 2006-2007, Ext JS, LLC.
61347  *
61348  * Originally Released Under LGPL - original licence link has changed is not relivant.
61349  *
61350  * Fork - LGPL
61351  * <script type="text/javascript">
61352  */
61353  
61354 /**
61355  * @class Roo.LoadMask
61356  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61357  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61358  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61359  * element's UpdateManager load indicator and will be destroyed after the initial load.
61360  * @constructor
61361  * Create a new LoadMask
61362  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61363  * @param {Object} config The config object
61364  */
61365 Roo.LoadMask = function(el, config){
61366     this.el = Roo.get(el);
61367     Roo.apply(this, config);
61368     if(this.store){
61369         this.store.on('beforeload', this.onBeforeLoad, this);
61370         this.store.on('load', this.onLoad, this);
61371         this.store.on('loadexception', this.onLoadException, this);
61372         this.removeMask = false;
61373     }else{
61374         var um = this.el.getUpdateManager();
61375         um.showLoadIndicator = false; // disable the default indicator
61376         um.on('beforeupdate', this.onBeforeLoad, this);
61377         um.on('update', this.onLoad, this);
61378         um.on('failure', this.onLoad, this);
61379         this.removeMask = true;
61380     }
61381 };
61382
61383 Roo.LoadMask.prototype = {
61384     /**
61385      * @cfg {Boolean} removeMask
61386      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61387      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61388      */
61389     /**
61390      * @cfg {String} msg
61391      * The text to display in a centered loading message box (defaults to 'Loading...')
61392      */
61393     msg : 'Loading...',
61394     /**
61395      * @cfg {String} msgCls
61396      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61397      */
61398     msgCls : 'x-mask-loading',
61399
61400     /**
61401      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61402      * @type Boolean
61403      */
61404     disabled: false,
61405
61406     /**
61407      * Disables the mask to prevent it from being displayed
61408      */
61409     disable : function(){
61410        this.disabled = true;
61411     },
61412
61413     /**
61414      * Enables the mask so that it can be displayed
61415      */
61416     enable : function(){
61417         this.disabled = false;
61418     },
61419     
61420     onLoadException : function()
61421     {
61422         Roo.log(arguments);
61423         
61424         if (typeof(arguments[3]) != 'undefined') {
61425             Roo.MessageBox.alert("Error loading",arguments[3]);
61426         } 
61427         /*
61428         try {
61429             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61430                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61431             }   
61432         } catch(e) {
61433             
61434         }
61435         */
61436     
61437         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61438     },
61439     // private
61440     onLoad : function()
61441     {
61442         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61443     },
61444
61445     // private
61446     onBeforeLoad : function(){
61447         if(!this.disabled){
61448             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61449         }
61450     },
61451
61452     // private
61453     destroy : function(){
61454         if(this.store){
61455             this.store.un('beforeload', this.onBeforeLoad, this);
61456             this.store.un('load', this.onLoad, this);
61457             this.store.un('loadexception', this.onLoadException, this);
61458         }else{
61459             var um = this.el.getUpdateManager();
61460             um.un('beforeupdate', this.onBeforeLoad, this);
61461             um.un('update', this.onLoad, this);
61462             um.un('failure', this.onLoad, this);
61463         }
61464     }
61465 };/*
61466  * Based on:
61467  * Ext JS Library 1.1.1
61468  * Copyright(c) 2006-2007, Ext JS, LLC.
61469  *
61470  * Originally Released Under LGPL - original licence link has changed is not relivant.
61471  *
61472  * Fork - LGPL
61473  * <script type="text/javascript">
61474  */
61475
61476
61477 /**
61478  * @class Roo.XTemplate
61479  * @extends Roo.Template
61480  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61481 <pre><code>
61482 var t = new Roo.XTemplate(
61483         '&lt;select name="{name}"&gt;',
61484                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61485         '&lt;/select&gt;'
61486 );
61487  
61488 // then append, applying the master template values
61489  </code></pre>
61490  *
61491  * Supported features:
61492  *
61493  *  Tags:
61494
61495 <pre><code>
61496       {a_variable} - output encoded.
61497       {a_variable.format:("Y-m-d")} - call a method on the variable
61498       {a_variable:raw} - unencoded output
61499       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61500       {a_variable:this.method_on_template(...)} - call a method on the template object.
61501  
61502 </code></pre>
61503  *  The tpl tag:
61504 <pre><code>
61505         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61506         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61507         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61508         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61509   
61510         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61511         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61512 </code></pre>
61513  *      
61514  */
61515 Roo.XTemplate = function()
61516 {
61517     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61518     if (this.html) {
61519         this.compile();
61520     }
61521 };
61522
61523
61524 Roo.extend(Roo.XTemplate, Roo.Template, {
61525
61526     /**
61527      * The various sub templates
61528      */
61529     tpls : false,
61530     /**
61531      *
61532      * basic tag replacing syntax
61533      * WORD:WORD()
61534      *
61535      * // you can fake an object call by doing this
61536      *  x.t:(test,tesT) 
61537      * 
61538      */
61539     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61540
61541     /**
61542      * compile the template
61543      *
61544      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61545      *
61546      */
61547     compile: function()
61548     {
61549         var s = this.html;
61550      
61551         s = ['<tpl>', s, '</tpl>'].join('');
61552     
61553         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61554             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61555             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61556             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61557             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61558             m,
61559             id     = 0,
61560             tpls   = [];
61561     
61562         while(true == !!(m = s.match(re))){
61563             var forMatch   = m[0].match(nameRe),
61564                 ifMatch   = m[0].match(ifRe),
61565                 execMatch   = m[0].match(execRe),
61566                 namedMatch   = m[0].match(namedRe),
61567                 
61568                 exp  = null, 
61569                 fn   = null,
61570                 exec = null,
61571                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61572                 
61573             if (ifMatch) {
61574                 // if - puts fn into test..
61575                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61576                 if(exp){
61577                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61578                 }
61579             }
61580             
61581             if (execMatch) {
61582                 // exec - calls a function... returns empty if true is  returned.
61583                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61584                 if(exp){
61585                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61586                 }
61587             }
61588             
61589             
61590             if (name) {
61591                 // for = 
61592                 switch(name){
61593                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61594                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61595                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61596                 }
61597             }
61598             var uid = namedMatch ? namedMatch[1] : id;
61599             
61600             
61601             tpls.push({
61602                 id:     namedMatch ? namedMatch[1] : id,
61603                 target: name,
61604                 exec:   exec,
61605                 test:   fn,
61606                 body:   m[1] || ''
61607             });
61608             if (namedMatch) {
61609                 s = s.replace(m[0], '');
61610             } else { 
61611                 s = s.replace(m[0], '{xtpl'+ id + '}');
61612             }
61613             ++id;
61614         }
61615         this.tpls = [];
61616         for(var i = tpls.length-1; i >= 0; --i){
61617             this.compileTpl(tpls[i]);
61618             this.tpls[tpls[i].id] = tpls[i];
61619         }
61620         this.master = tpls[tpls.length-1];
61621         return this;
61622     },
61623     /**
61624      * same as applyTemplate, except it's done to one of the subTemplates
61625      * when using named templates, you can do:
61626      *
61627      * var str = pl.applySubTemplate('your-name', values);
61628      *
61629      * 
61630      * @param {Number} id of the template
61631      * @param {Object} values to apply to template
61632      * @param {Object} parent (normaly the instance of this object)
61633      */
61634     applySubTemplate : function(id, values, parent)
61635     {
61636         
61637         
61638         var t = this.tpls[id];
61639         
61640         
61641         try { 
61642             if(t.test && !t.test.call(this, values, parent)){
61643                 return '';
61644             }
61645         } catch(e) {
61646             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61647             Roo.log(e.toString());
61648             Roo.log(t.test);
61649             return ''
61650         }
61651         try { 
61652             
61653             if(t.exec && t.exec.call(this, values, parent)){
61654                 return '';
61655             }
61656         } catch(e) {
61657             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61658             Roo.log(e.toString());
61659             Roo.log(t.exec);
61660             return ''
61661         }
61662         try {
61663             var vs = t.target ? t.target.call(this, values, parent) : values;
61664             parent = t.target ? values : parent;
61665             if(t.target && vs instanceof Array){
61666                 var buf = [];
61667                 for(var i = 0, len = vs.length; i < len; i++){
61668                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61669                 }
61670                 return buf.join('');
61671             }
61672             return t.compiled.call(this, vs, parent);
61673         } catch (e) {
61674             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61675             Roo.log(e.toString());
61676             Roo.log(t.compiled);
61677             return '';
61678         }
61679     },
61680
61681     compileTpl : function(tpl)
61682     {
61683         var fm = Roo.util.Format;
61684         var useF = this.disableFormats !== true;
61685         var sep = Roo.isGecko ? "+" : ",";
61686         var undef = function(str) {
61687             Roo.log("Property not found :"  + str);
61688             return '';
61689         };
61690         
61691         var fn = function(m, name, format, args)
61692         {
61693             //Roo.log(arguments);
61694             args = args ? args.replace(/\\'/g,"'") : args;
61695             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61696             if (typeof(format) == 'undefined') {
61697                 format= 'htmlEncode';
61698             }
61699             if (format == 'raw' ) {
61700                 format = false;
61701             }
61702             
61703             if(name.substr(0, 4) == 'xtpl'){
61704                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61705             }
61706             
61707             // build an array of options to determine if value is undefined..
61708             
61709             // basically get 'xxxx.yyyy' then do
61710             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61711             //    (function () { Roo.log("Property not found"); return ''; })() :
61712             //    ......
61713             
61714             var udef_ar = [];
61715             var lookfor = '';
61716             Roo.each(name.split('.'), function(st) {
61717                 lookfor += (lookfor.length ? '.': '') + st;
61718                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61719             });
61720             
61721             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61722             
61723             
61724             if(format && useF){
61725                 
61726                 args = args ? ',' + args : "";
61727                  
61728                 if(format.substr(0, 5) != "this."){
61729                     format = "fm." + format + '(';
61730                 }else{
61731                     format = 'this.call("'+ format.substr(5) + '", ';
61732                     args = ", values";
61733                 }
61734                 
61735                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61736             }
61737              
61738             if (args.length) {
61739                 // called with xxyx.yuu:(test,test)
61740                 // change to ()
61741                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61742             }
61743             // raw.. - :raw modifier..
61744             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61745             
61746         };
61747         var body;
61748         // branched to use + in gecko and [].join() in others
61749         if(Roo.isGecko){
61750             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61751                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61752                     "';};};";
61753         }else{
61754             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61755             body.push(tpl.body.replace(/(\r\n|\n)/g,
61756                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61757             body.push("'].join('');};};");
61758             body = body.join('');
61759         }
61760         
61761         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61762        
61763         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61764         eval(body);
61765         
61766         return this;
61767     },
61768
61769     applyTemplate : function(values){
61770         return this.master.compiled.call(this, values, {});
61771         //var s = this.subs;
61772     },
61773
61774     apply : function(){
61775         return this.applyTemplate.apply(this, arguments);
61776     }
61777
61778  });
61779
61780 Roo.XTemplate.from = function(el){
61781     el = Roo.getDom(el);
61782     return new Roo.XTemplate(el.value || el.innerHTML);
61783 };